Document Converter & Search

Document Converter & Search

Document Converter & Search provides a file conversion tool via the favicon on the toolbar along with web search results by Yahoo®.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Document Converter & Search",
  "description": "Document Converter & Search",
  "version": "1.0.2",
  "manifest_version": 2,
  "browser_action": {
    "browser_style": true,
    "default_title": "Document Converter & Search"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "*://documentconverter.com/*"
  ],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Yahoo by Document Converter & Search",
      "keyword": "Document Converter",
      "search_url": "https://search.yahoo.com/yhs/search?hspart=ata&hsimp=yhs-003&grd=1&type=type9025810-aal-200001-200002&param1=200001&param2=200002&p={searchTerms}",
      "suggest_url": "https://search.yahoo.com/sugg/ie?output=fxjson&command={searchTerms}&nResults=10",
      "is_default": true
    }
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "98.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://documentconverter.com/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "./js/contentscript.js"
      ]
    }
  ],
  "icons": {
    "48": "./images/extension-logo.png"
  }
}