Inject JS

This extension will inject javascript from a URL into the current webpage

Inject JSとは何ですか?

Inject JSはdailenspencer12によって開発されたChromeの拡張機能で、その主な機能は「This extension will inject javascript from a URL into the current webpage」です。

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

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

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
公式URL https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
説明 This extension will inject javascript from a URL into the current webpage
ファイルサイズ 40.14 KB
インストール数 80
現在のバージョン 1.1
最終更新日 2016-09-29
公開日 2016-09-29
開発者 dailenspencer12
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}