Goggle

Goggle

Does the regular Google logo bother you? Don't you wish it said something radically different? If so, then this is the extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Goggle",
  "version": "1.1",
  "options_page": "options.html",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.google.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "ProductSans.ttf"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  }
}