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 |
公式URL | 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 |
Eメール | [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'" } |