Chrome Custom Interface

Chrome Custom Interface

Change your Google Chrome new tab interface logo and shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Custom Interface",
  "description": "Change your Google Chrome new tab interface logo and shortcuts.",
  "author": "Md Maruf Adnan Sami",
  "homepage_url": "https://www.mdmarufadnansami.com",
  "version": "3.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "data/popup.html",
    "default_icon": {
      "16": "assets/img/16.png",
      "32": "assets/img/32.png",
      "48": "assets/img/48.png",
      "128": "assets/img/128.png"
    }
  },
  "icons": {
    "16": "assets/img/16.png",
    "32": "assets/img/32.png",
    "48": "assets/img/48.png",
    "128": "assets/img/128.png"
  },
  "chrome_url_overrides": {
    "newtab": "data/interface.html"
  },
  "options_page": "data/settings.html"
}