Console Injector
Easily inject javascript libraries from the console
什么是Console Injector?
Console Injector是由andrew.coenen开发的Chrome扩展程序,该扩展的主要功能是“Easily inject javascript libraries from the console”。
扩展截图
下载Console Injector扩展crx文件
下载Console Injector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Console injector allows easy injection of javascript scripts into any page from the console, using the following simple syntax:
console.inject('jquery');
This is very handy for quickly testing ideas in the console and rapidly injecting code into existing sites. Console Injector searches cdnjs for javascript libraries matching a given input string, and inserts the latest corresponding script hosted at cdnjs.cloudflare.com.
Console Injector is open source and located at https://github.com/cannoneyed/console-injector 扩展基本信息
| 名称 | |
| ID | abdfbnapkafgcheofcijaieahcbjnpkd |
| 官方URL | https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd |
| 简介 | Easily inject javascript libraries from the console |
| 文件大小 | 20.4 KB |
| 安装次数 | 1,289 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2015-08-21 |
| 上架时间 | 2015-08-20 |
| 评分 | 4.92/5 共13次评分 |
| 开发者 | andrew.coenen |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Console Injector",
"version": "0.1.1",
"manifest_version": 2,
"description": "Easily inject javascript libraries from the console",
"homepage_url": "http:\/\/cannoneyed.github.io",
"icons": {
"128": "icons\/icon128.png"
},
"default_locale": "en",
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |