Hacker Views

Hacker Views

View Open Graph images on Hacker News.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hacker Views",
  "manifest_version": 3,
  "version": "2.0",
  "description": "View Open Graph images on Hacker News.",
  "content_scripts": [
    {
      "matches": [
        "https://news.ycombinator.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "default-image.png",
        "loading.gif"
      ],
      "matches": [
        "https://news.ycombinator.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  }
}