External script loader

Enable to load external script when a page loaded

Was ist External script loader?

External script loader ist eine Chrome-Erweiterung, die von ui3o.com entwickelt wurde, und ihr Hauptmerkmal ist "Enable to load external script when a page loaded".

Erweiterungsscreenshots

screenshot

External script loader-Erweiterungs-CRX-Datei herunterladen

Laden Sie External script loader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name External script loader External script loader
ID lednjajedpjbhlhjgdbmcjiddjagachp
Offizielle URL https://chromewebstore.google.com/detail/external-script-loader/lednjajedpjbhlhjgdbmcjiddjagachp
Beschreibung Enable to load external script when a page loaded
Dateigröße 19.62 KB
Installationsanzahl 107
Aktuelle Version 2.3.0
Letztes Update 2022-03-25
Veröffentlichungsdatum 2020-03-06
Entwickler ui3o.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ui3o/external-extension
Hilfeseite URL https://github.com/ui3o/external-extension
Unterstützte Sprachen 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"
    }
}