removeanything

sometimes you just want to get rid of an element quickly

What is removeanything?

removeanything is a Chrome extension developed by zeyus, and its main feature is "sometimes you just want to get rid of an element quickly".

Extension Screenshots

screenshot

Download removeanything Extension CRX File

Download removeanything extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
Official URL https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
Description sometimes you just want to get rid of an element quickly
File Size 11.31 KB
Installation Count 230
Current Version 0.1.0
Last Updated 2015-02-16
Publish Date 2015-02-16
Rating 3.17/5 Total 6 Ratings
Developer zeyus
Email [email protected]
Payment Type free
Extension Website http://www.zeyus.com/
Help Page URL https://github.com/zeyus/remove-anything
Supported Languages 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"
        ]
    }
}