Greasy Fork

Greasy Fork is available in English.

Sonkwo_Steam_Search

快捷搜索steam商店

当前为 2021-09-13 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Sonkwo_Steam_Search
// @name:zh-CN   杉果Steam快捷搜索
// @namespace    https://blog.chrxw.com/
// @version      1.4
// @description  快捷搜索steam商店
// @description:zh-CN  快捷搜索steam商店
// @author       Chr_
// @license      AGPL-3.0
// @connect      steampowered.com
// @include      /https://www.sonkwo.com\/sku\/\d+/
// @include      /https://www.sonkwo.hk\/sku\/\d+/
// @require      http://greasyfork.icu/scripts/431430-search-steam-store/code/Search_Steam_Store.js
// @grant        GM_xmlhttpRequest
// @grant        GM_addStyle
// ==/UserScript==

const GObjs = {};

(() => {
  'use strict';
  const t = setInterval(() => {
    if (document.querySelectorAll('h3.typical-name-1').length > 0) {
      clearInterval(t);
      init();
    }
  }, 1000);
})();

function init() {
  const title = document.querySelector('h5.typical-name-2') || document.querySelector('h3.typical-name-1');
  const keyword = title.textContent.replace(/[-+=:;:;'"‘’“”]/g, ' ');

  console.log(keyword);
  const btnSearch = document.createElement('button');
  btnSearch.className = 'btnSearch';
  btnSearch.textContent = '🔎';
  btnSearch.addEventListener('mouseover', () => { btnSearch.textContent = '🔎 搜索Steam'; });
  btnSearch.addEventListener('mouseout', () => { btnSearch.textContent = '🔎'; });
  btnSearch.addEventListener('click', () => { showResult(keyword); });
  title.appendChild(btnSearch);

  const divResult = document.createElement('div');
  divResult.className = 'divResult';
  title.appendChild(divResult);

  Object.assign(GObjs, { divResult });
}

function showResult(keyword) {
  const { divResult } = GObjs;
  searchStore(keyword, 'CN')
    .then((result) => {
      divResult.innerHTML = '';
      if (result.length === 0) {
        const btnRst = document.createElement('button');
        btnRst.textContent = '【快速搜索无结果,点击前往steam搜索页】';
        btnRst.addEventListener('click', () => { window.open(`https://store.steampowered.com/search/?term=${keyword}`); });
        divResult.appendChild(btnRst);
        return;
      }
      result.forEach(({ appID, isBundle, appName, appPrice, appUrl, appImg }) => {
        const btnRst = document.createElement('button');
        btnRst.title = `${isBundle ? "bundle" : "app"}/${appID}`;
        btnRst.addEventListener('click', () => { window.open(appUrl); });

        const btnName = document.createElement('p');
        btnName.textContent = `${appName}【${appPrice}】`
        btnRst.appendChild(btnName);
        btnRst.appendChild(document.createElement('br'));

        const btnImg = new Image();
        btnImg.src = appImg;

        btnRst.appendChild(btnImg);
        divResult.appendChild(btnRst);
      });
    })
    .catch((reason) => {
      alert(reason);
    });
}

//CSS表
GM_addStyle(`
.divResult {
    top: -180px;
    position: relative;
    width: 100%;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .divResult > button {
    cursor: pointer;
  }
  .divResult > button:not(:last-child) {
    margin-right: 5px;
  }
  .divResult > button > p {
    display: inline;
    margin-left: 6px;
  }
  .divResult > button > img {
    zoom: 1.5;
    margin-top: 2px;
  }
  .btnSearch {
    padding: 0 5px;
    margin-left: 5px;
  }
  
`);