Console Injector

Easily inject javascript libraries from the console

Console Injector क्या है?

Console Injector andrew.coenen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily inject javascript libraries from the console"।

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

screenshot

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

crx प्रारूप में Console Injector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Console injector allows easy injection of javascript scripts into any page from the console, using the following simple syntax:

console.inject('jquery');

This is very handy for quickly testing ideas in the console and rapidly injecting code into existing sites. Console Injector searches cdnjs for javascript libraries matching a given input string, and inserts the latest corresponding script hosted at cdnjs.cloudflare.com.

Console Injector is open source and located at https://github.com/cannoneyed/console-injector                    

एक्सटेंशन की मूल जानकारी

नाम Console Injector Console Injector
ID abdfbnapkafgcheofcijaieahcbjnpkd
आधिकारिक URL https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd
विवरण Easily inject javascript libraries from the console
फ़ाइल का आकार 20.4 KB
स्थापना संख्या 1,289
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2015-08-21
प्रकाशन तिथि 2015-08-20
रेटिंग 4.92/5 कुल 13 रेटिंग्स
डेवलपर andrew.coenen
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Console Injector",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Easily inject javascript libraries from the console",
    "homepage_url": "http:\/\/cannoneyed.github.io",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}