Display Ranking

You can display the ranking in the Web search results.

O que é Display Ranking?

Display Ranking é uma extensão do Chrome desenvolvida por https://www.rectus.co.jp, e sua principal característica é "You can display the ranking in the Web search results.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Display Ranking

Baixe arquivos de extensão Display Ranking 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

                        The ranking can be displayed in the search result of the search engine.
Supported search engines: Google, Bing and Yahoo.

If there is a site that you pay attention to, register it in advance so that you can click to move to that site page if it is displayed in the search results.                    

Informações Básicas da Extensão

Nome Display Ranking Display Ranking
ID npolfbklkkpiomaddlnejicfifbbkafn
URL Oficial https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn
Descrição You can display the ranking in the Web search results.
Tamanho do Arquivo 56.09 KB
Contagem de Instalações 4,210
Versão Atual 1.0.25
Última Atualização 2023-10-30
Data de Publicação 2020-04-12
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor https://www.rectus.co.jp
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.rectus.co.jp/tool/displayranking.html
URL da Página de Ajuda https://www.rectus.co.jp/tool/displayranking.html
URL da Página de Política de Privacidade https://www.rectus.co.jp/company/privacy.html
Idiomas Suportados en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_shortname__",
    "version": "1.0.25",
    "description": "__MSG_ext_description__",
    "default_locale": "ja",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "__MSG_ext_name__",
        "default_icon": {
            "19": "icons\/icon-19.png"
        }
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/search*",
                "https:\/\/www.google.co.jp\/search*",
                "https:\/\/www.bing.com\/search*",
                "https:\/\/search.yahoo.com\/search*",
                "https:\/\/search.yahoo.co.jp\/search*"
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "contentscript.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}