Custom sites
create a website style
Was ist Custom sites?
Custom sites ist eine Chrome-Erweiterung, die von akimovivan355 entwickelt wurde, und ihr Hauptmerkmal ist "create a website style".
Erweiterungsscreenshots
Custom sites-Erweiterungs-CRX-Datei herunterladen
Laden Sie Custom sites-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Custom sites |
ID | hiadibhippamgikegbcbfagpalmfoonh |
Offizielle URL | https://chromewebstore.google.com/detail/custom-sites/hiadibhippamgikegbcbfagpalmfoonh |
Beschreibung | create a website style |
Dateigröße | 45.04 KB |
Installationsanzahl | 42 |
Aktuelle Version | 4.1 |
Letztes Update | 2023-01-24 |
Veröffentlichungsdatum | 2021-09-01 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | akimovivan355 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/" ] } |