IHome New Tab

IHome New Tab

IHome is a practical tool browser new tab extension。And you can switch between multiple different browsers, and you don’t have to consider the issue of data backup at all,

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "default_locale": "zh_CN",
  "description": "__MSG_extDescription__",
  "version": "1.5.5",
  "options_page": "options.html",
  "icons": {
    "16": "36.png",
    "48": "48.png",
    "128": "128.png"
  },
  "action": {
    "default_logo": "128.png",
    "default_icon": "128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "bookmarks",
    "storage"
  ],
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "chrome_url_overrides": {
    "newtab": "new_tab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/browser_desktop_content.js"
      ],
      "css": [
        "css/browser_desktop_content.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}