Emaze

Emaze

Explore the latest Emaze creations and quickly create your own

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Emaze",
  "description": "Explore the latest Emaze creations and quickly create your own",
  "version": "1.2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Emaze",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "https://ajax.googleapis.com/",
    "http://app.emaze.com/api/getExplore",
    "http://app.emaze.com/api/SearchExplorePresentations",
    "http://*/"
  ],
  "background": {
    "scripts": [
      "jquery-2.1.3.min.js",
      "background.js"
    ],
    "run_at": "document_end",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}