gInfinity

gInfinity

Infinite scroll for Google search results and a lot of other improvements to your browser experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "gInfinity",
  "version": "2.4.1",
  "manifest_version": 2,
  "description": "Infinite scroll for Google search results and a lot of other improvements to your browser experience.",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "lib/jquery-1.7.min.js",
        "lib/xpath.js",
        "js/gInfinity.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "tabs",
    "notifications",
    "https://*/*",
    "http://*/*"
  ],
  "minimum_chrome_version": "6.0.0.0",
  "icons": {
    "16": "images/infen_logo_16x16.png",
    "48": "images/infen_logo_48x48.png",
    "128": "images/infen_logo_128x128.png"
  }
}