Dogetip Allowed Subreddits Indicator

Dogetip Allowed Subreddits Indicator

Shows a DOM indicator that the subreddit currently being views allows/bans tipping

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dogetip Allowed Subreddits Indicator",
  "version": "1.1",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "description": "Shows a DOM indicator that the subreddit currently being views allows/bans tipping",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/r/*"
      ],
      "exclude_matches": [
        "*://*.reddit.com/r/all/*"
      ],
      "js": [
        "script.js"
      ],
      "css": [
        "suchStyle.css"
      ]
    }
  ],
  "permissions": [
    "*://www.reddit.com/r/dogecoin/wiki/other_subreddit_tipping"
  ]
}