Re-Tab Image

Re-Tab Image

Replace the 'visit' button in google's image search with , 'View Image'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Re-Tab Image",
  "version": "1.0.1",
  "description": "Replace the 'visit' button in google's image search with , 'View Image'",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.google.com/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}