Amazon Adblocker

Simple Amazon ad blocker

Wat is Amazon Adblocker?

Amazon Adblocker is een Chrome-extensie ontwikkeld door DiegoSolorzano, en de belangrijkste functie is "Simple Amazon ad blocker".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Amazon Adblocker

Download Amazon Adblocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Blocks all Amazon Ads like the sponsored products and banners.

Once the extension is installed you can enjoy Amazon without ads.

Note: Right now it only works with amazon.com and amazon.com.mx                    

Basisinformatie over de Extensie

Naam Amazon Adblocker Amazon Adblocker
ID odkejfinkopadmgookpcdgpdcgfnnoim
Officiële URL https://chromewebstore.google.com/detail/amazon-adblocker/odkejfinkopadmgookpcdgpdcgfnnoim
Beschrijving Simple Amazon ad blocker
Bestandsgrootte 10.15 KB
Aantal Installaties 80
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-08-26
Publicatiedatum 2021-08-25
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar DiegoSolorzano
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Adblocker",
    "description": "Simple Amazon ad blocker",
    "manifest_version": 3,
    "version": "1.0.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.com.mx\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ]
}