NelliTab - New Tab Page

NelliTab - New Tab Page

Shows your bookmarks and history nicely with icons from sites you visit without external services and without privacy concerns.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "128": "assets/img/logo/dark.png"
    }
  },
  "author": "Thomas Werner",
  "background": {
    "service_worker": "assets/js/background.js",
    "type": "module"
  },
  "chrome_url_overrides": {
    "newtab": "tab.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "assets/js/vendor/jquery.js",
        "assets/js/inject.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extShortDesc__",
  "homepage_url": "https://nellitab.io",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "128": "assets/img/logo/default.png"
  },
  "incognito": "split",
  "manifest_version": 3,
  "minimum_chrome_version": "105.0",
  "name": "__MSG_extName__",
  "offline_enabled": true,
  "optional_permissions": [
    "management",
    "topSites",
    "history",
    "downloads",
    "downloads.open"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "short_name": "__MSG_extShortName__",
  "version": "2024.1.986",
  "version_name": "2024.1 beta (986)",
  "web_accessible_resources": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/js/init.js",
        "assets/js/storage.js"
      ]
    }
  ]
}