TabEasy

A simple new tab page
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "TabEasy",
  "version": "1.1",
  "manifest_version": 2,
  "description": "A simple new tab page",
  "permissions": [],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "browser_action": {
    "default_icon": "images/icon-16X16.png",
    "default_title": "Welcome to TabEasy"
  },
  "icons": {
    "16": "images/icon-16X16.png",
    "32": "images/icon-32X32.png",
    "48": "images/icon-48X48.png",
    "128": "images/icon-128X128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "jquery.min.js",
        "popper.js",
        "slider_js.js",
        "fb.js",
        "bootstrap.bundle.min.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}