Chrome-REPL
Chrome REPL
Vad är Chrome-REPL?
Chrome-REPL är en Chrome-tillägg utvecklad av http://blog.diniscruz.com, och dess huvudfunktion är "Chrome REPL".
Tilläggsskärmbilder
Ladda ner Chrome-REPL-förlängningens CRX-fil
Ladda ner Chrome-REPL-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Simple REPL that exposes the chrome extension objects. Great for quickly scripting website's contents or to learn the Chrome extension APIs For more install and usage details see this blog post: http://blog.diniscruz.com/2014/11/chrome-repl-first-o2-platform-chrome.html
Grundläggande Information om Tillägg
Namn | |
ID | ojmdmeehmpkpkkhbifimekflgmnmeihg |
Officiell webbadress | https://chrome.google.com/webstore/detail/chrome-repl/ojmdmeehmpkpkkhbifimekflgmnmeihg |
Beskrivning | Chrome REPL |
Filstorlek | 2.32 MB |
Antal Installationer | 85 |
Aktuell Version | 0.0.9 |
Senast Uppdaterad | 2014-11-21 |
Publiceringsdatum | 2014-11-21 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | http://blog.diniscruz.com |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/o2platform/chrome-repl |
Hjälpsida URL | https://github.com/o2platform/chrome-repl/issues |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome-REPL", "version": "0.0.9", "manifest_version": 2, "description": "Chrome REPL", "icons": { "16": "images\/exec.png", "128": "images\/exec.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/helpers\/storage.helper.js", "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/exec.png", "38": "images\/exec.png" }, "default_title": "Chrome REPL", "default_popup": "options.html" }, "devtools_page": "devtools.html", "options_page": "options.html", "omnibox": { "keyword": "Chrome REPL" }, "permissions": [ "tabs", "notifications", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |