Save CSS
Save your CSS and JS modifications in Devtools automatically to local disk.
Vad är Save CSS?
Save CSS är en Chrome-tillägg utvecklad av Tomi Mickelsson, och dess huvudfunktion är "Save your CSS and JS modifications in Devtools automatically to local disk.".
Tilläggsskärmbilder
Ladda ner Save CSS-förlängningens CRX-fil
Ladda ner Save CSS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Save CSS |
ID | mflkegihknjnhmpfnaimpfkjbkelhhkf |
Officiell webbadress | https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf |
Beskrivning | Save your CSS and JS modifications in Devtools automatically to local disk. |
Filstorlek | 23.44 KB |
Antal Installationer | 2,667 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2012-08-23 |
Publiceringsdatum | 2012-08-23 |
Betyg | 3.86/5 Totalt 29 Betyg |
Utvecklare | Tomi Mickelsson |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://tomicloud.com |
Hjälpsida URL | http://tomicloud.com/2012/04/save-css-chrome-ext |
Stödda Språk | 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" } |