Poker Search

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

Wat is Poker Search?

Poker Search is een Chrome-extensie ontwikkeld door ntcubic, en de belangrijkste functie is "一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Poker Search

Download Poker Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

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

Basisinformatie over de Extensie

Naam Poker Search Poker Search
ID oojeodibjbmkclnocinjolfaigheengg
Officiële URL https://chromewebstore.google.com/detail/poker-search/oojeodibjbmkclnocinjolfaigheengg
Beschrijving 一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。
Bestandsgrootte 573 KB
Aantal Installaties 479
Huidige Versie 1.6.10
Laatst Bijgewerkt 2023-07-28
Publicatiedatum 2022-07-10
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar ntcubic
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/VecHK/poker-search
Help Pagina-URL https://github.com/VecHK/poker-search/issues/
URL van de Privacybeleid Pagina https://github.com/VecHK/poker-search/blob/master/USER_DATA_PRIVACY.md
Ondersteunde Talen 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": []
        }
    ]
}