TinkerCSS

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

Vad är TinkerCSS?

TinkerCSS är en Chrome-tillägg utvecklad av Jan Baykara, och dess huvudfunktion är "An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.".

Tilläggsskärmbilder

screenshot

Ladda ner TinkerCSS-förlängningens CRX-fil

Ladda ner TinkerCSS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn TinkerCSS TinkerCSS
ID flbdabolfkgfmcnlheopgencfhjcllbp
Officiell webbadress https://chrome.google.com/webstore/detail/tinkercss/flbdabolfkgfmcnlheopgencfhjcllbp
Beskrivning An inspector tools panel. Tinker with a site's CSS in real time, automatically remember your changes.
Filstorlek 682 KB
Antal Installationer 154
Aktuell Version 1.2.2
Senast Uppdaterad 2015-07-09
Publiceringsdatum 2015-07-09
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare Jan Baykara
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/janbaykara/TinkerCSS
Hjälpsida URL https://github.com/janbaykara/TinkerCSS/issues
Stödda Språk 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"
}