PronounDB

PronounDB

PronounDB is a browser extension that helps people know each other's pronouns easily and instantly. Whether hanging out on a Twitch chat, or on any of the supported platforms, PronounDB will make your life easier.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "PronounDB",
  "description": "A browser extension that lets people know how to refer to each other on various places of the Internet",
  "version": "0.14.5",
  "permissions": [
    "activeTab",
    "storage",
    "https://*.pronoundb.org/*"
  ],
  "content_security_policy": "default-src 'self'; connect-src https://pronoundb.org;",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "assets/wrapper-BC0k-UOX.js"
      ],
      "matches": [
        "https://*.discord.com/*",
        "https://*.github.com/*",
        "https://*.modrinth.com/*",
        "https://*.twitch.tv/*",
        "https://*.twitter.com/*",
        "https://*.x.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "default_popup": "popup.html"
  }
}