External script loader
Enable to load external script when a page loaded
What is External script loader?
External script loader is a Chrome extension developed by ui3o.com, and its main feature is "Enable to load external script when a page loaded".
Extension Screenshots
Download External script loader Extension CRX File
Download External script loader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | External script loader |
ID | lednjajedpjbhlhjgdbmcjiddjagachp |
Official URL | https://chromewebstore.google.com/detail/external-script-loader/lednjajedpjbhlhjgdbmcjiddjagachp |
Description | Enable to load external script when a page loaded |
File Size | 19.62 KB |
Installation Count | 107 |
Current Version | 2.3.0 |
Last Updated | 2022-03-25 |
Publish Date | 2020-03-06 |
Developer | ui3o.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ui3o/external-extension |
Help Page URL | https://github.com/ui3o/external-extension |
Supported Languages | 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", " |