Save CSS

Save your CSS and JS modifications in Devtools automatically to local disk.

Cos'è Save CSS?

Save CSS è un'estensione di Chrome sviluppata da Tomi Mickelsson, e la sua funzione principale è "Save your CSS and JS modifications in Devtools automatically to local disk.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Save CSS

Scarica i file di estensione Save CSS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Save CSS is a Chrome extension that speeds up your web UI development workflow
by automatically saving your CSS and Javascript modifications in Chrome
Developer Tools into the local disk. Eliminate manual copying and pasting of
CSS values from Developer Tools to source files and install this extension.

This extension requires an external script that is written in Python or Ruby. Pick one of them:

Get the python script from: https://raw.github.com/tomimick/chrome-ext-save-css/master/servers/server.py

Alternatively, get the Ruby script from: https://raw.github.com/tomimick/chrome-ext-save-css/master/servers/server.rb

See usage and technical information in author's blog in http://tomicloud.com/2012/04/save-css-chrome-ext                    

Informazioni di Base sull'Estensione

Nome Save CSS Save CSS
ID mflkegihknjnhmpfnaimpfkjbkelhhkf
URL Ufficiale https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf
Descrizione Save your CSS and JS modifications in Devtools automatically to local disk.
Dimensione del File 23.44 KB
Conteggio Installazioni 2,667
Versione Corrente 1.0.3
Ultimo Aggiornamento 2012-08-23
Data di Pubblicazione 2012-08-23
Valutazione 3.86/5 Totale 29 Valutazioni
Sviluppatore Tomi Mickelsson
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://tomicloud.com
URL della Pagina di Aiuto http://tomicloud.com/2012/04/save-css-chrome-ext
Lingue Supportate en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save CSS",
    "version": "1.0.3",
    "description": "Save your CSS and JS modifications in Devtools automatically to local disk.",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "minimum_chrome_version": "18"
}