HackerNews Tweaks

HackerNews Tweaks

Adds the additional /lists from HN to the top bar, and a few other tweaks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HackerNews Tweaks",
  "version": "1.3.3",
  "manifest_version": 2,
  "description": "Adds the additional /lists from HN to the top bar, and a few other tweaks",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "HackerNews Lists",
    "default_icon": "16.png",
    "default_popup": "credit.html"
  },
  "permissions": [
    "*://news.ycombinator.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://news.ycombinator.com/*"
      ],
      "js": [
        "linker.js"
      ]
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  }
}