AddCSS

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

What is AddCSS?

AddCSS is a Chrome extension developed by http://mkhsoft.eu, and its main feature is "This extension allows you to add your own custom website specific CSS style sheets.".

Extension Screenshots

screenshot
screenshot

Download AddCSS Extension CRX File

Download AddCSS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
Official URL https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Description This extension allows you to add your own custom website specific CSS style sheets.
File Size 676 KB
Installation Count 252
Current Version 1.0
Last Updated 2017-01-20
Publish Date 2017-01-20
Rating 5.00/5 Total 1 Ratings
Developer http://mkhsoft.eu
Payment Type free
Supported Languages 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:\/\/*\/"
    ]
}