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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Applications Makers และคุณลักษณะหลักของมันคือ "Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Video Downloader
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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'" } |