WordWeb Dictionary Lookup

WordWeb Dictionary Lookup

One-click lookup with WordWeb (wordweb.info, Windows only)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WordWeb Dictionary Lookup",
  "short_name": "WordWeb",
  "version": "0.0.1.6",
  "manifest_version": 2,
  "description": "One-click lookup with WordWeb (wordweb.info, Windows only)",
  "icons": {
    "24": "images/24.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "author": "WordWeb Software",
  "homepage_url": "http://wordweb.info/",
  "browser_action": {
    "default_title": "WordWeb"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "backgroundscript.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "nativeMessaging",
    "activeTab",
    "tabs"
  ]
}