Hacker News OnePage

Hacker News OnePage

Provides users with the ability to browse Hacker News articles and comments without leaving the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Hacker News OnePage",
  "version": "0.9.1",
  "manifest_version": 2,
  "description": "Provides users with the ability to browse Hacker News articles and comments without leaving the page.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.3.2.min.js",
        "hacker_news_onepage.chrome.js"
      ],
      "matches": [
        "http://news.ycombinator.com/",
        "http://news.ycombinator.com/x?*",
        "http://news.ycombinator.com/news",
        "http://news.ycombinator.com/newest",
        "http://news.ycombinator.org/",
        "http://news.ycombinator.org/x?*",
        "http://news.ycombinator.org/news",
        "http://news.ycombinator.org/newest",
        "https://news.ycombinator.com/",
        "https://news.ycombinator.com/x?*",
        "https://news.ycombinator.com/news",
        "https://news.ycombinator.com/newest",
        "https://news.ycombinator.org/",
        "https://news.ycombinator.org/x?*",
        "https://news.ycombinator.org/news",
        "https://news.ycombinator.org/newest"
      ]
    }
  ]
}