Greasy Fork is available in English.

Steam历史最低价格查询

在steam商店页显示当前app历史最低价格及进包次数

< Feedback on Steam历史最低价格查询

Review: Good - script works

§
Posted: 15.08.2021
Edited: 15.08.2021

哈囉,想請你增加讓使用者直接設定地區的功能
程式碼如下

// 設定區域
function setRegion() {
  const region = prompt('輸入地區代碼');
  if(!region) {
    return;
  }
  GM_setValue('region', region);
}

// 將 LINE 26 改成
const CC_OVERRIDE = GM_getValue('region') || "cn";

// 在最後加上
GM_registerMenuCommand('設定地區', setRegion);
§
Posted: 15.08.2021
Edited: 15.08.2021

喔對了記得在 metadata 增加

// @grant GM_getValue
// @grant GM_setValue
// @grant GM_registerMenuCommand
rmbadminAuthor
§
Posted: 15.08.2021

已经添加啦,谢谢提供代码和反馈。

§
Posted: 16.08.2021

我剛發現你在 127 行有定義抓 cookie
所以這行

const CC_OVERRIDE = GM_getValue('region') || "cn";

可以只留

const CC_OVERRIDE = GM_getValue('region');

就好

Post reply

Sign in to post a reply.