removeanything

sometimes you just want to get rid of an element quickly

removeanything là gì?

removeanything là một tiện ích mở rộng Chrome được phát triển bởi zeyus, và tính năng chính của nó là "sometimes you just want to get rid of an element quickly".

Ả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 removeanything

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

                        This is a really simple extension to remove any element from a page by right clicking.

This is useful if you want to hid an image, or an ad form an article, or popups that block a site unless you register, that kind of thing.                    

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

Tên removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
URL Chính Thức https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
Mô tả sometimes you just want to get rid of an element quickly
Kích Thước Tệp 11.31 KB
Số Lần Cài Đặt 230
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2015-02-16
Ngày Phát Hành 2015-02-16
Đánh Giá 3.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển zeyus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.zeyus.com/
URL Trang Trợ Giúp https://github.com/zeyus/remove-anything
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "removeanything",
    "description": "sometimes you just want to get rid of an element quickly",
    "version": "0.1.0",
    "icons": {
        "128": "res\/icon128.png",
        "16": "res\/icon16.png",
        "48": "res\/icon48.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}