Poker Search

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

What is Poker Search?

Poker Search is a Chrome extension developed by ntcubic, and its main feature is "一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。".

Extension Screenshots

screenshot

Download Poker Search Extension CRX File

Download Poker Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

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

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

Extension Basic Information

Name Poker Search Poker Search
ID oojeodibjbmkclnocinjolfaigheengg
Official URL https://chromewebstore.google.com/detail/poker-search/oojeodibjbmkclnocinjolfaigheengg
Description 一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。
File Size 573 KB
Installation Count 479
Current Version 1.6.10
Last Updated 2023-07-28
Publish Date 2022-07-10
Rating 5.00/5 Total 4 Ratings
Developer ntcubic
Email [email protected]
Payment Type free
Extension Website https://github.com/VecHK/poker-search
Help Page URL https://github.com/VecHK/poker-search/issues/
Privacy Policy Page URL https://github.com/VecHK/poker-search/blob/master/USER_DATA_PRIVACY.md
Supported Languages 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": []
        }
    ]
}