Twitter Video Downloader
Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link.
什麼是Twitter Video Downloader?
Twitter Video Downloader是由Applications Makers開發的Chrome擴展程式,該擴展的主要功能是“Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link.”。
擴展截圖
下載Twitter Video Downloader擴展crx文件
下載Twitter Video Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
You will also be able to use the historic of the application which will give you access to a panel of possible actions ! Add the extension, reload your twitter page and enjoy ! ;) (PS: For Brave users, you must disable the brave shield)
擴展基本資訊
名稱 | Twitter Video Downloader |
ID | nlkjkemkonahlpdjffgilcmgpghfphbj |
官方網址 | https://chromewebstore.google.com/detail/twitter-video-downloader/nlkjkemkonahlpdjffgilcmgpghfphbj |
簡介 | Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link. |
檔案大小 | 186 KB |
安裝次數 | 4,000 |
目前版本 | 1.0.7 |
更新時間 | 2023-02-22 |
上架時間 | 2020-04-12 |
評分 | 3.31/5 共 26 次評分 |
開發者 | Applications Makers |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Video Downloader", "description": "Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link.", "short_name": "TVD", "version": "1.0.7", "browser_action": { "default_icon": "assets\/icon16.png", "default_title": "Twitter video downloader history", "default_popup": "index.html" }, "background": { "scripts": [ "browser-polyfill.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "css": [ "styles\/twitter.css" ], "js": [ "browser-polyfill.js", "contentScripts.js" ] } ], "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "storage", "downloads" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |