Display Anchors

The Display Anchors Firefox addon enhances browsing by visually highlighting anchor links on webpages. It provides clear markers for easy navigation, helping users quickly locate specific sections within lengthy content.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Display Anchors",
  "version": "1.0",
  "description": "Identifies and displays anchors (links) on the current webpage.",
  "permissions": [
    "tabs"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "displayanchors@gmail.com"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}