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是由kyo_ago开发的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.…”。
扩展截图
下载source-editor扩展crx文件
下载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"
} | |