Console Injector
Easily inject javascript libraries from the console
Co je Console Injector?
Console Injector je rozšíření Chrome vyvinuté andrew.coenen, a jeho hlavní funkcí je „Easily inject javascript libraries from the console“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Console Injector
Stáhněte si soubory rozšíření Console Injector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Console Injector |
ID | abdfbnapkafgcheofcijaieahcbjnpkd |
Oficiální URL | https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd |
Popis | Easily inject javascript libraries from the console |
Velikost souboru | 20.4 KB |
Počet instalací | 1,289 |
Aktuální Verze | 0.1.1 |
Poslední Aktualizace | 2015-08-21 |
Datum Vydání | 2015-08-20 |
Hodnocení | 4.92/5 Celkem 13 Hodnocení |
Vývojář | andrew.coenen |
Typ Platby | free |
Podporované Jazyky | 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" ] } ] } |