External script loader

Enable to load external script when a page loaded

External script loaderとは何ですか?

External script loaderはui3o.comによって開発されたChromeの拡張機能で、その主な機能は「Enable to load external script when a page loaded」です。

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

screenshot

External script loader拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This add-on enable to load external script to add extra features. It can load script from remote server. Possible to manage feature for users. The content script will be run at document_start state.                    

拡張機能の基本情報

名前 External script loader External script loader
ID lednjajedpjbhlhjgdbmcjiddjagachp
公式URL https://chromewebstore.google.com/detail/external-script-loader/lednjajedpjbhlhjgdbmcjiddjagachp
説明 Enable to load external script when a page loaded
ファイルサイズ 19.62 KB
インストール数 107
現在のバージョン 2.3.0
最終更新日 2022-03-25
公開日 2020-03-06
開発者 ui3o.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ui3o/external-extension
ヘルプページのURL https://github.com/ui3o/external-extension
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "External script loader",
    "version": "2.3.0",
    "manifest_version": 2,
    "description": "Enable to load external script when a page loaded",
    "homepage_url": "https:\/\/github.com\/ui3o\/external-extension\/",
    "icons": {
        "16": "icons\/icon16x16.png",
        "48": "icons\/icon48x48.png",
        "128": "icons\/icon128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/core.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/iframe.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "http:\/\/localhost\/",
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "options_ui": {
        "page": "src\/options.html"
    }
}