Newsit: Hacker News and Reddit Links

Newsit: Hacker News and Reddit Links

Find Reddit or Hacker News discussions on the current page!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Find Reddit or Hacker News discussions on the current page!",
  "version": "2.1.1",
  "manifest_version": 3,
  "author": "Ben Winding",
  "name": "Newsit: Hacker News and Reddit Links",
  "short_name": "Newsit",
  "homepage_url": "https://newsit.benwinding.com/",
  "minimum_chrome_version": "93",
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "vendor/purify.min.js",
        "vendor/react.min.js",
        "vendor/react-dom.min.js",
        "js/content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/favicon-32x32.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "32": "img/favicon-32x32.png",
    "128": "img/favicon-128x128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "options_page": "options.html"
}