GotoImageUrl

GotoImageUrl

Directly go to image URL from Google Images,Yahoo Images,Ask Images

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GotoImageUrl",
  "description": "Directly go to image URL from Google Images,Yahoo Images,Ask Images",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "version": "2.0",
  "manifest_version": 3,
  "permissions": [],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/imgres*",
        "https://*/imgres*",
        "http://*/images*",
        "https://*/images*",
        "http://*/fr*",
        "https://*/fr*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}