Save CSS
Save your CSS and JS modifications in Devtools automatically to local disk.
Was ist Save CSS?
Save CSS ist eine Chrome-Erweiterung, die von Tomi Mickelsson entwickelt wurde, und ihr Hauptmerkmal ist "Save your CSS and JS modifications in Devtools automatically to local disk.".
Erweiterungsscreenshots
Save CSS-Erweiterungs-CRX-Datei herunterladen
Laden Sie Save CSS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Save CSS |
ID | mflkegihknjnhmpfnaimpfkjbkelhhkf |
Offizielle URL | https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf |
Beschreibung | Save your CSS and JS modifications in Devtools automatically to local disk. |
Dateigröße | 23.44 KB |
Installationsanzahl | 2,667 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2012-08-23 |
Veröffentlichungsdatum | 2012-08-23 |
Bewertung | 3.86/5 Insgesamt 29 Bewertungen |
Entwickler | Tomi Mickelsson |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://tomicloud.com |
Hilfeseite URL | http://tomicloud.com/2012/04/save-css-chrome-ext |
Unterstützte Sprachen | 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" } |