Kickstarter Tracker

Kickstarter Tracker

Allow you to keep track of projects and be notified when they get more funding.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Kickstarter Tracker",
  "description": "Allow you to keep track of projects and be notified when they get more funding.",
  "version": "0.1",
  "permissions": [
    "http://*.kickstarter.com/*",
    "https://*.kickstarter.com/*",
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "content_security_policy": "script-src 'self' https://example.com; object-src 'self'"
}