Enhancer for Telegram™

Enhancer for Telegram™

Easy access to Telegram web with enhancing and privacy features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.2.6",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "name": "Enhancer for Telegram™",
  "homepage_url": "https://mybrowseraddon.com/telegram-desktop.html",
  "description": "Easy access to Telegram web with enhancing and privacy features.",
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "data/options/options.html"
  },
  "action": {
    "default_title": "Enhancer for Telegram™",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "*://*.web.telegram.org/*"
      ],
      "js": [
        "data/content_script/inject.js"
      ],
      "css": [
        "data/content_script/inject.css"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}