Injector Pro

Inject JS/CSS from CDN

Injector Pro là gì?

Injector Pro là một tiện ích mở rộng Chrome được phát triển bởi eGust, và tính năng chính của nó là "Inject JS/CSS from CDN".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Injector Pro

Tải xuống các tệp mở rộng Injector Pro dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Injector Pro Injector Pro
ID bblelpkjpeaahgfmpjphgebjnfjofkci
URL Chính Thức https://chrome.google.com/webstore/detail/injector-pro/bblelpkjpeaahgfmpjphgebjnfjofkci
Mô tả Inject JS/CSS from CDN
Kích Thước Tệp 150 KB
Số Lần Cài Đặt 246
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-01-28
Ngày Phát Hành 2018-01-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển eGust
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}