Tapas RSS Button

Tapas RSS Button

A webextension that adds an RSS feed button on tapas.io webcomic pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tapas RSS Button",
  "version": "1.1.1",
  "description": "A webextension that adds an RSS feed button on tapas.io webcomic pages",
  "icons": {
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://tapas.io/series/*",
        "*://tapas.io/episode/*",
        "*://m.tapas.io/series/*",
        "*://m.tapas.io/episode/*"
      ],
      "js": [
        "src/mutation.js",
        "src/add_rss.js",
        "src/index.js"
      ],
      "css": [
        "css/add_rss.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "src/options/index.html"
  },
  "manifest_version": 3
}