Anori: productivity new tab

Anori: productivity new tab

Customizable new tab: compose your own page from widgets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.18.0",
  "author": "OlegWock",
  "manifest_version": 3,
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_appActionTitle__"
  },
  "minimum_chrome_version": "104",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "permissions": [
    "alarms",
    "storage",
    "unlimitedStorage",
    "sessions",
    "system.cpu",
    "system.memory"
  ],
  "host_permissions": [],
  "optional_permissions": [
    "tabs",
    "favicon",
    "topSites",
    "bookmarks",
    "tabGroups",
    "declarativeNetRequestWithHostAccess",
    "browsingData"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "chrome_url_overrides": {
    "newtab": "/pages/newtab/start.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    },
    {
      "resources": [
        "/chunks/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}