Save CSS

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

O que é Save CSS?

Save CSS é uma extensão do Chrome desenvolvida por Tomi Mickelsson, e sua principal característica é "Save your CSS and JS modifications in Devtools automatically to local disk.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Save CSS

Baixe arquivos de extensão Save CSS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Save CSS Save CSS
ID mflkegihknjnhmpfnaimpfkjbkelhhkf
URL Oficial https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf
Descrição Save your CSS and JS modifications in Devtools automatically to local disk.
Tamanho do Arquivo 23.44 KB
Contagem de Instalações 2,667
Versão Atual 1.0.3
Última Atualização 2012-08-23
Data de Publicação 2012-08-23
Classificação 3.86/5 Total de 29 Avaliações
Desenvolvedor Tomi Mickelsson
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://tomicloud.com
URL da Página de Ajuda http://tomicloud.com/2012/04/save-css-chrome-ext
Idiomas Suportados 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"
}