Vanishing Wand

Make annoying page elements magically disappear!

Vanishing Wand là gì?

Vanishing Wand là một tiện ích mở rộng Chrome được phát triển bởi https://elliotplant.com, và tính năng chính của nó là "Make annoying page elements magically disappear!".

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

screenshot

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

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

                        Vanishing Wand lets you remove annoying webpage elements by simply clicking on them. Just click the wand icon in the top left and then click the element you want to delete, and it will disappear from the page. To delete multiple elements, hold down the shift key and click on all the elements you want to remove.                    

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

Tên Vanishing Wand Vanishing Wand
ID dmngnclhpbcedbbiplfcdijnimijakdd
URL Chính Thức https://chromewebstore.google.com/detail/vanishing-wand/dmngnclhpbcedbbiplfcdijnimijakdd
Mô tả Make annoying page elements magically disappear!
Kích Thước Tệp 35.02 KB
Số Lần Cài Đặt 495
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2017-09-16
Ngày Phát Hành 2017-09-16
Đánh Giá 3.50/5 Tổng số 10 Đánh Giá
Nhà Phát Triển https://elliotplant.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vanishing Wand",
    "version": "1.1.0",
    "description": "Make annoying page elements magically disappear!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "wand.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}