English Dictionary Lookup

English Dictionary Lookup

Allows for easy lookup and display of English word definitions within webpages via a double-click and an unobtrusive dialog box.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "English Dictionary Lookup",
  "version": "1.1.2.0",
  "description": "Allows for easy lookup and display of English word definitions within webpages via a double-click and an unobtrusive dialog box.",
  "offline_enabled": true,
  "icons": {
    "128": "icons/dictlookup-128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "index.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    "data/gcide/xml_files/gcide_abbreviations.csv",
    "data/gcide/xml_files/gcide_abbreviations.xml",
    "data/gcide/xml_files/gcide_a.xml",
    "data/gcide/xml_files/gcide_b.xml",
    "data/gcide/xml_files/gcide_c.xml",
    "data/gcide/xml_files/gcide_d.xml",
    "data/gcide/xml_files/gcide_e.xml",
    "data/gcide/xml_files/gcide_f.xml",
    "data/gcide/xml_files/gcide_g.xml",
    "data/gcide/xml_files/gcide_h.xml",
    "data/gcide/xml_files/gcide_i.xml",
    "data/gcide/xml_files/gcide_j.xml",
    "data/gcide/xml_files/gcide_k.xml",
    "data/gcide/xml_files/gcide_l.xml",
    "data/gcide/xml_files/gcide_m.xml",
    "data/gcide/xml_files/gcide_n.xml",
    "data/gcide/xml_files/gcide_o.xml",
    "data/gcide/xml_files/gcide_p.xml",
    "data/gcide/xml_files/gcide_q.xml",
    "data/gcide/xml_files/gcide_r.xml",
    "data/gcide/xml_files/gcide_s.xml",
    "data/gcide/xml_files/gcide_symbols.csv",
    "data/gcide/xml_files/gcide_t.xml",
    "data/gcide/xml_files/gcide_u.xml",
    "data/gcide/xml_files/gcide_v.xml",
    "data/gcide/xml_files/gcide_w.xml",
    "data/gcide/xml_files/gcide_x.xml",
    "data/gcide/xml_files/gcide_y.xml",
    "data/gcide/xml_files/gcide_z.xml",
    "data/gcide/abbr_regex.txt",
    "data/gcide/symbols_regex.txt"
  ]
}