Persistent Google Search Bar

Persistent Google Search Bar

Quick fix so that the search bar stays at top during scroll

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "steam.js"
      ],
      "matches": [
        "http://www.google.com/*q=*",
        "https://www.google.com/*q=*",
        "https://www.google.com/",
        "http://www.google.com/"
      ]
    }
  ],
  "description": "Quick fix so that the search bar stays at top during scroll",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "Persistent Google Search Bar",
  "version": "0.1.2"
}