Console Injector
Easily inject javascript libraries from the console
Hvad er Console Injector?
Console Injector er en Chrome-udvidelse udviklet af andrew.coenen, og dens hovedfunktion er "Easily inject javascript libraries from the console".
Udvidelsesskærmbilleder
Download Console Injector-udvidelses-CRX-fil
Download Console Injector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Console Injector |
ID | abdfbnapkafgcheofcijaieahcbjnpkd |
Officiel URL | https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd |
Beskrivelse | Easily inject javascript libraries from the console |
Filstørrelse | 20.4 KB |
Antal Installationer | 1,289 |
Nuværende Version | 0.1.1 |
Senest Opdateret | 2015-08-21 |
Udgivelsesdato | 2015-08-20 |
Bedømmelse | 4.92/5 Samlet 13 Bedømmelser |
Udvikler | andrew.coenen |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |