Gearbest Images Downloader

Gearbest Images Downloader

Save Gearbest images in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "Gearbest DL",
  "version": "1.0.3",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [
    "storage",
    "downloads",
    "activeTab",
    "*://*.gearbest.com/*",
    "*://*.gbtcdn.com/*",
    "*://mxnpro.ovh/gearbest/checkout",
    "http://localhost:3000/*"
  ],
  "options_ui": {
    "page": "index.html?route=options",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "index.html?route=popup"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://*.gearbest.com/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "run_at": "document_idle",
      "matches": [
        "*://mxnpro.ovh/gearbest/checkout",
        "http://localhost:3000/*"
      ],
      "js": [
        "checkoutContent.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/*",
    "images/*"
  ]
}