Javascript injection

Inject external js files into a page in order to extend or modify functionality

Javascript injectionとは何ですか?

Javascript injectionは[email protected]によって開発されたChromeの拡張機能で、その主な機能は「Inject external js files into a page in order to extend or modify functionality」です。

Javascript injection拡張機能のCRXファイルをダウンロード

Javascript injection拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 Javascript injection Javascript injection
ID anblbolcglfjebndjmgnelligobpebpf
公式URL https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf
説明 Inject external js files into a page in order to extend or modify functionality
ファイルサイズ 25.78 KB
インストール数 77
現在のバージョン 1.0
最終更新日 2015-08-08
公開日 2015-08-08
評価 5.00/5 合計 1 レビュー
開発者 [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Javascript injection",
    "version": "1.0",
    "description": "Inject external js files into a page in order to extend or modify functionality",
    "browser_action": {
        "default_title": "Javascript injection",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
}