Foragear- Quick Search Tool

Foragear- Quick Search Tool

Autoscroll to relevant sections of a page and have relevant keywords/ phrases highlighted

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Foragear- Quick Search Tool",
  "manifest_version": 2,
  "version": "1.0.2",
  "description": "Autoscroll to relevant sections of a page and have relevant keywords/ phrases highlighted",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "contentmain.js"
      ],
      "matches": [
        "https://www.google.com/search?*",
        "http://www.google.com/search?*"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/*.png"
  ],
  "page_action": {
    "default_title": "Foragear- Quick Search Tool",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "<all_urls>"
  ]
}