Inspect and view changes in Telegram Web Link Handler source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Telegram Link Handler",
"version": "0.1",
"description": "Opens t.me Telegram links in the Telegram web client.\n Limitations: supported only K version of Web client;",
"permissions": [
"tabs",
"activeTab",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*://web.telegram.org/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "icons/icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "{2d252977-6aa4-497b-909e-6cdc72ea0807}"
}
}
}