Telegram Web Hashtags

Telegram Web Hashtags

Extension that adds the ability to create a hashtag from words

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Telegram Web Hashtags",
  "version": "1.4.1",
  "description": "Extension that adds the ability to create a hashtag from words",
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_icon": "assets/img/teleHash.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "assets/img/teleHash.png",
    "48": "assets/img/teleHash.png",
    "128": "assets/img/teleHash.png"
  },
  "content_scripts": [
    {
      "css": [
        "hashtag.css"
      ],
      "js": [
        "hashtag.js"
      ],
      "matches": [
        "https://web.telegram.org/*"
      ]
    }
  ],
  "manifest_version": 2
}