Display Ranking
You can display the ranking in the Web search results.
¿Qué es Display Ranking?
Display Ranking es una extensión de Chrome desarrollada por https://www.rectus.co.jp, y su función principal es "You can display the ranking in the Web search results.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Display Ranking
Descarga archivos de extensión Display Ranking en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Display Ranking |
ID | npolfbklkkpiomaddlnejicfifbbkafn |
URL Oficial | https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn |
Descripción | You can display the ranking in the Web search results. |
Tamaño del Archivo | 56.09 KB |
Cantidad de Instalaciones | 4,210 |
Versión Actual | 1.0.25 |
Última Actualización | 2023-10-30 |
Fecha de Publicación | 2020-04-12 |
Calificación | 4.33/5 Total de 3 Calificaciones |
Desarrollador | https://www.rectus.co.jp |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.rectus.co.jp/tool/displayranking.html |
URL de la Página de Ayuda | https://www.rectus.co.jp/tool/displayranking.html |
URL de la Página de Política de Privacidad | https://www.rectus.co.jp/company/privacy.html |
Idiomas Soportados | 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 } } |