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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://namata.ru และคุณลักษณะหลักของมันคือ "This extension removes ads from the Aliexpress website. Promotional offers are removed from the search pages."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Aliexpress without ads

ดาวน์โหลดไฟล์ส่วนขยาย Aliexpress without ads ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}