My Links

My Links

My Links is a link checker that crawls through your webpage and looks for broken links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "My links",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "48": "icon.png"
    },
    "default_title": "My links"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/CMY_styles.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "My Links is a link checker that crawls through your webpage and looks for broken links.",
  "icons": {
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "My Links",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs",
    "cookies",
    "*://*/*",
    "file:///*"
  ],
  "version": "2.0.1",
  "web_accessible_resources": [
    "options.html"
  ],
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}