AddCSS

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

Wat is AddCSS?

AddCSS is een Chrome-extensie ontwikkeld door http://mkhsoft.eu, en de belangrijkste functie is "This extension allows you to add your own custom website specific CSS style sheets.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie AddCSS

Download AddCSS-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
Officiële URL https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Beschrijving This extension allows you to add your own custom website specific CSS style sheets.
Bestandsgrootte 676 KB
Aantal Installaties 252
Huidige Versie 1.0
Laatst Bijgewerkt 2017-01-20
Publicatiedatum 2017-01-20
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar http://mkhsoft.eu
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/"
    ]
}