Javascript injection
Inject external js files into a page in order to extend or modify functionality
Что такое Javascript injection?
Javascript injection - это расширение Chrome, разработанное [email protected], и его основная функция - "Inject external js files into a page in order to extend or modify functionality".
Скачать файл CRX расширения Javascript injection
Скачайте файлы расширений Javascript injection в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
| Название | |
| ID | anblbolcglfjebndjmgnelligobpebpf |
| Официальный URL | https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf |
| Описание | Inject external js files into a page in order to extend or modify functionality |
| Размер файла | 25.78 KB |
| Количество установок | 77 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2015-08-08 |
| Дата публикации | 2015-08-08 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Javascript injection",
"version": "1.0",
"description": "Inject external js files into a page in order to extend or modify functionality",
"browser_action": {
"default_title": "Javascript injection",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"manifest_version": 2,
"icons": {
"128": "icon_128.png"
},
"content_scripts": [
{
"js": [
"contentscript.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"*:\/\/*\/*",
"tabs"
],
"content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
} | |