ALIENG

ALIENG

Automatically switch the language of the Aliexpress site to English

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ALIENG",
  "version": "1.0.18",
  "description": "Automatically switch the language of the Aliexpress site to English",
  "short_name": "ALIENG - Aliexpress is always in English",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "*://*.aliexpress.ru/*",
        "*://*.aliexpress.com/*"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "ALIENG",
    "default_icon": "img/icon_16.png",
    "default_popup": "popup.html"
  }
}