Remove Selection
This extension removes selected text.
Что такое Remove Selection?
Remove Selection - это расширение Chrome, разработанное vncnt.liu, и его основная функция - "This extension removes selected text.".
Снимки экрана расширения
Скачать файл CRX расширения Remove Selection
Скачайте файлы расширений Remove Selection в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
After selecting some text, you can click the icon on the browser Toolbar, or choose 'Remove Selection' in the right-click Menu. I wrote it because it was one of the feature in FastestFox for Firefox and I love it, but did not find a good alternative in Chrome.
Основная информация о расширении
Название | Remove Selection |
ID | mcfnbphdcohjpejiocghpcajmicbjink |
Официальный URL | https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink |
Описание | This extension removes selected text. |
Размер файла | 10.02 KB |
Количество установок | 118 |
Текущая Версия | 2.0 |
Последнее Обновление | 2022-05-11 |
Дата публикации | 2017-08-09 |
Рейтинг | 4.67/5 Всего 6 оценок |
Разработчик | vncnt.liu |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove Selection", "description": "This extension removes selected text.", "version": "2.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_title": "Remove Selection", "default_icon": "images\/icon16.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "contextMenus" ] } |