CodeNap

CodeNap

Stay mindful and productive while browsing. Get reminders to take breaks, stand up, and drink water.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CodeNap",
  "version": "0.2.0",
  "manifest_version": 3,
  "description": "Stay mindful and productive while browsing. Get reminders to take breaks, stand up, and drink water.",
  "author": {
    "email": "[email protected]"
  },
  "action": {
    "default_popup": "setTimer.html",
    "default_icon": {
      "16": "img/CodeNap_16x16.png",
      "32": "img/CodeNap_32x32.png",
      "48": "img/CodeNap_48x48.png",
      "128": "img/CodeNap_128x128.png"
    }
  },
  "icons": {
    "16": "img/CodeNap_16x16.png",
    "32": "img/CodeNap_32x32.png",
    "48": "img/CodeNap_48x48.png",
    "128": "img/CodeNap_128x128.png"
  },
  "permissions": [
    "alarms",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}