Wishi Me

Wishi Me

Add items you really own to your Wishi closet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wishi Me",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Add items you really own to your Wishi closet",
  "icons": {
    "16": "wishi16.png",
    "48": "wishi48.png",
    "128": "wishi128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://*.wishi.me/*",
        "https://*.wishi.me/*",
        "http://wishi.me/*",
        "https://wishi.me/*"
      ],
      "css": [
        "pageContent.min.css"
      ],
      "js": [
        "jquery-2.2.0.min.js",
        "pageContent.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "onClick.js"
    ]
  },
  "browser_action": {
    "default_icon": "wishi16.png",
    "default_title": "Wishi Me"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "http://*.wishi.me/"
  ]
}