Fur-Notify

Fur-Notify

Keep track of your Furbooru notifications and messages in (almost) real time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fur-Notify",
  "version": "1.0.5",
  "description": "Keep track of your Furbooru notifications and messages in (almost) real time",
  "applications": {
    "gecko": {
      "strict_min_version": "54.0"
    }
  },
  "permissions": [
    "https://furbooru.org/",
    "storage",
    "notifications"
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/notif-16.png",
      "32": "img/notif-32.png",
      "48": "img/notif-48.png",
      "128": "img/notif-128.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://furbooru.org/*"
      ],
      "js": [
        "js/fur-notify.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "img/app-16.png",
    "32": "img/app-32.png",
    "48": "img/app-48.png",
    "128": "img/app-128.png"
  },
  "manifest_version": 2
}