Manuals Hunt and Search

Manuals Hunt and Search

Add the Manuals Hunt and Search extension to access over 30,000 manuals by clicking the favicon on the toolbar, and get web results from Yahoo® Search

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Manuals Hunt and Search",
  "description": "Read and download manuals",
  "version": "1.0.3",
  "manifest_version": 2,
  "browser_action": {
    "browser_style": true,
    "default_title": "Manuals Hunt and Search"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "*://manualshunt.com/*"
  ],
  "background": {
    "page": "background.html"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Yahoo by Manuals Hunt & Search",
      "keyword": "Manuals Hunt and Search",
      "search_url": "https://search.yahoo.com/yhs/search?hspart=ata&hsimp=yhs-002&type=type9044149-aal-139990-139991&param1=139990&param2=139991&p={searchTerms}&grd=1",
      "suggest_url": "https://search.yahoo.com/sugg/ie?output=fxjson&command={searchTerms}&nResults=10",
      "is_default": true
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "98.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://manualshunt.com/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "contentscript.bundle.js"
      ]
    }
  ],
  "icons": {
    "48": "manuals-ext.png"
  }
}