Stylite

Quickly customize styling on any website

Co to jest Stylite?

Stylite to rozszerzenie Chrome opracowane przez Zenture, a jego główną funkcją jest „Quickly customize styling on any website”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Stylite

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

                        A super lightweight style editor. Apply any styles you want to any site.

* Click the paint palette icon to bring up the style editor for the current site
* Click outside the editor to save
  * You can also press cmd+enter to save at any time

This extension is free and open source! Check it out: https://github.com/iansinnott/stylite                    

Podstawowe informacje o rozszerzeniu

Nazwa Stylite Stylite
ID alghcdmjanomnafjjmmhegabkilpbaea
Oficjalny URL https://chromewebstore.google.com/detail/stylite/alghcdmjanomnafjjmmhegabkilpbaea
Opis Quickly customize styling on any website
Rozmiar pliku 510 KB
Liczba instalacji 98
Aktualna Wersja 0.3.0
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Deweloper Zenture
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/iansinnott/stylite
Adres URL Strony Pomocy https://github.com/iansinnott/stylite/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stylite",
    "description": "Quickly customize styling on any website",
    "version": "0.3.0",
    "icons": {
        "128": "icon128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon19x19.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "storage",
        "unlimitedStorage"
    ]
}