Surf Clock

Surf Clock

Keep track of the time you spend surfing on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Surf Clock",
  "version": "1.0.4",
  "author": "crococoding",
  "homepage_url": "https://surfclock.io",
  "description": "Keep track of the time you spend surfing on the web.",
  "icons": {
    "128": "chrome/icon_128.png"
  },
  "browser_action": {
    "default_icon": "chrome/icon_128.png",
    "default_popup": "chrome/popup_chrome.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "https://www.google.com/*"
  ],
  "background": {
    "scripts": [
      "core/background/dexie.min.js",
      "core/background/vibrant.min.js",
      "core/background/database.js",
      "core/background/logger.js",
      "chrome/background_chrome.js"
    ]
  }
}