Google Result Highlighter
Highlight google search results from trusted websites.
Τι είναι το Google Result Highlighter;
Το Google Result Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον harunurhan, και η κύρια λειτουργία του είναι "Highlight google search results from trusted websites.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Google Result Highlighter
Λήψη αρχείων επέκτασης Google Result Highlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Highlight google search results from trusted websites. You need to the website which you trust like stackoverflow.com or en.wikipedia.org and select a color for each of them. After that, the extension will highlight results of your google search from that web sites using the colors which you chose. It is an open source project: https://github.com/harunurhan/google-result-highlighter
Βασικές Πληροφορίες Επέκτασης
Όνομα | Google Result Highlighter |
ID | kimgfbhinaigoahlilmenjgbkcdfbeic |
Επίσημο URL | https://chromewebstore.google.com/detail/google-result-highlighter/kimgfbhinaigoahlilmenjgbkcdfbeic |
Περιγραφή | Highlight google search results from trusted websites. |
Μέγεθος Αρχείου | 1.07 MB |
Αριθμός Εγκαταστάσεων | 190 |
Τρέχουσα Έκδοση | 0.6 |
Τελευταία Ενημέρωση | 2021-01-02 |
Ημερομηνία Δημοσίευσης | 2018-03-03 |
Αξιολόγηση | 3.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | harunurhan |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Result Highlighter", "description": "Highlight google search results from trusted websites.", "version": "0.6", "permissions": [ "*:\/\/www.google.co.uk\/*", "*:\/\/www.google.com.tr\/*", "*:\/\/www.google.com\/*", "*:\/\/www.google.co.in\/*", "*:\/\/www.google.com.my\/*", "*:\/\/www.google.co.id\/*", "*:\/\/www.google.ca\/*", "*:\/\/www.google.com.br\/*", "*:\/\/www.google.fr\/*", "*:\/\/www.google.de\/*", "*:\/\/www.google.es\/*", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.google.co.uk\/*", "*:\/\/www.google.com.tr\/*", "*:\/\/www.google.com\/*", "*:\/\/www.google.co.in\/*", "*:\/\/www.google.com.my\/*", "*:\/\/www.google.co.id\/*", "*:\/\/www.google.ca\/*", "*:\/\/www.google.com.br\/*", "*:\/\/www.google.fr\/*", "*:\/\/www.google.de\/*", "*:\/\/www.google.es\/*" ], "js": [ "highlight.js" ], "run_at": "document_end" } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "manifest_version": 2, "options_page": "config.html" } |