Injector Pro

Inject JS/CSS from CDN

Injector Pro란 무엇입니까?

Injector Pro은(는) eGust에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject JS/CSS from CDN"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Injector Pro 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Sometimes when analyzing web pages or debugging our own pages built with bundler (like webpack), it would be convenient if the page is ready for jQuery or other libraries. 
Sometimes we want to try some CSS styles in our small static pages without a CSS library/framework. Maybe you need to dynamically load a CSS library. 
This extension has only one simple purpose: to inject JS/CSS libraries from CDN. There are some libraries ready: jQuery, lodash, axios and Bootstrap. It's very easy to inject a preset of libs, and JS files could be injected one by one(load next when previous ready), also prevent to inject duplicated URLs.                    

확장 프로그램 기본 정보

이름 Injector Pro Injector Pro
ID bblelpkjpeaahgfmpjphgebjnfjofkci
공식 URL https://chrome.google.com/webstore/detail/injector-pro/bblelpkjpeaahgfmpjphgebjnfjofkci
설명 Inject JS/CSS from CDN
파일 크기 150 KB
설치 횟수 246
현재 버전 1.0.0
최근 업데이트 2018-01-28
출시 날짜 2018-01-28
평점 5.00/5 총 1 개의 평점
개발자 eGust
결제 유형 free
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "short_name": "Injection",
    "version": "1.0.0",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "browser_action": {
        "default_title": "__MSG_extension_name__",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contextScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "tabs"
    ],
    "author": "eGust",
    "homepage_url": "https:\/\/github.com\/eGust\/injector-pro"
}