Tweetdeck HTML Button Extension

Tweetdeck HTML Button Extension

This is tweetdeck extension . Inject Tag Button to add List Embed HTML

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tweetdeck HTML Button Extension",
  "short_name": "THBE",
  "version": "2.0.0.0",
  "description": "This is tweetdeck extension . Inject Tag Button to add List Embed HTML",
  "browser_action": {
    "default_icon": {
      "16": "twd16.png",
      "48": "twd48.png",
      "128": "twd128.png"
    },
    "default_title": "HTML Button",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://tweetdeck.twitter.com/*"
      ],
      "js": [
        "vender.js",
        "main.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "https://api.twitter.com/*"
  ]
}