TwitEmbed

TwitEmbed

Minimal extension that allows you to share embedded versions of tweets directly from your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.3",
  "description": "Minimal extension that allows you to share embedded versions of tweets directly from your browser.",
  "name": "TwitEmbed",
  "icons": {
    "48": "icons/border-48.png",
    "96": "icons/border-96.png",
    "128": "icons/border-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*",
        "*://*.x.com/*"
      ],
      "js": [
        "twitterembed.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "*://*.twitter.com/*",
    "*://*.x.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{daf60720-ff10-4584-a7b7-49ec1b8e34c0}"
    }
  }
}