Adviger URL Dead-Links Checker

Adviger URL Dead-Links Checker

This extension helps you to save time marking the broken and not found links directly on the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Adviger URL Dead-Links Checker",
  "description": "This extension helps you to save time marking the broken and not found links directly on the page.",
  "version": "0.4",
  "manifest_version": 3,
  "action": {
    "default_popup": "modal.html",
    "default_icon": {
      "16": "assets/images/16.png",
      "32": "assets/images/32.png",
      "48": "assets/images/64.png",
      "128": "assets/images/128.png",
      "256": "assets/images/256.png",
      "512": "assets/images/512.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "assets/css/errors.css"
      ],
      "js": [
        "checkerEngine.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "MacCtrl+Shift+U"
      },
      "description": "Check the links and marks the broken of them"
    }
  },
  "permissions": [
    "scripting"
  ],
  "icons": {
    "16": "assets/images/16.png",
    "32": "assets/images/32.png",
    "48": "assets/images/64.png",
    "128": "assets/images/128.png",
    "256": "assets/images/256.png",
    "512": "assets/images/512.png"
  }
}