Extended Twitter Profile Information

Extended Twitter Profile Information

Show Twitter user profile information on the top of the tweet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.1.0",
  "default_locale": "en",
  "manifest_version": 2,
  "homepage_url": "https://github.com/gedro/ExtendedTwitterProfileInformation",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "*://*.twitter.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/js/extended_twitter_profile_info.js"
      ],
      "css": [
        "src/inject/css/extended_twitter_profile_info.css"
      ]
    }
  ]
}