Cloud Inject
Inject JS/CSS from any url, into any page
Что такое Cloud Inject?
Cloud Inject - это расширение Chrome, разработанное Aloong Deng, и его основная функция - "Inject JS/CSS from any url, into any page".
Снимки экрана расширения
Скачать файл CRX расширения Cloud Inject
Скачайте файлы расширений Cloud Inject в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
You can inject JS/CSS files from any url, into any page, while jQuery is automatically injected.
Основная информация о расширении
Название | |
ID | hoenhdmdbiehplejoheeklmflmcnidjp |
Официальный URL | https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp |
Описание | Inject JS/CSS from any url, into any page |
Размер файла | 51.03 KB |
Количество установок | 54 |
Текущая Версия | 1.5 |
Последнее Обновление | 2017-06-06 |
Дата публикации | 2017-06-06 |
Рейтинг | 3.67/5 Всего 3 оценок |
Разработчик | Aloong Deng |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cloud Inject", "version": "1.5", "manifest_version": 2, "description": "Inject JS\/CSS from any url, into any page", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "myscript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "jquery.js", "inject_script.js", "inject_css.css" ], "page_action": { "default_icon": "icon.png", "default_title": "Cloud Inject", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/cloud-inject\/hoenhdmdbiehplejoheeklmflmcnidjp" } |