SearchLock Tab

SearchLock Tab

Privacy-enhancing search engine new tab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SearchLock Tab",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "Privacy-enhancing search engine new tab page.",
  "homepage_url": "https://www.SearchLock.com",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "16": "img/icon16.png",
      "32": "img/icon32.png"
    },
    "default_title": "SearchLock Tab",
    "default_popup": "popup.html"
  },
  "permissions": [
    "alarms",
    "storage",
    "tabs",
    "topSites",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "*://*.searchlock.com/*"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.searchlock.com/*",
        "https://*.searchlock.com/*"
      ],
      "js": [
        "js/utils.js",
        "js/config.js",
        "js/contentScripts.js"
      ],
      "all_frames": true
    }
  ]
}