Display Ranking
You can display the ranking in the Web search results.
Display Ranking là gì?
Display Ranking là một tiện ích mở rộng Chrome được phát triển bởi https://www.rectus.co.jp, và tính năng chính của nó là "You can display the ranking in the Web search results.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Display Ranking
Tải xuống các tệp mở rộng Display Ranking dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Display Ranking |
ID | npolfbklkkpiomaddlnejicfifbbkafn |
URL Chính Thức | https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn |
Mô tả | You can display the ranking in the Web search results. |
Kích Thước Tệp | 56.09 KB |
Số Lần Cài Đặt | 4,210 |
Phiên Bản Hiện Tại | 1.0.25 |
Cập Nhật Lần Cuối | 2023-10-30 |
Ngày Phát Hành | 2020-04-12 |
Đánh Giá | 4.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://www.rectus.co.jp |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.rectus.co.jp/tool/displayranking.html |
URL Trang Trợ Giúp | https://www.rectus.co.jp/tool/displayranking.html |
URL Trang Chính Sách Bảo Mật | https://www.rectus.co.jp/company/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |