SnapCss
SnapCss - Realtime editing style in a snap!
Τι είναι το SnapCss;
Το SnapCss είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Trần Quang Hiệp, και η κύρια λειτουργία του είναι "SnapCss - Realtime editing style in a snap!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SnapCss
Λήψη αρχείων επέκτασης SnapCss σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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'" } |