source-editor
Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.…
Τι είναι το source-editor;
Το source-editor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kyo_ago, και η κύρια λειτουργία του είναι "Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης source-editor
Λήψη αρχείων επέκτασης source-editor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code. http://jsrun.it/kyo_ago/hyZJ/js?test.js 2. Open original page. http://jsrun.it/kyo_ago/hyZJ
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | gfijhpfpapngnbgbaohekogcoohopcbn |
Επίσημο URL | https://chrome.google.com/webstore/detail/source-editor/gfijhpfpapngnbgbaohekogcoohopcbn |
Περιγραφή | Add editor to a source view. Modify code to run on the original page. Using the ACE Editor. Try this one. 1. Modify code.… |
Μέγεθος Αρχείου | 453 KB |
Αριθμός Εγκαταστάσεων | 821 |
Τρέχουσα Έκδοση | 0.7 |
Τελευταία Ενημέρωση | 2013-07-21 |
Ημερομηνία Δημοσίευσης | 2013-07-21 |
Αξιολόγηση | 2.50/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | kyo_ago |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "browser_action": { "default_icon": { "19": "\/img\/logo.png", "38": "\/img\/logo.png" }, "default_popup": "\/html\/popup.html", "default_title": "source-editor" }, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "\/lib\/jsdeferred.js", "\/src\/background.js" ] }, "name": "source-editor", "permissions": [ "tabs", "storage", "webRequest", "webRequestBlocking", "http:\/\/*\/*.js", "https:\/\/*\/*.js", "http:\/\/*\/*.css", "https:\/\/*\/*.css" ], "icons": { "128": "\/img\/logo.png", "16": "\/img\/logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*.js", "https:\/\/*\/*.js", "http:\/\/*\/*.css", "https:\/\/*\/*.css" ], "js": [ "\/lib\/ace.js", "\/lib\/ace\/ext-searchbox.js", "\/lib\/ace\/keybinding-emacs.js", "\/lib\/ace\/keybinding-vim.js", "\/lib\/ace\/mode-javascript.js", "\/lib\/ace\/mode-css.js", "\/lib\/ace\/theme-chrome.js", "\/lib\/jsdeferred.js", "\/src\/content_scripts\/editor.js", "\/src\/content_scripts.js" ] } ], "manifest_version": 2, "version": "0.7" } |