External script loader
Enable to load external script when a page loaded
Что такое External script loader?
External script loader - это расширение Chrome, разработанное ui3o.com, и его основная функция - "Enable to load external script when a page loaded".
Снимки экрана расширения
Скачать файл CRX расширения External script loader
Скачайте файлы расширений 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.                     Основная информация о расширении
| Название |   |  
| 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 | 
| Электронная почта | [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",
        "  |  |