Code Injector

Inject your code (html, css, js) into page.

Code Injectorとは何ですか?

Code Injectorはdmitry.pechkovskyによって開発されたChromeの拡張機能で、その主な機能は「Inject your code (html, css, js) into page.」です。

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

screenshot
screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Inject your own code (html, css, js) into any page.
Customize, configure, parse any page!

What' new in 1.13:
- Libraries!

What' new in 1.14:
- Bugfixes.                    

拡張機能の基本情報

名前 Code Injector Code Injector
ID fehfokkkkeamcfiaogfdkkpoblipkmbd
公式URL https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd
説明 Inject your code (html, css, js) into page.
ファイルサイズ 399 KB
インストール数 1,000
現在のバージョン 1.14
最終更新日 2019-03-08
公開日 2019-03-08
評価 3.42/5 合計 19 レビュー
開発者 dmitry.pechkovsky
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Injector",
    "description": "Inject your code (html, css, js) into page.",
    "manifest_version": 2,
    "version": "1.14",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "permissions": [
        "downloads",
        "storage",
        "unlimitedStorage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Code Injector",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "functions.js",
                "config.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}