Teleput - Send to Telegram

Teleput - Send to Telegram

Send any text, link, or an image to your Telegram account via the Teleput bot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Teleput - Send to Telegram",
  "version": "1.0",
  "description": "Send any text, link, or an image to your Telegram account via the Teleput bot.",
  "icons": {
    "48": "teleput-48.png",
    "96": "teleput-96.png"
  },
  "browser_action": {
    "default_icon": "teleput-48.png",
    "default_title": "Send to Telegram",
    "default_popup": "send_url.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}