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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}