Custom sites

create a website style

Co to jest Custom sites?

Custom sites to rozszerzenie Chrome opracowane przez akimovivan355, a jego główną funkcją jest „create a website style”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Custom sites

Pobierz pliki rozszerzeń Custom sites 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

                        the application allows you to customize the interface of google and youtube. Select separate colors for the text of the background links using the full RGB palette for each site separately, the colors can be reset if necessary                    

Podstawowe informacje o rozszerzeniu

Nazwa Custom sites Custom sites
ID hiadibhippamgikegbcbfagpalmfoonh
Oficjalny URL https://chromewebstore.google.com/detail/custom-sites/hiadibhippamgikegbcbfagpalmfoonh
Opis create a website style
Rozmiar pliku 45.04 KB
Liczba instalacji 42
Aktualna Wersja 4.1
Ostatnia Aktualizacja 2023-01-24
Data Publikacji 2021-09-01
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper akimovivan355
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom sites",
    "description": "create a website style",
    "version": "4.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "48": "image 3.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "*:\/\/*.google.com\/"
    ]
}