Send to Telegram for Google Chrome

Send to Telegram for Google Chrome

Send to Telegram for Google Chrome, with your own key and token.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Send to Telegram for Google Chrome",
  "version": "0.0.0.2",
  "description": "Send to Telegram for Google Chrome, with your own key and token.",
  "browser_action": {
    "default_icon": "tg.png",
    "default_title": "Push this page!"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "128": "tg.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "manifest_version": 2
}