DragonLink

DragonLink

A visually pleasing (keyboard) web navigator designed specifically for Nuance Communications' Dragon speak. DEV: @DanEllisScience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DragonLink",
  "author": "Dan Ellis 2018",
  "description": "A visually pleasing (keyboard) web navigator designed specifically for Nuance Communications' Dragon speak. \n DEV: @DanEllisScience",
  "version": "0.2",
  "background": {
    "scripts": []
  },
  "browser_action": {
    "default_icon": "./logo.png"
  },
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "sortlinks.js",
        "top2500.json"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [],
  "permissions": [
    "browserAction",
    "setIcon"
  ]
}