Poker Search

一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。

Cos'è Poker Search?

Poker Search è un'estensione di Chrome sviluppata da ntcubic, e la sua funzione principale è "一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Poker Search

Scarica i file di estensione Poker Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        本插件能够让用户输入一个关键词后,用全新的交互方式一次性展现出用户所有收录进 Poker 中的网站的搜索结果。
而能收录的网站,只需要有能进行搜索的 URL 即可。

与此同时,多个窗口下能并行查阅和对比,因此……
  在办公上(邮箱、开发网站、素材网站)
  在学术上(翻译、论文网站、新闻网站)
  在旅行上(景点评测、游记、机票酒店美食、地图)
  在商品比价上(你能利用的网购平台,都能以你的所在地价格展示,并一目了然)
  在资源搜索上(BT、PT、网盘搜索、仓库……各种资源网站一目十行)

注意,本插件的灵感来源于 Smartisan TNT 中的 Poker Dealer 功能。                    

Informazioni di Base sull'Estensione

Nome Poker Search Poker Search
ID oojeodibjbmkclnocinjolfaigheengg
URL Ufficiale https://chromewebstore.google.com/detail/poker-search/oojeodibjbmkclnocinjolfaigheengg
Descrizione 一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。
Dimensione del File 573 KB
Conteggio Installazioni 479
Versione Corrente 1.6.10
Ultimo Aggiornamento 2023-07-28
Data di Pubblicazione 2022-07-10
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore ntcubic
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/VecHK/poker-search
URL della Pagina di Aiuto https://github.com/VecHK/poker-search/issues/
URL della Pagina della Politica sulla Privacy https://github.com/VecHK/poker-search/blob/master/USER_DATA_PRIVACY.md
Lingue Supportate zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "\u4e00\u6b3e\u7075\u611f\u6765\u6e90\u4e8e Smartisan TNT \u53d1\u724c\u624b\u7684 Chrome \u6269\u5c55\u63d2\u4ef6\u3002",
    "version": "1.6.10",
    "manifest_version": 3,
    "name": "Poker Search",
    "default_locale": "zh_CN",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "system.display",
        "storage",
        "alarms",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "tabs",
        "contextMenus",
        "debugger"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "logo-34.png",
        "default_title": "Poker Search"
    },
    "icons": {
        "128": "logo-128.png"
    },
    "omnibox": {
        "keyword": "poker"
    },
    "commands": {
        "focus-layout": {
            "global": true,
            "description": "\u5207\u6362\u56de Poker \u641c\u7d22\u7a97\u9635\u5217",
            "suggested_key": {
                "mac": "Command+Shift+1",
                "windows": "Ctrl+Shift+1",
                "chromeos": "Ctrl+Shift+1",
                "linux": "Ctrl+Shift+1"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.google.com\/*",
                "https:\/\/google.com\/*",
                "https:\/\/*.baidu.com\/*",
                "https:\/\/baidu.com\/*",
                "https:\/\/search.yahoo.com\/*",
                "https:\/\/yandex.com\/*",
                "https:\/\/duckduckgo.com\/*",
                "https:\/\/www.bing.com\/*",
                "https:\/\/bing.com\/*",
                "https:\/\/*.bing.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "logo-128.png",
                "logo-34.png"
            ],
            "matches": []
        }
    ]
}