Tiny Timer

Tiny Timer

The Cutest Study Timer in the West

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tiny Timer",
  "version": "0.5",
  "description": "The Cutest Study Timer in the West",
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "audio"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self",
    "style-src": [
      "self",
      "buddy.css"
    ]
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "./buddy.css"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "24": "assets/icons/icon16.png",
      "32": "assets/icons/icon16.png"
    },
    "default_title": "Tiny Timer",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "buddy.css",
        "assets/fonts/*",
        "assets/sounds/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}