PronounBird for Twitter

PronounBird for Twitter

Automatically add people's pronouns next to their name while your browse Twitter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "homepage_url": "https://github.com/GeopJr/PronounBird",
  "version": "1.6.0",
  "manifest_version": 2,
  "default_locale": "en",
  "minimum_chrome_version": "31",
  "permissions": [
    "webRequest",
    "storage",
    "unlimitedStorage",
    "cookies",
    "https://*.twitter.com/*"
  ],
  "icons": {
    "16": "assets/16x16.png",
    "32": "assets/32x32.png",
    "64": "assets/64x64.png",
    "128": "assets/128x128.png",
    "256": "assets/256x256.png",
    "512": "assets/512x512.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "65.0",
      "id": "{a5b8143b-47f9-4ae4-9b63-41885b4dceb9}"
    }
  },
  "incognito": "spanning"
}