Hacker News Tweak

Hacker News Tweak

Hacker News Tweak is a chrome extension to make HN more user friendly. The extension will activate when you're on hacker news once…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hacker News Tweak",
  "version": "1.1",
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "images/icon22.png",
    "default_title": "Hacker News Tweak",
    "default_popup": "info.html"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://news.ycombinator.com/*"
      ],
      "css": [
        "content_style.css"
      ],
      "js": [
        "jquery-2.0.2.min.js",
        "content_script.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}