CollectIt

CollectIt

Collect your resources into your Innoent workshop!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CollectIt",
  "description": "Collect your resources into your Innoent workshop!",
  "version": "0.1.0",
  "author": "InnoEnt corp",
  "browser_action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "38": "img/icon-38.png"
    },
    "default_popup": "index.html"
  },
  "background": {
    "page": "background/eventPage.html",
    "persistent": false
  },
  "permissions": [
    "https://api.parse.com/",
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.innoent.com/edu/*",
        "http://localhost:9001/*"
      ],
      "js": [
        "content_scripts/main.min.js"
      ]
    }
  ]
}