Display Ranking

You can display the ranking in the Web search results.

Was ist Display Ranking?

Display Ranking ist eine Chrome-Erweiterung, die von https://www.rectus.co.jp entwickelt wurde, und ihr Hauptmerkmal ist "You can display the ranking in the Web search results.".

Erweiterungsscreenshots

screenshot

Display Ranking-Erweiterungs-CRX-Datei herunterladen

Laden Sie Display Ranking-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Display Ranking Display Ranking
ID npolfbklkkpiomaddlnejicfifbbkafn
Offizielle URL https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn
Beschreibung You can display the ranking in the Web search results.
Dateigröße 56.09 KB
Installationsanzahl 4,210
Aktuelle Version 1.0.25
Letztes Update 2023-10-30
Veröffentlichungsdatum 2020-04-12
Bewertung 4.33/5 Insgesamt 3 Bewertungen
Entwickler https://www.rectus.co.jp
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.rectus.co.jp/tool/displayranking.html
Hilfeseite URL https://www.rectus.co.jp/tool/displayranking.html
URL der Datenschutzrichtlinien-Seite https://www.rectus.co.jp/company/privacy.html
Unterstützte Sprachen 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
    }
}