Search Center

Helps you search and highlight text on a web page. Supports keyboard shortcuts.

Search Centerとは何ですか?

Search Centerはhttps://getsearchcenter.comによって開発されたChromeの拡張機能で、その主な機能は「Helps you search and highlight text on a web page. Supports keyboard shortcuts.」です。

拡張機能のスクリーンショット

screenshot

Search Center拡張機能のCRXファイルをダウンロード

Search Center拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Search Center extension allows you to quickly search or highlight text on a web page. For more convenience, you can use hot keys.
To open the search window, just click on the extension icon in the upper-right corner of the browser, or use the keyboard shortcut: Alt + Shift + F.

Privacy Policy: https://getsearchcenter.com/privacy.html
Terms of Use: https://getsearchcenter.com/terms.html

By click on «Add to Chrome» button in the top right hand corner and installing Search Center extension, you are agreeing to install this extension, you are agreeing to our Privacy Policy, and you are agreeing to our Terms of Use.                    

拡張機能の基本情報

名前 Search Center Search Center
ID bibjjhmgoinhccohlihdcidipacbkolh
公式URL https://chromewebstore.google.com/detail/search-center/bibjjhmgoinhccohlihdcidipacbkolh
説明 Helps you search and highlight text on a web page. Supports keyboard shortcuts.
ファイルサイズ 46.01 KB
インストール数 24
現在のバージョン 1.0.3
最終更新日 2021-09-26
公開日 2021-06-02
開発者 https://getsearchcenter.com
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://getsearchcenter.com/privacy.html
対応言語 en
manifest.json
{
    "manifest_version": 2,
    "name": "Search Center",
    "version": "1.0.3",
    "description": "Helps you search and highlight text on a web page. Supports keyboard shortcuts.",
    "icons": {
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "toolbar.html"
    ],
    "browser_action": [],
    "commands": {
        "toggle-toolbar": {
            "description": "Show\/hide toolbar",
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        },
        "highlight-text": {
            "description": "Highlight text",
            "suggested_key": {
                "default": "Alt+H"
            }
        },
        "find-next": {
            "description": "Find next",
            "suggested_key": {
                "default": "Alt+N"
            }
        },
        "search-google": {
            "description": "Search in Google",
            "suggested_key": {
                "default": "Alt+G"
            }
        }
    },
    "permissions": [
        "activeTab"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}