Stop JavaScript
Stop JavaScript execution in current tab.
Что такое Stop JavaScript?
Stop JavaScript - это расширение Chrome, разработанное SAGAN, и его основная функция - "Stop JavaScript execution in current tab.".
Снимки экрана расширения
Скачать файл CRX расширения Stop JavaScript
Скачайте файлы расширений Stop JavaScript в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
** Yet Another "allow copy" extension ** This extension stops JavaScript execution of current page by preventing any further DOM event being dispatched to registered handlers. It is mainly designed to remove any limitations that prevent the copy / context menu functions from working. Usage: click the "red cross" button in Chrome toolbar.
Основная информация о расширении
Название | Stop JavaScript |
ID | djecijdiikggekgohjffnccifchfdmim |
Официальный URL | https://chromewebstore.google.com/detail/stop-javascript/djecijdiikggekgohjffnccifchfdmim |
Описание | Stop JavaScript execution in current tab. |
Размер файла | 14.03 KB |
Количество установок | 436 |
Текущая Версия | 1.0.5 |
Последнее Обновление | 2023-12-31 |
Дата публикации | 2018-07-11 |
Рейтинг | 4.60/5 Всего 10 оценок |
Разработчик | SAGAN |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/sagan/chrome-extension-stop-javascript |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stop JavaScript", "description": "Stop JavaScript execution in current tab.", "version": "1.0.5", "author": "Jacques De SAGAN", "manifest_version": 3, "permissions": [ "scripting", "activeTab" ], "icons": { "16": "icons\/cross_16x16.png", "48": "icons\/cross_48x48.png", "64": "icons\/cross_64x64.png", "128": "icons\/cross_128x128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Stop JavaScript" } } |