Console Injector
Easily inject javascript libraries from the console
Vad är Console Injector?
Console Injector är en Chrome-tillägg utvecklad av andrew.coenen, och dess huvudfunktion är "Easily inject javascript libraries from the console".
Tilläggsskärmbilder
Ladda ner Console Injector-förlängningens CRX-fil
Ladda ner Console Injector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | abdfbnapkafgcheofcijaieahcbjnpkd |
| Officiell webbadress | https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd |
| Beskrivning | Easily inject javascript libraries from the console |
| Filstorlek | 20.4 KB |
| Antal Installationer | 1,289 |
| Aktuell Version | 0.1.1 |
| Senast Uppdaterad | 2015-08-21 |
| Publiceringsdatum | 2015-08-20 |
| Betyg | 4.92/5 Totalt 13 Betyg |
| Utvecklare | andrew.coenen |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |