AdToMeme

Blocks Ads, and replaces them with Memes!

Co to jest AdToMeme?

AdToMeme to rozszerzenie Chrome opracowane przez zettatekdev, a jego główną funkcją jest „Blocks Ads, and replaces them with Memes!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AdToMeme

Pobierz pliki rozszerzeń AdToMeme 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

                        AdToMeme is an ad blocker that replaces them with memes! 100% compatible with other ad-blockers. To turn off AdToMeme, click on the icon and select 'turn off'. 100% family friendly! Send in memes you'd like to see to [email protected]. Now with a new meme! Also, consider donating!                    

Podstawowe informacje o rozszerzeniu

Nazwa AdToMeme AdToMeme
ID nooeahajgiajgilomnafnfdkccgfbhnl
Oficjalny URL https://chromewebstore.google.com/detail/adtomeme/nooeahajgiajgilomnafnfdkccgfbhnl
Opis Blocks Ads, and replaces them with Memes!
Rozmiar pliku 933 KB
Liczba instalacji 72
Aktualna Wersja 1.0.9
Ostatnia Aktualizacja 2020-02-22
Data Publikacji 2020-02-22
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper zettatekdev
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AdToMeme",
    "version": "1.0.9",
    "description": "Blocks Ads, and replaces them with Memes!",
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/adtomem16.png",
            "32": "images\/adtomem32.png",
            "48": "images\/adtomem48.png",
            "128": "images\/adtomem128.png"
        }
    },
    "icons": {
        "16": "images\/adtomem16.png",
        "32": "images\/adtomem32.png",
        "48": "images\/adtomem48.png",
        "128": "images\/adtomem128.png"
    },
    "content_scripts": [
        {
            "js": [
                "block.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "manifest_version": 2
}