removeanything

sometimes you just want to get rid of an element quickly

Co to jest removeanything?

removeanything to rozszerzenie Chrome opracowane przez zeyus, a jego główną funkcją jest „sometimes you just want to get rid of an element quickly”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia removeanything

Pobierz pliki rozszerzeń removeanything w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
Oficjalny URL https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
Opis sometimes you just want to get rid of an element quickly
Rozmiar pliku 11.31 KB
Liczba instalacji 230
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2015-02-16
Data Publikacji 2015-02-16
Ocena 3.17/5 Łącznie 6 Oceny
Deweloper zeyus
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://www.zeyus.com/
Adres URL Strony Pomocy https://github.com/zeyus/remove-anything
Obsługiwane Języki 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"
        ]
    }
}