Reddit: What's New

Reddit: What's New

Highlights Reddit posts that are new since the last time you visited.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reddit: What's New",
  "short_name": "Reddit New",
  "author": "Jason O'Neill",
  "description": "Highlights Reddit posts that are new since the last time you visited.",
  "version": "2.2",
  "icons": {
    "16": "assets/icon16.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "assets/icon128.png",
    "default_popup": "popup.html",
    "default_title": "Reddit: What's New"
  },
  "permissions": [
    "tabs",
    "https://*.reddit.com/*",
    "http://*.reddit.com/*",
    "storage"
  ]
}