Code Injector

Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.

Code Injectorとは何ですか?

Code InjectorはMelwyn Pawarによって開発されたChromeの拡張機能で、その主な機能は「Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages to make design and developmental decisions quickly.                    

拡張機能の基本情報

名前 Code Injector Code Injector
ID ffpbejkllpoglbeeabibelceofidjfhk
公式URL https://chrome.google.com/webstore/detail/code-injector/ffpbejkllpoglbeeabibelceofidjfhk
説明 Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.
ファイルサイズ 293 KB
インストール数 121
現在のバージョン 1.4
最終更新日 2017-12-21
公開日 2017-12-21
評価 1.00/5 合計 1 レビュー
開発者 Melwyn Pawar
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.example.com\/*"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "allLibs.js"
            ],
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "description": "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.",
    "icons": {
        "128": "l1.png",
        "16": "icon.png",
        "48": "l2.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Script Injector"
    },
    "web_accessible_resources": [
        "images\/pagebreak.png",
        "images\/pagebreak_alone.png"
    ],
    "manifest_version": 2,
    "name": "Code Injector",
    "permissions": [
        "tabs",
        "",
        "background"
    ],
    "version": "1.4"
}