AddCSS

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

Vad är AddCSS?

AddCSS är en Chrome-tillägg utvecklad av http://mkhsoft.eu, och dess huvudfunktion är "This extension allows you to add your own custom website specific CSS style sheets.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner AddCSS-förlängningens CRX-fil

Ladda ner AddCSS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
Officiell webbadress https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Beskrivning This extension allows you to add your own custom website specific CSS style sheets.
Filstorlek 676 KB
Antal Installationer 252
Aktuell Version 1.0
Senast Uppdaterad 2017-01-20
Publiceringsdatum 2017-01-20
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare http://mkhsoft.eu
Betalningssätt free
Stödda Språk 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:\/\/*\/"
    ]
}