Examine source code of Automatic Media Selection Integration

Inspect and view changes in Automatic Media Selection Integration source codes across current and past versions
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": "Automatic Media Selection Integration",
  "version": "2.4.1",
  "description": "Automatically gets the largest size image and video from supported websites",
  "content_scripts": [
    {
      "matches": [
        "*://*.pbs.twimg.com/*png*",
        "*://*.pbs.twimg.com/*jpg*",
        "*://*.twimg.com/*",
        "*://*.ytimg.com/vi/*/*.jpg*"
      ],
      "js": [
        "main.js",
        "amsi.js"
      ]
    },
    {
      "matches": [
        "*://*.twitter.com/*/status/*",
        "*://*.x.com/*/status/*"
      ],
      "js": [
        "main.js",
        "twitter.js"
      ]
    },
    {
      "matches": [
        "*://*.tiktok.com/*/video/*"
      ],
      "js": [
        "main.js",
        "tiktok.js"
      ]
    },
    {
      "matches": [
        "*://*.instagram.com/p/*"
      ],
      "js": [
        "main.js",
        "instagram.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "https://twitter.com/*",
    "https://api.twitter.com/*",
    "https://abs.twimg.com/*",
    "https://x.com/*",
    "https://api.x.com/*"
  ],
  "browser_action": {
    "default_popup": "twitter_api.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{0dd0d663-c42f-4f53-bbdb-8f152833fa95}"
    }
  }
}