The Weekly Planet

The Weekly Planet

A small dose of the pod boys before the next episode is released

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "The Weekly Planet",
  "description": "A small dose of the pod boys before the next episode is released",
  "version": "2.1",
  "web_accessible_resources": [
    "img/maso.png",
    "img/james.png"
  ],
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "myscript.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ]
}