Edge tab start page

Edge tab start page

The Edge tab start page is a simple, beautiful, and useful browser start page that accommodates multi-engine search, website shortcuts, notes, wallpapers, weather, and many other features in an elegant interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": {
      "64": "images/Lime_Icon_64x.png",
      "128": "images/Lime_Icon_128x.png",
      "256": "images/Lime_Icon_256x.png",
      "512": "images/Lime_Icon_512x.png"
    },
    "default_popup": "popup-ext.html"
  },
  "chrome_settings_overrides": {
    "homepage": "https://limestart.cn/?from=ext"
  },
  "chrome_url_overrides": {
    "newtab": "newtab-ext.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "scripts/customize-limestart.js"
      ],
      "matches": [
        "https://limestart.cn/*"
      ],
      "run_at": "document_end"
    },
    {
      "css": [
        "styles/customize-baidu.css"
      ],
      "js": [
        "scripts/customize-baidu.js"
      ],
      "matches": [
        "https://www.baidu.com/s?*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "zh_CN",
  "description": "__MSG_extDescription__",
  "homepage_url": "https://limestart.cn/intro",
  "icons": {
    "64": "images/Lime_Icon_64x.png",
    "128": "images/Lime_Icon_128x.png",
    "256": "images/Lime_Icon_256x.png",
    "512": "images/Lime_Icon_512x.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "__MSG_extName__",
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "21.13.22",
  "web_accessible_resources": [
    {
      "matches": [
        "https://limestart.cn/*"
      ],
      "resources": [
        "wallpapers/*"
      ]
    }
  ]
}