MultiLookup

MultiLookup

This extension lets you select text to search from multiple sources and displays the results in a single pop-up screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "ja",
  "name": "__MSG_ext_name__",
  "manifest_version": 2,
  "version": "0.7.6",
  "description": "__MSG_ext_description__",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "all_frames": false,
      "js": [
        "js/multilookup.js"
      ],
      "css": [
        "css/multilookup.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "options_page": "html/options.html",
  "background": {
    "page": "html/background.html"
  },
  "browser_action": {
    "default_icon": "img/popup.png",
    "default_title": "MultiLookup",
    "default_popup": "html/popup.html"
  }
}