New Address Bar

New Address Bar

Providing a new way to search or go to a web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "New Address Bar",
  "short_name": "No Address Bar",
  "manifest_version": 2,
  "version": "1.0.0.8",
  "description": "Providing a new way to search or go to a web page.",
  "browser_action": {
    "default_icon": "48.png",
    "default_title": "AddressBar"
  },
  "background": {
    "page": "bgr.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "css": [
        "gsearch.css"
      ],
      "js": [
        "gsearch.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "128.png"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}