Twitter Relationships

Twitter Relationships

Updates twitter to both see and search your past tweets with another account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitter Relationships",
  "version": "3",
  "manifest_version": 2,
  "description": "Updates twitter to both see and search your past tweets with another account.",
  "icons": {
    "16": "favicon.ico",
    "48": "favicon.ico",
    "128": "favicon.ico"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "inject_results.js"
      ],
      "css": [
        "inject_results.css"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}