Right-Click Borescope

Right-Click Borescope

List all images under your cursor, even ones hidden by other elements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Right-Click Borescope",
  "version": "0.0.4",
  "description": "List all images under your cursor, even ones hidden by other elements",
  "permissions": [
    "contextMenus"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "client.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{1772ab92-844c-4a81-9804-89e4fffa5054}"
    }
  }
}