Weekly Timelog

Weekly Timelog

Time tracking developers

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Weekly Timelog",
  "short_name": "WT",
  "description": "Time tracking developers",
  "version": "2.10.19.1010",
  "permissions": [
    "webRequest",
    "activeTab",
    "storage",
    "geolocation",
    "tabs",
    "idle",
    "contextMenus",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.min.js"
    ]
  },
  "icons": {
    "16": "/icons/icon.png",
    "48": "/icons/icon.png",
    "128": "/icons/icon.png"
  },
  "browser_action": {
    "default_title": "Add new item to the Main menu",
    "default_icon": "/icons/icon.png",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "main.min.js"
      ],
      "css": [
        "apps/styles/style.css"
      ]
    }
  ],
  "options_page": "options/options.html",
  "manifest_version": 2
}