Display Image List

Display Image List

Lists the images displayed on the page in thumbnail format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "From E",
  "name": "Display Image List",
  "description": "__MSG_ExtensionsDescription__",
  "version": "0.31.0",
  "minimum_chrome_version": "98.0",
  "default_locale": "en",
  "icons": {
    "32": "src/img/icon_32.png",
    "48": "src/img/icon_48.png",
    "128": "src/img/icon_128.png"
  },
  "action": {
    "default_icon": {
      "32": "src/img/icon_32.png",
      "48": "src/img/icon_48.png",
      "128": "src/img/icon_128.png"
    },
    "default_title": "__MSG_ExtensionsDescriptionHoverButton__"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "contextMenus",
    "clipboardWrite",
    "scripting"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'self' 'unsafe-inline' 'unsafe-eval'"
  },
  "sandbox": {
    "pages": [
      "src/html/sandbox/sandbox.html"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/img/*.svg",
        "src/html/sandbox/sandbox.html",
        "src/html/sandbox/sandbox.js"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/define.js",
        "assets/ModalDialog.js",
        "assets/content_scripts.js.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content_scripts.js-loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "src/css/style.css"
      ]
    }
  ],
  "options_page": "src/html/options/options.html",
  "commands": {
    "_execute_action": {},
    "Display Image List, Action": {
      "description": "Run, Display Image List",
      "suggested_key": {
        "default": "Alt+Shift+D"
      }
    },
    "Display Image List, Action in All Tabs": {
      "description": "Run in All Tabs",
      "suggested_key": {
        "default": "Alt+Shift+M"
      }
    },
    "Display Image List, No Filtering": {
      "description": "No Filtering",
      "suggested_key": {
        "default": "Alt+Shift+F"
      }
    },
    "Display Image List, Display in New Tab": {
      "description": "Display in New Tab",
      "suggested_key": {
        "default": "Alt+Shift+N"
      }
    },
    "Display Image List, Rotate File Extension": {
      "description": "Rotate File Extension"
    }
  }
}