Custom CSS by Denis
Minimal and secure way to add custom CSS per-domain
Was ist Custom CSS by Denis?
Custom CSS by Denis ist eine Chrome-Erweiterung, die von https://sokolov.cc entwickelt wurde, und ihr Hauptmerkmal ist "Minimal and secure way to add custom CSS per-domain".
Erweiterungsscreenshots
Custom CSS by Denis-Erweiterungs-CRX-Datei herunterladen
Laden Sie Custom CSS by Denis-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
Add custom CSS styles on websites. The extension does not require permissions to access all data on all websites all the time. Once you start editing CSS on a page, you get a permission prompt specific to that domain. Later, if the CSS for a domain is not used, the permission will be dropped. There is no UI clutter of any kind. The entire extension consists of a big editable area for CSS code for the current domain.
Grundlegende Informationen zur Erweiterung
Name | Custom CSS by Denis |
ID | cemphncflepgmgfhcdegkbkekifodacd |
Offizielle URL | https://chromewebstore.google.com/detail/custom-css-by-denis/cemphncflepgmgfhcdegkbkekifodacd |
Beschreibung | Minimal and secure way to add custom CSS per-domain |
Dateigröße | 40.74 KB |
Installationsanzahl | 3,018 |
Aktuelle Version | 1.2.0 |
Letztes Update | 2024-03-04 |
Veröffentlichungsdatum | 2018-10-20 |
Bewertung | 4.30/5 Insgesamt 30 Bewertungen |
Entwickler | https://sokolov.cc |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/denis-sokolov/chrome-custom-css |
Hilfeseite URL | https://github.com/denis-sokolov/chrome-custom-css/issues |
Unterstützte Sprachen | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extension_name__", "short_name": "__MSG_extension_short_name__", "version": "1.2.0", "default_locale": "en", "description": "__MSG_extension_description__", "icons": { "16": "src\/icons\/16.png", "48": "src\/icons\/48.png", "128": "src\/icons\/128.png", "256": "src\/icons\/256.png" }, "background": { "service_worker": "src\/background\/index.js", "type": "module" }, "action": { "default_popup": "src\/popup\/index.html" }, "optional_host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "permissions": [ "activeTab", "scripting", "storage" ] } |