e-mover

e-mover

e-mover

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "e-mover",
  "description": "e-mover",
  "version": "4.0.1.5",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage",
    "*://*/*"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "bg.js"
    ]
  },
  "web_accessible_resources": [
    "images/logo.png",
    "images/drag.png",
    "images/latest/drag.png",
    "images/latest/close.png",
    "images/latest/icon.png",
    "index.html",
    "icon.html"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "parse-price.min.js",
        "screen.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "256": "images/latest/icon.png"
  },
  "browser_action": {
    "default_popup": "init.html"
  }
}