Let Us Goggle That For You

Let Us Goggle That For You

This extension adds a button to Google searches for you to refer to LUGTFY

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Let Us Goggle That For You",
  "description": "This extension adds a button to Google searches for you to refer to LUGTFY",
  "version": "0.1",
  "icons": {
    "128": "mysteryicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://www.google.*/*"
      ],
      "exclude_globs": [
        "https://analytics.google.com/analytics/web/*",
        "https://www.google.com/webmasters/tools/search-analytics*"
      ],
      "js": [
        "index.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ]
}