Discord Image Inspector

Discord Image Inspector

Hover over images on Discord to view them!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Discord Image Inspector",
  "version": "1.12",
  "description": "Hover over images on Discord to view them!",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://discordapp.com/*",
        "http://discordapp.com/*"
      ],
      "js": [
        "core.js",
        "js/tippy.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/sawa_16.png",
      "32": "images/sawa_32.png",
      "48": "images/sawa_48.png",
      "128": "images/sawa_128.png"
    }
  },
  "icons": {
    "16": "images/sawa_16.png",
    "32": "images/sawa_32.png",
    "48": "images/sawa_48.png",
    "128": "images/sawa_128.png"
  },
  "manifest_version": 2
}