Capture My Tweet 🐦

Capture My Tweet 🐦

Extension for Capture My tweet (https://cmt.itsvg.in)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Capture My Tweet 🐦",
  "version": "1.0",
  "description": "Extension for Capture My tweet (https://cmt.itsvg.in)",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "assets/logo.png",
      "24": "assets/logo.png",
      "32": "assets/logo.png"
    },
    "default_title": "Capture My Tweet 🐦"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "btn.png",
        "logo.png"
      ],
      "matches": [
        "https://*.twitter.com/*"
      ]
    }
  ]
}