Injector Pro

Inject JS/CSS from CDN

Injector Pro क्या है?

Injector Pro eGust द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject JS/CSS from CDN"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Injector Pro एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}