R42 Module Loader
Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…
什么是R42 Module Loader?
R42 Module Loader是由icodeforlove开发的Chrome扩展程序,该扩展的主要功能是“Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…”。
扩展截图
下载R42 Module Loader扩展crx文件
下载R42 Module Loader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to console usage. 扩展基本信息
| 名称 | |
| ID | ojjecmicelipcjlfeehmpmcmljaolbie |
| 官方URL | https://chromewebstore.google.com/detail/r42-module-loader/ojjecmicelipcjlfeehmpmcmljaolbie |
| 简介 | Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to… |
| 文件大小 | 548 KB |
| 安装次数 | 16 |
| 当前版本 | 1.4.3 |
| 更新时间 | 2016-12-19 |
| 上架时间 | 2016-12-19 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | icodeforlove |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "R42 Module Loader",
"manifest_version": 2,
"version": "1.4.3",
"minimum_chrome_version": "49.0.2623.110",
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"communication.js",
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"app\/*"
],
"icons": {
"32": "icon.png",
"128": "icon128.png"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |