Javascript injection
Inject external js files into a page in order to extend or modify functionality
什么是Javascript injection?
Javascript injection是由[email protected]开发的Chrome扩展程序,该扩展的主要功能是“Inject external js files into a page in order to extend or modify functionality”。
下载Javascript injection扩展crx文件
下载Javascript injection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | anblbolcglfjebndjmgnelligobpebpf |
| 官方URL | https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf |
| 简介 | Inject external js files into a page in order to extend or modify functionality |
| 文件大小 | 25.78 KB |
| 安装次数 | 77 |
| 当前版本 | 1.0 |
| 更新时间 | 2015-08-08 |
| 上架时间 | 2015-08-08 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Javascript injection",
"version": "1.0",
"description": "Inject external js files into a page in order to extend or modify functionality",
"browser_action": {
"default_title": "Javascript injection",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"manifest_version": 2,
"icons": {
"128": "icon_128.png"
},
"content_scripts": [
{
"js": [
"contentscript.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"*:\/\/*\/*",
"tabs"
],
"content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
} | |