JavaScript Injector
Inject javascript in a given website.
JavaScript Injectorとは何ですか?
JavaScript Injectorはluisnaiaによって開発されたChromeの拡張機能で、その主な機能は「Inject javascript in a given website.」です。
拡張機能のスクリーンショット
JavaScript Injector拡張機能のCRXファイルをダウンロード
JavaScript Injector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This chrome extension has the purpose of injecting Java Script into a target URL every time that page loads.
You can inject your favourite script to extend the page functionality.
Features
- Add urls with or without regular expressions
- Keep a list of your urls and edit your js code inline
- You can turn on/off the js code when you wish
- Search trough your URLs 拡張機能の基本情報
| 名前 | |
| ID | knmnopfmccchnnfdoiddbihbcboeedll |
| 公式URL | https://chromewebstore.google.com/detail/javascript-injector/knmnopfmccchnnfdoiddbihbcboeedll |
| 説明 | Inject javascript in a given website. |
| ファイルサイズ | 397 KB |
| インストール数 | 5,062 |
| 現在のバージョン | 1.0.4 |
| 最終更新日 | 2014-08-21 |
| 公開日 | 2014-08-21 |
| 評価 | 2.91/5 合計 33 レビュー |
| 開発者 | luisnaia |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/darkbls/jsinjector |
| ヘルプページのURL | https://github.com/darkbls/jsinjector |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "JavaScript Injector",
"short_name": "Js Injector",
"description": "Inject javascript in a given website. ",
"version": "1.0.4",
"browser_action": {
"default_icon": "icon72.png",
"default_title": "Activate Js Inject rules - Click to add a new rule"
},
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"activeTab",
"storage",
"webNavigation"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"options_page": "options.html",
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
}
} | |