Inspect and view changes in Twideo 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
{
"name": "Twideo",
"version": "1.0",
"manifest_version": 3,
"author": "focrs@outlook.com",
"description": "推特视频嗅探下载助手",
"icons": {
"48": "asset/image/logo.png"
},
"action": {
"default_popup": "page/index/view.html"
},
"permissions": [
"tabs",
"activeTab",
"downloads",
"webRequest"
],
"host_permissions": [
"https://*.twitter.com/*",
"https://*.twitterfk.com/*",
"https://video.twimg.com/*",
"https://downloader.twdown.online/*"
],
"optional_host_permissions": [],
"background": {
"service_worker": "./daemon.js",
"type": "module",
"persist": true
},
"content_scripts": [
{
"matches": [
"https://*.twitter.com/*",
"https://*.twitterfk.com/*",
"https://downloader.twdown.online/*"
],
"js": [
"asset/js/zepto.js",
"asset/js/inject.js"
],
"css": [
"asset/css/app.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"asset/image/icon.png",
"asset/image/logo.png"
],
"matches": [
"https://*/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}