Save CSS
Save your CSS and JS modifications in Devtools automatically to local disk.
Save CSS क्या है?
Save CSS Tomi Mickelsson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save your CSS and JS modifications in Devtools automatically to local disk."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Save CSS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Save CSS |
ID | mflkegihknjnhmpfnaimpfkjbkelhhkf |
आधिकारिक URL | https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf |
विवरण | Save your CSS and JS modifications in Devtools automatically to local disk. |
फ़ाइल का आकार | 23.44 KB |
स्थापना संख्या | 2,667 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2012-08-23 |
प्रकाशन तिथि | 2012-08-23 |
रेटिंग | 3.86/5 कुल 29 रेटिंग्स |
डेवलपर | Tomi Mickelsson |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://tomicloud.com |
सहायता पृष्ठ URL | http://tomicloud.com/2012/04/save-css-chrome-ext |
समर्थित भाषाएँ | 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" } |