Save CSS

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

Co to jest Save CSS?

Save CSS to rozszerzenie Chrome opracowane przez Tomi Mickelsson, a jego główną funkcją jest „Save your CSS and JS modifications in Devtools automatically to local disk.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Save CSS

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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Save CSS Save CSS
ID mflkegihknjnhmpfnaimpfkjbkelhhkf
Oficjalny URL https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf
Opis Save your CSS and JS modifications in Devtools automatically to local disk.
Rozmiar pliku 23.44 KB
Liczba instalacji 2,667
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2012-08-23
Data Publikacji 2012-08-23
Ocena 3.86/5 Łącznie 29 Oceny
Deweloper Tomi Mickelsson
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://tomicloud.com
Adres URL Strony Pomocy http://tomicloud.com/2012/04/save-css-chrome-ext
Obsługiwane Języki 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"
}