Week

Week

Week displays an icon with the current week number in the chrome toolbar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "jquery-2.1.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.1.1.min.js",
        "week.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Week displays an icon with the current week number in the chrome toolbar",
  "manifest_version": 2,
  "name": "Week",
  "short_name": "Week",
  "version": "0.5",
  "icons": {
    "128": "images/logo128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "Week",
    "default_popup": "week.html"
  }
}