imgur Uploader

imgur Uploader

Right-click uploading of images and screenshots anonymously or to your imgur account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "imgur Uploader",
  "description": "Right-click uploading of images and screenshots anonymously or to your imgur account.",
  "version": "2.4.1",
  "icons": {
    "16": "img/logo_16.png",
    "48": "img/logo_48.png",
    "128": "img/logo.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "notifications",
    "storage",
    "scripting"
  ],
  "optional_permissions": [
    "clipboardWrite"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    {
      "resources": [
        "options.html"
      ],
      "matches": [
        "https://api.imgur.com/*"
      ]
    }
  ]
}