Greasy Fork

Greasy Fork is available in English.

oppo直接跳到packname页

oppo游戏论坛链接直接跳到该游戏的packname页

当前为 2024-04-06 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         oppo直接跳到packname页
// @namespace  http://greasyfork.icu/users/1284284
// @version      0.1
// @description   oppo游戏论坛链接直接跳到该游戏的packname页
// @author       喃哓盐主
// @run-at       document-start
// @match        https://*/*
// @grant        none
// ==/UserScript==

// 获取当前链接
var currentURL = window.location.href;

// 检测链接中是否含有 game.oppomobile.com/bbs/index.html
if (currentURL.includes('game.oppomobile.com/bbs/index.html')) {
  // 替换链接为 iopen-gamecenter.heytapmobi.com/tribe/v1/share/thread
  var newURL = currentURL.replace('game.oppomobile.com/bbs/index.html', 'iopen-gamecenter.heytapmobi.com/tribe/v1/share/thread');
  
  // 访问新链接
  window.location.href = newURL;
}