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"
]
}
]
} | |