Aliexpress without ads

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

Qu'est-ce que Aliexpress without ads ?

Aliexpress without ads est une extension Chrome développée par https://namata.ru, et sa fonction principale est "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Aliexpress without ads

Téléchargez les fichiers d'extension Aliexpress without ads au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Aliexpress without ads Aliexpress without ads
ID kggiiheapofdgaofflggghdblfdlleeg
URL Officiel https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg
Description This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Taille du Fichier 253 KB
Nombre d'Installations 51
Version Actuelle 1.2
Dernière Mise à Jour 2020-04-15
Date de Publication 2020-04-10
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://namata.ru
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://namata.ru/extensions/alinoads
URL de la Page d'Aide http://namata.ru/support/thanksforinstall
Langues Prises en Charge 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\/*"
    ]
}