Poker Search

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

Poker Search란 무엇입니까?

Poker Search은(는) ntcubic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "一款灵感来源于 Smartisan TNT 发牌手的 Chrome 扩展插件。"입니다.

확장 프로그램 스크린샷

screenshot

Poker Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        本插件能够让用户输入一个关键词后,用全新的交互方式一次性展现出用户所有收录进 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": []
        }
    ]
}