Save CSS
Save your CSS and JS modifications in Devtools automatically to local disk.
Qu'est-ce que Save CSS ?
Save CSS est une extension Chrome développée par Tomi Mickelsson, et sa fonction principale est "Save your CSS and JS modifications in Devtools automatically to local disk.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Save CSS
Téléchargez les fichiers d'extension Save CSS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Save CSS |
ID | mflkegihknjnhmpfnaimpfkjbkelhhkf |
URL Officiel | https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf |
Description | Save your CSS and JS modifications in Devtools automatically to local disk. |
Taille du Fichier | 23.44 KB |
Nombre d'Installations | 2,667 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2012-08-23 |
Date de Publication | 2012-08-23 |
Évaluation | 3.86/5 Total 29 Évaluations |
Développeur | Tomi Mickelsson |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://tomicloud.com |
URL de la Page d'Aide | http://tomicloud.com/2012/04/save-css-chrome-ext |
Langues Prises en Charge | 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" } |