Hacker News Auto Refresh

Hacker News Auto Refresh

This extension will refresh hacker news once a minute via AJAX.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hacker News Auto Refresh",
  "description": "This extension will refresh hacker news once a minute via AJAX.",
  "version": "1.0.1",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://news.ycombinator.com/",
        "https://news.ycombinator.com/news",
        "https://news.ycombinator.com/newest",
        "https://news.ycombinator.com/threads*",
        "https://news.ycombinator.com/newcomments",
        "https://news.ycombinator.com/ask",
        "https://news.ycombinator.com/jobs"
      ],
      "css": [
        "animate-custom.css"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage"
  ]
}