Aliexpress without ads

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

Aliexpress without ads क्या है?

Aliexpress without ads https://namata.ru द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Aliexpress without ads एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Aliexpress without ads Aliexpress without ads
ID kggiiheapofdgaofflggghdblfdlleeg
आधिकारिक URL https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg
विवरण This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
फ़ाइल का आकार 253 KB
स्थापना संख्या 51
वर्तमान संस्करण 1.2
अंतिम अपडेट 2020-04-15
प्रकाशन तिथि 2020-04-10
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://namata.ru
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://namata.ru/extensions/alinoads
सहायता पृष्ठ URL http://namata.ru/support/thanksforinstall
समर्थित भाषाएँ 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\/*"
    ]
}