send content to Telegram
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Malina",
"version": "1.0",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net https://fonts.googleapis.com;"
},
"description": "send content to Telegram",
"permissions": [
"storage",
"contextMenus",
"activeTab"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"128": "128.png"
},
"background": {
"service_worker": "background/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content/contentScript.js",
"content/contentScriptGif.js"
]
}
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
}
}
}