Miglior for Hacker News

Miglior for Hacker News

Enhance your experience on Hacker News

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Miglior for Hacker News",
  "short_name": "mHN",
  "version": "1.7.2.0",
  "description": "Enhance your experience on Hacker News",
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{498bbd41-6b7d-4871-a8a6-94c4a630c5c0}"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "css": [
        "style.css"
      ],
      "matches": [
        "https://news.ycombinator.com/*"
      ]
    },
    {
      "run_at": "document_end",
      "all_frames": true,
      "css": [
        "style.css"
      ],
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/hn.js"
      ],
      "matches": [
        "https://news.ycombinator.com/*"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "web_accessible_resources": [
    "images/spin.gif",
    "images/unvote.gif",
    "images/tag.svg"
  ]
}