Chrome-REPL
Chrome REPL
什么是Chrome-REPL?
Chrome-REPL是由http://blog.diniscruz.com开发的Chrome扩展程序,该扩展的主要功能是“Chrome REPL”。
扩展截图
下载Chrome-REPL扩展crx文件
下载Chrome-REPL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | ojmdmeehmpkpkkhbifimekflgmnmeihg |
官方URL | https://chrome.google.com/webstore/detail/chrome-repl/ojmdmeehmpkpkkhbifimekflgmnmeihg |
简介 | Chrome REPL |
文件大小 | 2.32 MB |
安装次数 | 85 |
当前版本 | 0.0.9 |
更新时间 | 2014-11-21 |
上架时间 | 2014-11-21 |
评分 | 3.00/5 共2次评分 |
开发者 | http://blog.diniscruz.com |
付费类型 | free |
扩展官网 | https://github.com/o2platform/chrome-repl |
帮助页面URL | https://github.com/o2platform/chrome-repl/issues |
支持的语言 | 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'" } |