TinkerCSS

An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.

Co to jest TinkerCSS?

TinkerCSS to rozszerzenie Chrome opracowane przez Jan Baykara, a jego główną funkcją jest „An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia TinkerCSS

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

                        TinkerCSS appends a CSS style tag to the end of a HTML document , that you can then live modify via the extension's editor Inspector panel, and see the results in real-time.

The CSS you write is saved with reference to the page URL, so if you open the same page again and load the panel, your previously written snippet will load up.                    

Podstawowe informacje o rozszerzeniu

Nazwa TinkerCSS TinkerCSS
ID flbdabolfkgfmcnlheopgencfhjcllbp
Oficjalny URL https://chrome.google.com/webstore/detail/tinkercss/flbdabolfkgfmcnlheopgencfhjcllbp
Opis An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.
Rozmiar pliku 682 KB
Liczba instalacji 154
Aktualna Wersja 1.2.2
Ostatnia Aktualizacja 2015-07-09
Data Publikacji 2015-07-09
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Jan Baykara
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/janbaykara/TinkerCSS
Adres URL Strony Pomocy https://github.com/janbaykara/TinkerCSS/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TinkerCSS",
    "description": "An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.",
    "manifest_version": 2,
    "version": "1.2.2",
    "icons": {
        "128": "img\/icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "deps\/jquery.js",
                "lib\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "lib\/background.js"
        ]
    },
    "devtools_page": "lib\/devtools\/devtools.html"
}