Save CSS

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

Hvad er Save CSS?

Save CSS er en Chrome-udvidelse udviklet af Tomi Mickelsson, og dens hovedfunktion er "Save your CSS and JS modifications in Devtools automatically to local disk.".

Udvidelsesskærmbilleder

screenshot

Download Save CSS-udvidelses-CRX-fil

Download Save CSS-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Save CSS Save CSS
ID mflkegihknjnhmpfnaimpfkjbkelhhkf
Officiel URL https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf
Beskrivelse Save your CSS and JS modifications in Devtools automatically to local disk.
Filstørrelse 23.44 KB
Antal Installationer 2,667
Nuværende Version 1.0.3
Senest Opdateret 2012-08-23
Udgivelsesdato 2012-08-23
Bedømmelse 3.86/5 Samlet 29 Bedømmelser
Udvikler Tomi Mickelsson
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://tomicloud.com
Hjælpeside-URL http://tomicloud.com/2012/04/save-css-chrome-ext
Understøttede Sprog 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"
}