Long Descriptions in Context Menu

Long Descriptions in Context Menu

Right-click on anything with a "longdesc" or "aria-describedat" attribute to access its long description.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_LONGDESC_APPNAME__",
  "version": "1.0.2",
  "description": "__MSG_LONGDESC_APPDESC__",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lastRightClick.js"
      ],
      "css": [
        "border.css"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "<all_urls>"
  ],
  "manifest_version": 2,
  "default_locale": "en",
  "options_page": "options.html"
}