AddCSS

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

Was ist AddCSS?

AddCSS ist eine Chrome-Erweiterung, die von http://mkhsoft.eu entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to add your own custom website specific CSS style sheets.".

Erweiterungsscreenshots

screenshot
screenshot

AddCSS-Erweiterungs-CRX-Datei herunterladen

Laden Sie AddCSS-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
Offizielle URL https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Beschreibung This extension allows you to add your own custom website specific CSS style sheets.
Dateigröße 676 KB
Installationsanzahl 252
Aktuelle Version 1.0
Letztes Update 2017-01-20
Veröffentlichungsdatum 2017-01-20
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler http://mkhsoft.eu
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/"
    ]
}