Reddit (Au) Comment Highlights

Reddit (Au) Comment Highlights

Highlight unread comments since your last visit to a Reddit comment section.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit (Au) Comment Highlights",
  "version": "2.0.1",
  "options_page": "/options.html",
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{ada26ae8-41ec-4460-936a-790afc2d85c9}",
      "strict_min_version": "52.0"
    }
  },
  "minimum_chrome_version": "32",
  "icons": {
    "48": "/img/icon48.png",
    "96": "/img/icon96.png"
  },
  "options_ui": {
    "page": "/options.html",
    "chrome_style": false,
    "browser_style": false
  },
  "homepage_url": "https://github.com/aesy/reddit-comment-highlights",
  "description": "Highlight unread comments since your last visit to a Reddit comment section.",
  "short_name": "Highlight new Reddit comments",
  "background": {
    "scripts": [
      "/js/backgroundScript.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.reddit.com/*",
        "https://*.reddit.com/*"
      ],
      "js": [
        "/js/contentScript.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "http://*.reddit.com/*",
    "https://*.reddit.com/*"
  ]
}