Javascript Injector

Inject javascript to the webpage you are visiting

Javascript Injectorとは何ですか?

Javascript InjectorはDaniel Hanによって開発されたChromeの拡張機能で、その主な機能は「Inject javascript to the webpage you are visiting」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices.

For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.                    

拡張機能の基本情報

名前 Javascript Injector Javascript Injector
ID ejnccfcackblkelbafbolcpjfpcmbplg
公式URL https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg
説明 Inject javascript to the webpage you are visiting
ファイルサイズ 59.53 KB
インストール数 2,000
現在のバージョン 1.2
最終更新日 2017-06-16
公開日 2017-06-16
評価 4.13/5 合計 8 レビュー
開発者 Daniel Han
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/hex0cter/js-injector
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Javascript Injector",
    "author": "Daniel Han",
    "short_name": "JS injector",
    "description": "Inject javascript to the webpage you are visiting",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Javascript Injector",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}