Day Gone In Percentage

Day Gone In Percentage

A chrome extension to show how much of current day, month or year has already passed in Percentage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Day Gone In Percentage",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "A chrome extension to show how much of current day, month or year has already passed in Percentage.",
  "icons": {
    "16": "images/sunset-16.png",
    "128": "images/sunset-128.png"
  },
  "default_locale": "en",
  "background": {},
  "permissions": [],
  "browser_action": {
    "default_icon": {
      "16": "images/sun-16.png",
      "128": "images/sun-128.png"
    },
    "default_title": "Day Gone In Percentage",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "images/*.png"
  ]
}