Console Injector

Easily inject javascript libraries from the console

Was ist Console Injector?

Console Injector ist eine Chrome-Erweiterung, die von andrew.coenen entwickelt wurde, und ihr Hauptmerkmal ist "Easily inject javascript libraries from the console".

Erweiterungsscreenshots

screenshot

Console Injector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Console Injector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Console Injector Console Injector
ID abdfbnapkafgcheofcijaieahcbjnpkd
Offizielle URL https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd
Beschreibung Easily inject javascript libraries from the console
Dateigröße 20.4 KB
Installationsanzahl 1,289
Aktuelle Version 0.1.1
Letztes Update 2015-08-21
Veröffentlichungsdatum 2015-08-20
Bewertung 4.92/5 Insgesamt 13 Bewertungen
Entwickler andrew.coenen
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}