Download Twitter videos in best quality with one simple click.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_name__",
"description": "__MSG_desc__",
"manifest_version": 3,
"default_locale": "en_US",
"version": "1.0.2",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Twitter Video Downloader"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*://*.twitter.com/*"
],
"js": [
"inject.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content-script.js"
],
"matches": [
"*://*.twitter.com/*"
]
}
],
"host_permissions": [
"*://*.twitter.com/*"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}