Aliexpress without ads

Aliexpress without ads

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

Merlin
Additional files are visible only to premium users

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