Dynamic Time Theme Cursor

Dynamic Time Theme Cursor

This is a Mozilla Firefox web extension which allows the user to change the browser theme and cursor automatically based on the current time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.0",
  "name": "Browser Cursor Changer",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "48": "assets/icon.png"
    },
    "default_popup": "popup.html",
    "default_title": "Browser Cursor Changer"
  },
  "permissions": [
    "activeTab",
    "theme"
  ],
  "applications": {
    "gecko": {
      "strict_min_version": "55.0a2",
      "id": "{290260ef-4b6f-4d58-a532-02cf1d0c3e66}"
    }
  }
}