StartPage - Best New Tab Startpage

StartPage - Best New Tab Startpage

This extension automatically sets Startpage.pro as your new tab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "StartPage",
  "description": "This extension automatically sets Startpage.pro as your new tab page.",
  "manifest_version": 2,
  "version": "1.0.7resigned1",
  "homepage_url": "https://startpage.pro",
  "icons": {
    "16": "favicon.png",
    "32": "icon32.png",
    "48": "icon48.png"
  },
  "applications": {
    "gecko": {
      "strict_min_version": "54.0",
      "id": "{7722af25-118e-4209-97ac-68ebf75a386c}"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png"
    },
    "default_title": "StartPage",
    "default_popup": "popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "redirect.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "cookies",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.startpage.pro/*"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ]
}