Multiple Twitter Accounts Switcher for Chrome

Multiple Twitter Accounts Switcher for Chrome

Switch between unlimited Twitter accounts on your computer with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.12",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "https://twitter.com/"
  ],
  "browser_action": {
    "default_popup": "window.html"
  },
  "background": {
    "scripts": [
      "js/util.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "css": [
        "css/styles.css"
      ],
      "js": [
        "js/jquery-3.3.1.min.js",
        "js/content.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ],
      "run_at": "document_end"
    }
  ]
}