LuxuryStore

LuxuryStore

Luxury Store

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/32.png",
    "default_title": "Luxury Store"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "scr.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Luxury Store",
  "manifest_version": 2,
  "name": "LuxuryStore",
  "permissions": [
    "storage",
    "http://*/",
    "https://*/"
  ],
  "version": "1.0.3",
  "web_accessible_resources": [
    "*.*"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://myluxurystores.com/*"
    ]
  }
}