Customize CSS

Change your favourite websites design instantly by using Chrome's Customize CSS extension.

Co to jest Customize CSS?

Customize CSS to rozszerzenie Chrome opracowane przez Yasser R Shaikh, a jego główną funkcją jest „Change your favourite websites design instantly by using Chrome's Customize CSS extension.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Customize CSS

Pobierz pliki rozszerzeń Customize CSS 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

                        Lets your customize look and feel of any site, and remembers it. Simply override the css  of the existing website and this plugin will remember it.                    

Podstawowe informacje o rozszerzeniu

Nazwa Customize CSS Customize CSS
ID iiigcmcpofchighahjijinjnajfnnidd
Oficjalny URL https://chromewebstore.google.com/detail/customize-css/iiigcmcpofchighahjijinjnajfnnidd
Opis Change your favourite websites design instantly by using Chrome's Customize CSS extension.
Rozmiar pliku 228 KB
Liczba instalacji 86
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-08-29
Data Publikacji 2019-08-24
Deweloper Yasser R Shaikh
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "browser_action": {
        "default_icon": "icons\/logo.png",
        "default_popup": "popup.html",
        "default_title": "Customize CSS"
    },
    "description": "Change your favourite websites design instantly by using Chrome's Customize CSS extension.",
    "manifest_version": 2,
    "name": "Customize CSS",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0"
}