Ask Historians Comment Helper

Ask Historians Comment Helper

Ask Historians Comment Helper will show an improved comment count for the sub-reddit r/AskHistorians. It also allows you to monitor topics to see when they will get an answer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Ask Historians Comment Helper",
  "version": "1.0.4",
  "description": "Ask Historians Comment Helper",
  "icons": {
    "64": "icons/ah-64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/",
        "*://*.reddit.com/hot/",
        "*://*.reddit.com/new/",
        "*://*.reddit.com/rising/",
        "*://*.reddit.com/controversial/",
        "*://*.reddit.com/top/",
        "*://*.reddit.com/gilded/",
        "*://*.reddit.com/r/askhistorians/*",
        "*://*.reddit.com/r/AskHistorians/*",
        "*://*.reddit.com/r/popular/",
        "*://*.reddit.com/r/Popular/",
        "*://*.reddit.com/r/all/",
        "*://*.reddit.com/r/All/"
      ],
      "js": [
        "purify.min.js",
        "common_functions.js",
        "ask_historians_comment_helper.js"
      ]
    }
  ],
  "permissions": [
    "https://www.reddit.com/*",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icons/ah-64.png",
    "default_title": "AH",
    "default_popup": "popup/ask_historians_popup.html"
  },
  "background": {
    "scripts": [
      "common_functions.js",
      "background_script.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "ask_historians_comment_helper@reddit"
    }
  }
}