Export Patreon Comments

Export Patreon Comments

Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Export Patreon Comments",
  "version": "1.0.2",
  "host_permissions": [
    "*://*.patreon.com/posts/*"
  ],
  "permissions": [
    "contextMenus",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.patreon.com/posts/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon16.png",
        "icon48.png",
        "icon128.png"
      ],
      "matches": [
        "*://*.patreon.com/*"
      ]
    }
  ],
  "description": "Use this extension on Patreon's posts pages to export or show all comments. How to use: Right-click on the page."
}