a11y-outline

a11y-outline

Many screen readers like JAWS or NVDA have shortcuts to bring up a list of landmarks, headings or links. This browser extension provides the same functionality without requiring a screen reader. Just press Ctrl+Shift+7.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "a11y-outline",
  "author": "Tobias Bengfort",
  "homepage_url": "https://github.com/xi/a11y-outline",
  "description": "navigate page outlines easily",
  "version": "2.1.0",
  "action": {
    "default_title": "A11y Outline",
    "default_icon": "icon-128.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+7"
      }
    },
    "cycle-main": {
      "description": "go to main landmark"
    },
    "next-landmark": {
      "description": "go to next landmark"
    },
    "prev-landmark": {
      "description": "go to previous landmark"
    },
    "next-heading": {
      "description": "go to next heading"
    },
    "prev-heading": {
      "description": "go to previous heading"
    }
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{34e8d1d4-286c-4cb8-96d3-9eecd0665c0f}"
    }
  }
}