Display Ranking

You can display the ranking in the Web search results.

Cos'è Display Ranking?

Display Ranking è un'estensione di Chrome sviluppata da https://www.rectus.co.jp, e la sua funzione principale è "You can display the ranking in the Web search results.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Display Ranking

Scarica i file di estensione Display Ranking in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Display Ranking Display Ranking
ID npolfbklkkpiomaddlnejicfifbbkafn
URL Ufficiale https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn
Descrizione You can display the ranking in the Web search results.
Dimensione del File 56.09 KB
Conteggio Installazioni 4,210
Versione Corrente 1.0.25
Ultimo Aggiornamento 2023-10-30
Data di Pubblicazione 2020-04-12
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore https://www.rectus.co.jp
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.rectus.co.jp/tool/displayranking.html
URL della Pagina di Aiuto https://www.rectus.co.jp/tool/displayranking.html
URL della Pagina della Politica sulla Privacy https://www.rectus.co.jp/company/privacy.html
Lingue Supportate 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
    }
}