AddCSS

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

Co to jest AddCSS?

AddCSS to rozszerzenie Chrome opracowane przez http://mkhsoft.eu, a jego główną funkcją jest „This extension allows you to add your own custom website specific CSS style sheets.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia AddCSS

Pobierz pliki rozszerzeń AddCSS w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
Oficjalny URL https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Opis This extension allows you to add your own custom website specific CSS style sheets.
Rozmiar pliku 676 KB
Liczba instalacji 252
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-01-20
Data Publikacji 2017-01-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper http://mkhsoft.eu
Typ Płatności free
Obsługiwane Języki 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:\/\/*\/"
    ]
}