Display Ranking
You can display the ranking in the Web search results.
什么是Display Ranking?
Display Ranking是由https://www.rectus.co.jp开发的Chrome扩展程序,该扩展的主要功能是“You can display the ranking in the Web search results.”。
扩展截图
下载Display Ranking扩展crx文件
下载Display Ranking扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Display Ranking |
ID | npolfbklkkpiomaddlnejicfifbbkafn |
官方URL | https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn |
简介 | You can display the ranking in the Web search results. |
文件大小 | 56.09 KB |
安装次数 | 4,210 |
当前版本 | 1.0.25 |
更新时间 | 2023-10-30 |
上架时间 | 2020-04-12 |
评分 | 4.33/5 共3次评分 |
开发者 | https://www.rectus.co.jp |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.rectus.co.jp/tool/displayranking.html |
帮助页面URL | https://www.rectus.co.jp/tool/displayranking.html |
隐私政策页面URL | https://www.rectus.co.jp/company/privacy.html |
支持的语言 | 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 } } |