HN Embolden

HN Embolden

Fork of HN Special with bolder styling. This extension refreshes the visual style of Hacker News and adds a few features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "HN Embolden",
  "description": "Fork of HN Special with bolder styling. This extension refreshes the visual style of Hacker News and adds a few features.",
  "version": "1.5.0",
  "homepage_url": "https://github.com/JeffreyCA/hn-special",
  "host_permissions": [
    "*://news.ycombinator.com/*"
  ],
  "optional_permissions": [
    "history"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  },
  "background": {
    "service_worker": "lib/extras/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://news.ycombinator.com/*"
      ],
      "js": [
        "lib/tools/hide_flash.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://news.ycombinator.com/*"
      ],
      "js": [
        "lib/tools/utility.js",
        "lib/settings.js",
        "lib/modules/visual_theme.js",
        "lib/modules/dark_theme.js",
        "lib/modules/high_contrast.js",
        "lib/modules/gray_visited_links.js",
        "lib/modules/open_links_in_new_tabs.js",
        "lib/modules/highlight_links_when_returning.js",
        "lib/modules/infinite_scrolling.js",
        "lib/modules/accurate_domain_names.js",
        "lib/modules/mark_as_read.js",
        "lib/modules/sticky_header.js",
        "lib/modules/user_tooltips.js",
        "lib/modules/hide_downvote.js"
      ],
      "css": [
        "lib/extras/hn_theme_base.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "lib/defaults.json",
        "lib/extras/permissions.html",
        "lib/extras/permissions.js",
        "lib/extras/hn_theme_base.css",
        "lib/extras/hn_theme_light.css",
        "lib/extras/hn_theme_light_contrast.css",
        "lib/extras/hn_theme_dark.css",
        "resources/gear.svg",
        "resources/arrow-up-white.svg",
        "resources/arrow-down-white.svg",
        "resources/arrow-up-black.svg",
        "resources/arrow-down-black.svg",
        "resources/logo.svg"
      ],
      "matches": [
        "*://news.ycombinator.com/*"
      ]
    }
  ],
  "icons": {
    "16": "promo/icons/icon16.png",
    "32": "promo/icons/icon32.png",
    "48": "promo/icons/icon48.png",
    "64": "promo/icons/icon64.png",
    "128": "promo/icons/icon128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}