Twitter GIFs fullscreener

Twitter GIFs fullscreener

Create fullscreen icon over twitter GIFs post to allows toggle full screen mode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitter GIFs fullscreener",
  "description": "Create fullscreen icon over twitter GIFs post to allows toggle full screen mode",
  "version": "1.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/16.png",
    "32": "/images/32.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  }
}