Deviant-Notify

Deviant-Notify

Keep track of your DeviantArt 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": "Deviant-Notify",
  "version": "1.5.1",
  "description": "Keep track of your DeviantArt notifications and messages in (almost) real time",
  "applications": {
    "gecko": {
      "id": "{5cc28e7e-ae1f-4835-be60-ea3fe22ab007}",
      "strict_min_version": "54.0"
    }
  },
  "permissions": [
    "https://www.deviantart.com/",
    "storage",
    "notifications",
    "cookies"
  ],
  "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://www.deviantart.com/*"
      ],
      "js": [
        "js/deviant-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
}