Storey - Instant Digital Wardrobe

Storey - Instant Digital Wardrobe

Asks if you want to export items from your checkout cart to your Storey digital wardrobe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Storey - Instant Digital Wardrobe",
  "version": "0.1.5",
  "description": "Asks if you want to export items from your checkout cart to your Storey digital wardrobe",
  "author": "Storey",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "static/*",
    "/img/*",
    "/js/*"
  ],
  "permissions": [
    "activeTab",
    "chrome://favicon/",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon48.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  }
}