Aliexpress without ads

This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.

Co je Aliexpress without ads?

Aliexpress without ads je rozšíření Chrome vyvinuté https://namata.ru, a jeho hlavní funkcí je „This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Aliexpress without ads

Stáhněte si soubory rozšíření Aliexpress without ads ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.                    

Základní Informace o Rozšíření

Název Aliexpress without ads Aliexpress without ads
ID kggiiheapofdgaofflggghdblfdlleeg
Oficiální URL https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg
Popis This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Velikost souboru 253 KB
Počet instalací 51
Aktuální Verze 1.2
Poslední Aktualizace 2020-04-15
Datum Vydání 2020-04-10
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://namata.ru
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://namata.ru/extensions/alinoads
URL Stránky Nápovědy http://namata.ru/support/thanksforinstall
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Aliexpress without ads",
    "description": "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.",
    "version": "1.2",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.aliexpress.com\/*",
                "*:\/\/*.aliexpress.ru\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*.aliexpress.com\/*",
        "*:\/\/*.aliexpress.ru\/*"
    ]
}