My New Tab

My New Tab

Add My New Tab for quick access to search engine, latest news, most visited sites, add quick links, and weather.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "My New Tab",
  "short_name": "mynewtab",
  "description": "Add My New Tab for quick access to search engine, latest news, most visited sites, add quick links, and weather.",
  "version": "5.1",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "author": "mynewtab",
  "icons": {
    "128": "icon-mozilla.png"
  },
  "action": {
    "default_icon": "icon-mozilla.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.mynewtab.org/*"
      ],
      "js": [
        "content-script.js",
        "script.js",
        "scrape_post.js"
      ]
    }
  ],
  "background": {
    "service_worker": "app.js"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  }
}