Yahoo Homepage

Yahoo Homepage

Get daily top headlines when opening your browser! This extension automatically sets Yahoo.com as your homepage and new tab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "chrome_url_overrides": {
    "newtab": "ui/homepage.html"
  },
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_homepage_chrome_extension_name__",
  "description": "__MSG_homepage_chrome_extension_description__",
  "version": "3.0.4",
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "alarms"
  ],
  "host_permissions": [
    "*://*.yahoo.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_icon": {
      "64": "icons/icon-64.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.yahoo.com/*",
        "*://us.yahoo.com/*"
      ],
      "js": [
        "components/front/index.js",
        "ui/notifyPresence.js"
      ],
      "css": [
        "components/front/index.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "components/front/open-cta@3x.*.png",
        "components/front/open-cta-hover@3x.*.png",
        "components/front/close@3x.*.png",
        "components/front/close-over@3x.*.png",
        "components/front/yahoo-icon@3x.*.png",
        "components/front/mlb.*.png",
        "components/front/nfl.*.png",
        "components/front/nhl.*.png",
        "components/front/nba.*.png"
      ],
      "matches": [
        "*://www.yahoo.com/*",
        "*://us.yahoo.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}