Discord Profile Pic Preview

Discord Profile Pic Preview

Discord Profile Pic Preview lets you try out any image as discord profile pic on every size.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Discord Profile Pic Preview",
  "description": "Discord Profile Pic Preview lets you try out any image as discord profile pic on every size.",
  "version": "0.1.1",
  "author": "tobeh",
  "icons": {
    "128": "res/icon.png"
  },
  "browser_action": {
    "default_title": "Replace",
    "default_icon": "res/icon.png",
    "title": "Replace",
    "default_popup": "popup/popup.html"
  },
  "web_accessible_resources": [],
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://discord.com/",
        "*://discord.com/*"
      ],
      "js": [
        "replace.js"
      ]
    }
  ]
}