NewTab.biz - Beautiful New Tab Startpage

New Tab and Startpage with wonderful Wallpapers. Bookmarks and Weather Widget. Integrated Google Translator, Google Calendar, Notepad / Todo-List, Calculator, Google Search. Without any Permissions.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "NewTab.biz",
  "short_name": "NewTab.biz",
  "version": "2.2",
  "description": "Startpage and NewTab with wunderful wallpapers. Favorite Bookmarks and Weather Widget. Integrated Google Translator, Google Calendar, Notes/Todo-List, Calculator. Without any Permissions",
  "applications": {
    "gecko": {
      "id": "webmaster@newtab.biz",
      "strict_min_version": "54.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/32.png"
    },
    "default_title": "NewTab.biz",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "redirect.html"
  },
  "chrome_settings_overrides": {
    "homepage": "https://www.newtab.biz?hp=1"
  },
  "icons": {
    "32": "icons/32.png",
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.newtab.biz/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ]
}