Console Injector
Easily inject javascript libraries from the console
Что такое Console Injector?
Console Injector - это расширение Chrome, разработанное andrew.coenen, и его основная функция - "Easily inject javascript libraries from the console".
Снимки экрана расширения
Скачать файл CRX расширения Console Injector
Скачайте файлы расширений Console Injector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Console Injector |
ID | abdfbnapkafgcheofcijaieahcbjnpkd |
Официальный URL | https://chromewebstore.google.com/detail/console-injector/abdfbnapkafgcheofcijaieahcbjnpkd |
Описание | Easily inject javascript libraries from the console |
Размер файла | 20.4 KB |
Количество установок | 1,289 |
Текущая Версия | 0.1.1 |
Последнее Обновление | 2015-08-21 |
Дата публикации | 2015-08-20 |
Рейтинг | 4.92/5 Всего 13 оценок |
Разработчик | andrew.coenen |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } ] } |