Code Injector
Inject your code (html, css, js) into page.
什么是Code Injector?
Code Injector是由dmitry.pechkovsky开发的Chrome扩展程序,该扩展的主要功能是“Inject your code (html, css, js) into page.”。
扩展截图
下载Code Injector扩展crx文件
下载Code Injector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Inject your own code (html, css, js) into any page.
Customize, configure, parse any page!
What' new in 1.13:
- Libraries!
What' new in 1.14:
- Bugfixes. 扩展基本信息
| 名称 | |
| ID | fehfokkkkeamcfiaogfdkkpoblipkmbd |
| 官方URL | https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd |
| 简介 | Inject your code (html, css, js) into page. |
| 文件大小 | 399 KB |
| 安装次数 | 1,000 |
| 当前版本 | 1.14 |
| 更新时间 | 2019-03-08 |
| 上架时间 | 2019-03-08 |
| 评分 | 3.42/5 共19次评分 |
| 开发者 | dmitry.pechkovsky |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Code Injector",
"description": "Inject your code (html, css, js) into page.",
"manifest_version": 2,
"version": "1.14",
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"permissions": [
"downloads",
"storage",
"unlimitedStorage",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_title": "Code Injector",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"functions.js",
"config.js",
"background.js"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |