External script loader
Enable to load external script when a page loaded
Qu'est-ce que External script loader ?
External script loader est une extension Chrome développée par ui3o.com, et sa fonction principale est "Enable to load external script when a page loaded".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension External script loader
Téléchargez les fichiers d'extension External script loader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | External script loader |
ID | lednjajedpjbhlhjgdbmcjiddjagachp |
URL Officiel | https://chromewebstore.google.com/detail/external-script-loader/lednjajedpjbhlhjgdbmcjiddjagachp |
Description | Enable to load external script when a page loaded |
Taille du Fichier | 19.62 KB |
Nombre d'Installations | 107 |
Version Actuelle | 2.3.0 |
Dernière Mise à Jour | 2022-03-25 |
Date de Publication | 2020-03-06 |
Développeur | ui3o.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ui3o/external-extension |
URL de la Page d'Aide | https://github.com/ui3o/external-extension |
Langues Prises en Charge | 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", " |