Remove unwanted elements
Remove unwanted elements from the page
Remove unwanted elements là gì?
Remove unwanted elements là một tiện ích mở rộng Chrome được phát triển bởi psoft123, và tính năng chính của nó là "Remove unwanted elements from the page".
Ả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 unwanted elements
Tải xuống các tệp mở rộng Remove unwanted elements 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
Helps in removing the unwanted elements from the page with ease in just few clicks. Can remove any content from the page without changing the layout structure. So now, say bye to distracting contents on pages be it flashy content, advertising banners or some other distracting elements (:p) and just focus on the section that you want to concentrate on. Undo of Remove Elements can be done for last 5 removed elements. Simply click the extension icon (or press Ctrl+Shift+F) to enable it, and click the element you want to erase; To Undo the removal just click Undo button. It's that simple. Enjoy. For any feedback, do leave comment. #removeElement #removeDistraction
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Remove unwanted elements |
ID | ipgipojdkhnfpgmfifkbhhdfgccggpld |
URL Chính Thức | https://chromewebstore.google.com/detail/remove-unwanted-elements/ipgipojdkhnfpgmfifkbhhdfgccggpld |
Mô tả | Remove unwanted elements from the page |
Kích Thước Tệp | 6.39 KB |
Số Lần Cài Đặt | 69 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2024-01-21 |
Ngày Phát Hành | 2022-06-14 |
Đánh Giá | 1.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | psoft123 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Remove unwanted elements", "description": "Remove unwanted elements from the page", "version": "1.0", "manifest_version": 3, "icons": { "48": "icon.png", "128": "icon.png" }, "action": { "default_icon": "icon.png", "default_title": "Click to remove elements" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens Remove unwanted Elements extension" } } } |