Hacker News: Mark All Read

Hacker News: Mark All Read

Save time on HN by marking read the titles and comments you already scanned

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Hacker News: Mark All Read",
  "version": "1.4",
  "manifest_version": 2,
  "description": "Save time on HN by marking read the titles and comments you already scanned",
  "content_scripts": [
    {
      "matches": [
        "*://news.ycombinator.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery.min.js",
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/HNMarkAllRead-18.png",
    "styles.css"
  ],
  "icons": {
    "128": "images/HNMarkAllRead.png"
  }
}