Save CSS
Save your CSS and JS modifications in Devtools automatically to local disk.
Wat is Save CSS?
Save CSS is een Chrome-extensie ontwikkeld door Tomi Mickelsson, en de belangrijkste functie is "Save your CSS and JS modifications in Devtools automatically to local disk.".
Extensie Screenshots
Download het CRX-bestand van de extensie Save CSS
Download Save CSS-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Save CSS |
ID | mflkegihknjnhmpfnaimpfkjbkelhhkf |
Officiële URL | https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf |
Beschrijving | Save your CSS and JS modifications in Devtools automatically to local disk. |
Bestandsgrootte | 23.44 KB |
Aantal Installaties | 2,667 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2012-08-23 |
Publicatiedatum | 2012-08-23 |
Beoordeling | 3.86/5 Totaal 29 Beoordelingen |
Ontwikkelaar | Tomi Mickelsson |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://tomicloud.com |
Help Pagina-URL | http://tomicloud.com/2012/04/save-css-chrome-ext |
Ondersteunde Talen | 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" } |