Poker Search

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

什么是Poker Search?

Poker Search是由ntcubic开发的Chrome扩展程序,该扩展的主要功能是“一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。”。

扩展截图

screenshot

下载Poker Search扩展crx文件

下载Poker Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

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

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

扩展基本信息

名称 Poker Search Poker Search
ID oojeodibjbmkclnocinjolfaigheengg
官方URL https://chromewebstore.google.com/detail/poker-search/oojeodibjbmkclnocinjolfaigheengg
简介 一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。
文件大小 573 KB
安装次数 479
当前版本 1.6.10
更新时间 2023-07-28
上架时间 2022-07-10
评分 5.00/5 共4次评分
开发者 ntcubic
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/VecHK/poker-search
帮助页面URL https://github.com/VecHK/poker-search/issues/
隐私政策页面URL https://github.com/VecHK/poker-search/blob/master/USER_DATA_PRIVACY.md
支持的语言 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": []
        }
    ]
}