Display Ranking
You can display the ranking in the Web search results.
Qu'est-ce que Display Ranking ?
Display Ranking est une extension Chrome développée par https://www.rectus.co.jp, et sa fonction principale est "You can display the ranking in the Web search results.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Display Ranking
Téléchargez les fichiers d'extension Display Ranking au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Display Ranking |
ID | npolfbklkkpiomaddlnejicfifbbkafn |
URL Officiel | https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn |
Description | You can display the ranking in the Web search results. |
Taille du Fichier | 56.09 KB |
Nombre d'Installations | 4,210 |
Version Actuelle | 1.0.25 |
Dernière Mise à Jour | 2023-10-30 |
Date de Publication | 2020-04-12 |
Évaluation | 4.33/5 Total 3 Évaluations |
Développeur | https://www.rectus.co.jp |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.rectus.co.jp/tool/displayranking.html |
URL de la Page d'Aide | https://www.rectus.co.jp/tool/displayranking.html |
URL de la Page de Politique de Confidentialité | https://www.rectus.co.jp/company/privacy.html |
Langues Prises en Charge | 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 } } |