Custom CSS by Denis

Minimal and secure way to add custom CSS per-domain

Cos'è Custom CSS by Denis?

Custom CSS by Denis è un'estensione di Chrome sviluppata da https://sokolov.cc, e la sua funzione principale è "Minimal and secure way to add custom CSS per-domain".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Custom CSS by Denis

Scarica i file di estensione Custom CSS by Denis in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Custom CSS by Denis Custom CSS by Denis
ID cemphncflepgmgfhcdegkbkekifodacd
URL Ufficiale https://chromewebstore.google.com/detail/custom-css-by-denis/cemphncflepgmgfhcdegkbkekifodacd
Descrizione Minimal and secure way to add custom CSS per-domain
Dimensione del File 40.74 KB
Conteggio Installazioni 3,018
Versione Corrente 1.2.0
Ultimo Aggiornamento 2024-03-04
Data di Pubblicazione 2018-10-20
Valutazione 4.30/5 Totale 30 Valutazioni
Sviluppatore https://sokolov.cc
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/denis-sokolov/chrome-custom-css
URL della Pagina di Aiuto https://github.com/denis-sokolov/chrome-custom-css/issues
Lingue Supportate 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"
    ]
}