(Unofficial) Notifications for devRant

(Unofficial) Notifications for devRant

Receive notifications for new rants

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "(Unofficial) Notifications for devRant",
  "short_name": "devRant Notifications",
  "version": "1.0.1",
  "description": "Receive notifications for new rants",
  "author": "ChappIO",
  "homepage_url": "https://github.com/ChappIO/devrant-chrome-extension",
  "icons": {
    "32": "icons/logo_32.png",
    "48": "icons/logo_48.png",
    "128": "icons/logo_128.png",
    "500": "icons/logo_500.png"
  },
  "browser_action": {
    "default_icon": "icons/logo_128.png"
  },
  "background": {
    "scripts": [
      "options.js",
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options-page.html",
    "chrome_style": true
  },
  "permissions": [
    "notifications",
    "<all_urls>",
    "tabs",
    "clipboardWrite",
    "storage"
  ]
}