patreon comments autoload

patreon comments autoload

auto load all the comments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "patreon comments autoload",
  "version": "1.0.1",
  "description": "auto load all the comments",
  "permissions": [
    "https://www.patreon.com/api/posts/*",
    "tabs",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "autoload patreon comments",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/patreon16.png",
      "32": "images/patreon32.png",
      "48": "images/patreon48.png",
      "128": "images/patreon128.png"
    }
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Alt+Shift+P",
        "windows": "Alt+Shift+P",
        "mac": "Command+Shift+P"
      }
    }
  },
  "icons": {
    "16": "images/patreon16.png",
    "32": "images/patreon32.png",
    "48": "images/patreon48.png",
    "128": "images/patreon128.png"
  },
  "manifest_version": 2
}