Scripty - Javascript Injector
Inject your Javascript into the webpage
Что такое Scripty - Javascript Injector?
Scripty - Javascript Injector - это расширение Chrome, разработанное https://scripty.abhisheksatre.com, и его основная функция - "Inject your Javascript into the webpage".
Снимки экрана расширения
Скачать файл CRX расширения Scripty - Javascript Injector
Скачайте файлы расширений Scripty - Javascript Injector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The Scripty extension allows you to inject custom javascript to a webpage. Features: 1. Inject script based on URL, host or regex. 2. Download script from Script Store. 3. Run the script directly from the context menu. 4. Publish script on Script Store. 5. Share script with other users. 6. Enable/Disable the scripts How To Use: 1. Add your custom script in the Scripty extension. 2. Select the execution mode: Manual/Automatic 3. To run a script: - Open the extension and click the play button. Or - Run a script from the context menu. Right Click > Select Scripty > Select your script. 4. Automatic scripts run automatically based on provided configuration.
Основная информация о расширении
Название | Scripty - Javascript Injector |
ID | milkbiaeapddfnpenedfgbfdacpbcbam |
Официальный URL | https://chromewebstore.google.com/detail/scripty-javascript-inject/milkbiaeapddfnpenedfgbfdacpbcbam |
Описание | Inject your Javascript into the webpage |
Размер файла | 22.85 KB |
Количество установок | 24,334 |
Текущая Версия | 0.0.2 |
Последнее Обновление | 2020-01-30 |
Дата публикации | 2020-01-30 |
Рейтинг | 4.18/5 Всего 60 оценок |
Разработчик | https://scripty.abhisheksatre.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://scripty.abhisheksatre.com/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Scripty - Javascript Injector", "short_name": "Scripty", "description": "Inject your Javascript into the webpage", "version": "0.0.2", "author": "Abhishek Satre", "browser_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "unlimitedStorage", "webNavigation", "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |