browseTimer

browseTimer

browseTimer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "browseTimer",
  "description": "browseTimer",
  "version": "0.0.3",
  "short_name": "browseTimer",
  "manifest_version": 2,
  "default_locale": "en",
  "author": "[email protected]",
  "icons": {
    "48": "images/icon-48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "idle",
    "webNavigation",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": {
      "48": "images/icon-48.png"
    }
  }
}