Console Injector
Easily inject javascript libraries from the console
Wat is Console Injector?
Console Injector is een Chrome-extensie ontwikkeld door andrew.coenen, en de belangrijkste functie is "Easily inject javascript libraries from the console".
Extensie Screenshots
Download het CRX-bestand van de extensie Console Injector
Download Console Injector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Console Injector |
ID | abdfbnapkafgcheofcijaieahcbjnpkd |
Officiële URL | https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd |
Beschrijving | Easily inject javascript libraries from the console |
Bestandsgrootte | 20.4 KB |
Aantal Installaties | 1,289 |
Huidige Versie | 0.1.1 |
Laatst Bijgewerkt | 2015-08-21 |
Publicatiedatum | 2015-08-20 |
Beoordeling | 4.92/5 Totaal 13 Beoordelingen |
Ontwikkelaar | andrew.coenen |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |