Reddit Comment Opener

Reddit Comment Opener

A script to open all comment links on a subreddit page (excluding stickied threads). Will not open the same link within 24 hours.

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 Comment Opener",
  "version": "1.5",
  "description": "A script to open all comment links on a subreddit page (excluding stickied threads). Will not open the same link within 24 hours.",
  "icons": {
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_title": "Reddit Comment Opener"
  },
  "permissions": [
    "activeTab",
    "https://www.reddit.com/r/*",
    "https://old.reddit.com/r/*"
  ]
}