WhoToFollow

WhoToFollow

Simple extension for showing number of following/followers of actual user on twitter page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "128": "images/128x128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/followers",
        "https://twitter.com/following",
        "https://twitter.com/*/followers",
        "https://twitter.com/*/following"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.gif"
  ],
  "permissions": [
    "storage"
  ],
  "author": "jCobbSK"
}