Twitter image URL changer

Changes twitter images URLs that you open in the new tabs so that it displays the best image quality possible
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "twitter-img-url-changer",
  "version": "1.0",
  "description": "Changes GET request for twitter images to request the best image quality possible",
  "content_scripts": [
    {
      "matches": [
        "https://pbs.twimg.com/media/*name=*"
      ],
      "js": [
        "changer.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{78f22731-fc47-406b-b22c-a4f301bb7324}"
    }
  }
}