AddCSS

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

Hvad er AddCSS?

AddCSS er en Chrome-udvidelse udviklet af http://mkhsoft.eu, og dens hovedfunktion er "This extension allows you to add your own custom website specific CSS style sheets.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download AddCSS-udvidelses-CRX-fil

Download AddCSS-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
Officiel URL https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Beskrivelse This extension allows you to add your own custom website specific CSS style sheets.
Filstørrelse 676 KB
Antal Installationer 252
Nuværende Version 1.0
Senest Opdateret 2017-01-20
Udgivelsesdato 2017-01-20
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler http://mkhsoft.eu
Betalingsmetode free
Understøttede Sprog 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:\/\/*\/"
    ]
}