Display Ranking
You can display the ranking in the Web search results.
Τι είναι το Display Ranking;
Το Display Ranking είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.rectus.co.jp, και η κύρια λειτουργία του είναι "You can display the ranking in the Web search results.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Display Ranking
Λήψη αρχείων επέκτασης 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 } } |