Greasy Fork

Greasy Fork is available in English.

oppo直接跳到packname页

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

// ==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;
}