Console Injector

Easily inject javascript libraries from the console

What is Console Injector?

Console Injector is a Chrome extension developed by andrew.coenen, and its main feature is "Easily inject javascript libraries from the console".

Extension Screenshots

screenshot

Download Console Injector Extension CRX File

Download Console Injector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Console Injector Console Injector
ID abdfbnapkafgcheofcijaieahcbjnpkd
Official URL https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd
Description Easily inject javascript libraries from the console
File Size 20.4 KB
Installation Count 1,289
Current Version 0.1.1
Last Updated 2015-08-21
Publish Date 2015-08-20
Rating 4.92/5 Total 13 Ratings
Developer andrew.coenen
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}