Custom sites
create a website style
Τι είναι το Custom sites;
Το Custom sites είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον akimovivan355, και η κύρια λειτουργία του είναι "create a website style".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Custom sites
Λήψη αρχείων επέκτασης Custom sites σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
the application allows you to customize the interface of google and youtube. Select separate colors for the text of the background links using the full RGB palette for each site separately, the colors can be reset if necessary
Βασικές Πληροφορίες Επέκτασης
Όνομα | Custom sites |
ID | hiadibhippamgikegbcbfagpalmfoonh |
Επίσημο URL | https://chromewebstore.google.com/detail/custom-sites/hiadibhippamgikegbcbfagpalmfoonh |
Περιγραφή | create a website style |
Μέγεθος Αρχείου | 45.04 KB |
Αριθμός Εγκαταστάσεων | 42 |
Τρέχουσα Έκδοση | 4.1 |
Τελευταία Ενημέρωση | 2023-01-24 |
Ημερομηνία Δημοσίευσης | 2021-09-01 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | akimovivan355 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Custom sites", "description": "create a website style", "version": "4.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "icons": { "48": "image 3.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ], "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "popup.html" }, "host_permissions": [ "*:\/\/*.google.com\/" ] } |