Display Ranking
You can display the ranking in the Web search results.
Co je Display Ranking?
Display Ranking je rozšíření Chrome vyvinuté https://www.rectus.co.jp, a jeho hlavní funkcí je „You can display the ranking in the Web search results.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Display Ranking
Stáhněte si soubory rozšíření Display Ranking ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Display Ranking |
ID | npolfbklkkpiomaddlnejicfifbbkafn |
Oficiální URL | https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn |
Popis | You can display the ranking in the Web search results. |
Velikost souboru | 56.09 KB |
Počet instalací | 4,210 |
Aktuální Verze | 1.0.25 |
Poslední Aktualizace | 2023-10-30 |
Datum Vydání | 2020-04-12 |
Hodnocení | 4.33/5 Celkem 3 Hodnocení |
Vývojář | https://www.rectus.co.jp |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.rectus.co.jp/tool/displayranking.html |
URL Stránky Nápovědy | https://www.rectus.co.jp/tool/displayranking.html |
URL Stránky Zásad Ochrany Soukromí | https://www.rectus.co.jp/company/privacy.html |
Podporované Jazyky | 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 } } |