Remove Selection
This extension removes selected text.
Remove Selection là gì?
Remove Selection là một tiện ích mở rộng Chrome được phát triển bởi vncnt.liu, và tính năng chính của nó là "This extension removes selected text.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Remove Selection
Tải xuống các tệp mở rộng Remove Selection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Remove Selection |
ID | mcfnbphdcohjpejiocghpcajmicbjink |
URL Chính Thức | https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink |
Mô tả | This extension removes selected text. |
Kích Thước Tệp | 10.02 KB |
Số Lần Cài Đặt | 118 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2022-05-11 |
Ngày Phát Hành | 2017-08-09 |
Đánh Giá | 4.67/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | vncnt.liu |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |