JS Inject
Create, save, and inject javascript code into web pages.
Что такое JS Inject?
JS Inject - это расширение Chrome, разработанное https://bitwisecreative.com, и его основная функция - "Create, save, and inject javascript code into web pages.".
Снимки экрана расширения
Скачать файл CRX расширения JS Inject
Скачайте файлы расширений JS Inject в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allows you to write, save, and execute javascript into web pages. You can save scripts to be run globally (on any page), on a specific domain, on a specific page, or via a "URL contains" string. It uses the CodeMirror editor, configured for javascript editing, and includes both light and dark themes. All data is stored in localStorage.
Основная информация о расширении
Название | JS Inject |
ID | pbicaeiggebhcjkenahlamdjgjhbbekc |
Официальный URL | https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc |
Описание | Create, save, and inject javascript code into web pages. |
Размер файла | 551 KB |
Количество установок | 559 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2019-11-01 |
Дата публикации | 2019-11-01 |
Разработчик | https://bitwisecreative.com |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JS Inject", "version": "1.0.0", "description": "Create, save, and inject javascript code into web pages.", "permissions": [ "activeTab", "storage", "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "unlimitedStorage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_title": "JS Inject", "default_icon": { "16": "images\/js-inject16.png", "32": "images\/js-inject32.png", "48": "images\/js-inject48.png", "128": "images\/js-inject128.png" } }, "icons": { "16": "images\/js-inject16.png", "32": "images\/js-inject32.png", "48": "images\/js-inject48.png", "128": "images\/js-inject128.png" }, "manifest_version": 2 } |