Favicons For Google Search
Puts favicons (according to Google s2 library) on Google search results.
Τι είναι το Favicons For Google Search;
Το Favicons For Google Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yemsh, και η κύρια λειτουργία του είναι "Puts favicons (according to Google s2 library) on Google search results.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Favicons For Google Search
Λήψη αρχείων επέκτασης Favicons For Google Search σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Enhance your Google search experience with this extension. Puts the favicon of the website next to the site's name in the Google search page. Similar to how a search looks like when searching on a mobile device. If the website favicon is not available in the Google s2 library, the default globe favicon is used. *** 0.2 *** You can now choose between large and small favicon sizes. Large favicons will show up to the left of links. Small favicons will show up in the same location as the favicons on google search for mobile. *** 0.1 *** Favicons show up in same location as google search on mobile.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Favicons For Google Search |
ID | cmokoclkdghcohhmpohdhjahocjgjblp |
Επίσημο URL | https://chromewebstore.google.com/detail/favicons-for-google-searc/cmokoclkdghcohhmpohdhjahocjgjblp |
Περιγραφή | Puts favicons (according to Google s2 library) on Google search results. |
Μέγεθος Αρχείου | 23.46 KB |
Αριθμός Εγκαταστάσεων | 242 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2021-03-23 |
Ημερομηνία Δημοσίευσης | 2021-03-03 |
Αξιολόγηση | 4.30/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | Yemsh |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Favicons For Google Search", "version": "0.2", "description": "Puts favicons (according to Google s2 library) on Google search results.", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.google.com\/*" ], "action": { "matches": [ "*:\/\/*.google.com\/*" ], "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.google.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |