Jump to HearthStone Official Cards Page

With right click menu, jump to playhearthstone.com/cards

当前为 2019-10-26 提交的版本,查看 最新版本

// ==UserScript==
// @name         Jump to HearthStone Official Cards Page
// @description  With right click menu, jump to playhearthstone.com/cards
// @version      0.1.2
// @author       fal_rnd
// @include      *
// @grant        GM_openInTab
// @run-at       context-menu
// @supportURL   https://twitter.com/fal_rnd
// @namespace    https://gf.qytechs.cn/users/205015
// ==/UserScript==

/* jshint esversion: 6 */

(function() {
    'use strict';

    if(document.getSelection()==''){
        GM_openInTab(
            "https://playhearthstone.com/cards",
            {
                active: true
            }
        );
    }else{
        GM_openInTab(
            "https://playhearthstone.com/cards?set=wild&textFilter="+document.getSelection(),
            {
                active: true,
                insert: true,
                setParent: true,
            }
        );
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址