Delete Elements

Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!

Delete Elements là gì?

Delete Elements là một tiện ích mở rộng Chrome được phát triển bởi Kira L, và tính năng chính của nó là "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Delete Elements

Tải xuống các tệp mở rộng Delete 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

                        My chrome extension allows you to delete any element that you don't want to see on a website using alt+click. After installing this extension, you can focus on the content of a website, instead of the navigation bars, side-bars, and unwanted images. Enjoy!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Delete Elements Delete Elements
ID egaeolhpclgmcegebneaibocfffkgode
URL Chính Thức https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode
Mô tả Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!
Kích Thước Tệp 7.14 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-09-11
Ngày Phát Hành 2020-09-11
Nhà Phát Triển Kira L
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://kiraprograms.com
URL Trang Trợ Giúp http://kiraprograms.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Delete Elements",
    "version": "1.0",
    "description": "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!",
    "permissions": [],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "add_to_website.js"
            ]
        }
    ],
    "manifest_version": 2
}