Remove Selection
This extension removes selected text.
什么是Remove Selection?
Remove Selection是由vncnt.liu开发的Chrome扩展程序,该扩展的主要功能是“This extension removes selected text.”。
扩展截图
下载Remove Selection扩展crx文件
下载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" ] } |