Aliexpress without ads

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

Apa itu Aliexpress without ads?

Aliexpress without ads adalah ekstensi Chrome yang dikembangkan oleh https://namata.ru, dan fitur utamanya adalah "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Aliexpress without ads

Unduh file ekstensi Aliexpress without ads dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Aliexpress without ads Aliexpress without ads
ID kggiiheapofdgaofflggghdblfdlleeg
URL Resmi https://chromewebstore.google.com/detail/aliexpress-without-ads/kggiiheapofdgaofflggghdblfdlleeg
Deskripsi This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages.
Ukuran File 253 KB
Jumlah Instalasi 51
Versi Saat Ini 1.2
Terakhir Diperbarui 2020-04-15
Tanggal Publikasi 2020-04-10
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://namata.ru
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://namata.ru/extensions/alinoads
URL Halaman Bantuan http://namata.ru/support/thanksforinstall
Bahasa yang Didukung 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\/*"
    ]
}