AddCSS

This extension allows you to add your own custom website specific CSS style sheets.

Cos'è AddCSS?

AddCSS è un'estensione di Chrome sviluppata da http://mkhsoft.eu, e la sua funzione principale è "This extension allows you to add your own custom website specific CSS style sheets.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione AddCSS

Scarica i file di estensione AddCSS 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

                        AddCSS is a neat extension that lets you add your own custom domain specific CSS code to web pages

Your custom code is even synchronised between your Chrome browsers in different machines.                    

Informazioni di Base sull'Estensione

Nome AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
URL Ufficiale https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Descrizione This extension allows you to add your own custom website specific CSS style sheets.
Dimensione del File 676 KB
Conteggio Installazioni 252
Versione Corrente 1.0
Ultimo Aggiornamento 2017-01-20
Data di Pubblicazione 2017-01-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore http://mkhsoft.eu
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddCSS",
    "description": "This extension allows you to add your own custom website specific CSS style sheets.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}