Live Start Page - Living Wallpapers

Live Start Page - Living Wallpapers

Live new tab page: customize clocks, to-do list, hundreds of live backgrounds in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "short_name": "__MSG_appShort__",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "40.3.5",
  "chrome_url_overrides": {
    "newtab": "pages/newtab/newtab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "pages/client/livestartpage-message.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://livestartpage.com/*"
      ],
      "css": [
        "pages/client/livestartpage-home.css"
      ],
      "js": [
        "vendor/jquery-3.3.1.min.js",
        "pages/client/livestartpage-home.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "pages/client/livestartpage-add.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "pages/backend/background.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "options_page": "pages/options/options.html",
  "permissions": [
    "management",
    "history",
    "storage",
    "unlimitedStorage",
    "tabs",
    "contextMenus",
    "cookies",
    "declarativeNetRequest",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pages/newtab/newtab.html",
        "pages/client/livestartpage-message-add.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "img/icon/icon16.png",
    "19": "img/icon/icon19.png",
    "24": "img/icon/icon24.png",
    "32": "img/icon/icon32.png",
    "48": "img/icon/icon48.png",
    "64": "img/icon/icon64.png",
    "96": "img/icon/icon96.png",
    "128": "img/icon/icon128.png"
  },
  "default_locale": "en",
  "action": {
    "default_icon": "img/icon/icon24.png",
    "default_title": "Live Start Page",
    "default_popup": "pages/menu/menu.html"
  },
  "commands": {
    "toggle-feature-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Toggle feature foo",
      "global": false
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}