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 |
| 官方網址 | 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"
]
}
]
} | |