Random New Items in Hacker News Frontpage

Random New Items in Hacker News Frontpage

Randomly picks 5 items from the /newest or /shownew and displays them at the top of the front page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://news.ycombinator.com/*"
      ],
      "js": [
        "js/content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "manifest_version": 2,
  "name": "Random New Items in Hacker News Frontpage",
  "version": "0.0.3",
  "description": "Randomly picks 5 items from the /newest or /shownew and displays them at the top of the front page.",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "author": "Balaganesh Damodaran <[email protected]>",
  "minimum_chrome_version": "42",
  "offline_enabled": false,
  "permissions": [
    "storage"
  ],
  "short_name": "HN Frontpage New",
  "options_page": "config/settings.html",
  "options_ui": {
    "page": "config/settings.html",
    "chrome_style": true
  }
}