Search Center

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

O que é Search Center?

Search Center é uma extensão do Chrome desenvolvida por https://getsearchcenter.com, e sua principal característica é "Helps you search and highlight text on a web page. Supports keyboard shortcuts.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Search Center

Baixe arquivos de extensão Search Center no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Search Center Search Center
ID bibjjhmgoinhccohlihdcidipacbkolh
URL Oficial https://chromewebstore.google.com/detail/search-center/bibjjhmgoinhccohlihdcidipacbkolh
Descrição Helps you search and highlight text on a web page. Supports keyboard shortcuts.
Tamanho do Arquivo 46.01 KB
Contagem de Instalações 24
Versão Atual 1.0.3
Última Atualização 2021-09-26
Data de Publicação 2021-06-02
Desenvolvedor https://getsearchcenter.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://getsearchcenter.com/privacy.html
Idiomas Suportados 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"
}