removeanything

sometimes you just want to get rid of an element quickly

Vad är removeanything?

removeanything är en Chrome-tillägg utvecklad av zeyus, och dess huvudfunktion är "sometimes you just want to get rid of an element quickly".

Tilläggsskärmbilder

screenshot

Ladda ner removeanything-förlängningens CRX-fil

Ladda ner removeanything-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
Officiell webbadress https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
Beskrivning sometimes you just want to get rid of an element quickly
Filstorlek 11.31 KB
Antal Installationer 230
Aktuell Version 0.1.0
Senast Uppdaterad 2015-02-16
Publiceringsdatum 2015-02-16
Betyg 3.17/5 Totalt 6 Betyg
Utvecklare zeyus
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.zeyus.com/
Hjälpsida URL https://github.com/zeyus/remove-anything
Stödda Språk 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"
        ]
    }
}