Freemix

Freemix

Quickly remix images on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Freemix",
  "description": "Quickly remix images on the web.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "/img/logo.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/css/freemixthis.css"
      ],
      "js": [
        "/3rdparty/jquery.min.js",
        "/contentscripts/freemix.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/img/logo.png",
    "/img/closeCross.svg",
    "/img/loading.gif"
  ],
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "https://freemix.com/",
    "https://www.freemix.com/",
    "https://dev.freemix.com:8000/",
    "storage",
    "browsingData"
  ]
}