Quester New Tab

Website aggregation search, bookmarks for easy search
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": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "0.1.5",
  "default_locale": "en",
  "browser_action": {
    "default_title": "__MSG_extension_name__",
    "default_icon": "assets/logo.png"
  },
  "permissions": [
    "bookmarks",
    "history",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "16": "assets/logo.png",
    "48": "assets/logo.png",
    "128": "assets/logo.png"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com https://google-analytics.com 'unsafe-eval';  object-src 'self'",
  "web_accessible_resources": [
    "fonts/*",
    "inject.js"
  ],
  "chrome_url_overrides": {
    "newtab": "quester.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}