reveddit real-time

reveddit real-time

reveddit notifies you when any of your content on reddit has been removed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "reveddit real-time",
  "description": "reveddit notifies you when any of your content on reddit has been removed.",
  "version": "0.0.3.0",
  "permissions": [
    "cookies",
    "notifications",
    "alarms",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://*.reddit.com/*",
    "https://*.reveddit.com/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_popup": "src/popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "24": "icons/24.png",
      "32": "icons/32.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/history.html",
        "src/other.html"
      ],
      "matches": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.reveddit.com/*",
        "https://*.reddit.com/*"
      ],
      "js": [
        "lib/jquery-3.2.1.min.js",
        "lib/arrive.js",
        "src/content.js"
      ],
      "css": [
        "src/content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": false
  },
  "manifest_version": 3,
  "incognito": "split"
}