SnapCss
SnapCss - Realtime editing style in a snap!
SnapCss क्या है?
SnapCss Trần Quang Hiệp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "SnapCss - Realtime editing style in a snap!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SnapCss एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Realtime editing style in a snap! Imagine no more file saving or page reloading just to see how single update affects web page, realtime update style in browser immediately, as you type... How many time you can save? how fast we can build our application? No need to waiting for JS framework build time to see your new style apply. Just type your new style and see the magic happen. Base on this idea [Livestyle](http://livestyle.io/). I'm writing an extension for VS code and Chrome that can help Frontend Developer can style faster. It call *SnapCss* that can updates in realtime CSS from VSCode to browser immediately, as you type. No more file saving or page reloading just to see how single update affects web page. Homepage: https://github.com/xanhtool/SnapCss ------------------------------------------------------------------------------------------ contact me on email: [email protected] my facebook: https://www.facebook.com/hiepsieuviet skype: live:hiepxanh
एक्सटेंशन की मूल जानकारी
नाम | SnapCss |
ID | fdehldbleadjkgomndkhnciddeiohjmf |
आधिकारिक URL | https://chromewebstore.google.com/detail/snapcss/fdehldbleadjkgomndkhnciddeiohjmf |
विवरण | SnapCss - Realtime editing style in a snap! |
फ़ाइल का आकार | 185 KB |
स्थापना संख्या | 30 |
वर्तमान संस्करण | 0.0.5 |
अंतिम अपडेट | 2020-02-20 |
प्रकाशन तिथि | 2020-02-20 |
डेवलपर | Trần Quang Hiệp |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://youtu.be/W-hWhR5GX_c |
सहायता पृष्ठ URL | https://youtu.be/W-hWhR5GX_c |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SnapCss", "short_name": "SnapCss", "version": "0.0.5", "description": "SnapCss - Realtime editing style in a snap!", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background-scripts\/background.js" ], "persistent": false }, "options_page": "page-action-scripts\/options.html", "page_action": { "default_popup": "page-action-scripts\/popup.html", "default_icon": { "16": "logo-only\/[email protected]", "32": "logo-only\/[email protected]", "48": "logo-only\/[email protected]", "128": "logo-only\/[email protected]" } }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "http:\/\/*.localhost\/*" ], "css": [ "myStyles.css" ], "js": [ "content-scripts\/libs\/socket.io.js", "content-scripts\/socket-controller\/socket-controller.js", "content-scripts\/file-modifer\/file-modifer.js", "content-scripts\/content-messenger\/content-messenger.js" ] } ], "icons": { "16": "logo-only\/[email protected]", "32": "logo-only\/[email protected]", "48": "logo-only\/[email protected]", "128": "logo-only\/[email protected]" }, "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |