Download Twitter videos

Download videos, gifs, tweet photos, profile pictures, header banners, thumbnails, subtitles, color palettes, tags from Twitter.

Download Twitter videosคืออะไร?

Download Twitter videos เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pbion.com และคุณลักษณะหลักของมันคือ "Download videos, gifs, tweet photos, profile pictures, header banners, thumbnails, subtitles, color palettes, tags from Twitter."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Download Twitter videos

ดาวน์โหลดไฟล์ส่วนขยาย Download Twitter videos ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        [Required: Need create Twitter account and logged]

🚀 HOW DOES THIS TOOL WORK?

After you open this tool, a piece of code will be executed in the current tab. This code is responsible for analyzing the json code and find the id of the tweet currently showing on the screen. Tweets that do not appear in the screen frame are ignored.

After finding the video id, the tool continues to send a request to Twitter to get the json data. The download button will then show up below each tweet and inside the tools window.

Things you can download from each tweet include videos, gifs, every image in the tweet, detachable subtitles. You can view and enlarge avatars and banners with the highest quality. Easily copy palettes and tags in tweets.

Note: This tool only supports downloading files hosted by Twitter. This extension does not grant access to every website, so users cannot download videos from tweets embedded on other websites.


🚀 WHAT CAN THIS TOOL DO?

☀ Download Twitter video with caption.
☀ Download Twitter gif, profile picture, thumbnails and images from Twitter.
☀ Automatically download and save the file according to the title of the video and the selected quality.
☀ Multi language.
☀ Optimized for Android.
☀ Suggest queries.
☀ Generate random keywords.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Download Twitter videos Download Twitter videos
ID gafbfkfkcfogdbcpannaipilhnjbbebd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/download-twitter-videos/gafbfkfkcfogdbcpannaipilhnjbbebd
คำอธิบาย Download videos, gifs, tweet photos, profile pictures, header banners, thumbnails, subtitles, color palettes, tags from Twitter.
ขนาดไฟล์ 292 KB
จำนวนการติดตั้ง 6,281
เวอร์ชันปัจจุบัน 5.0.1
อัปเดตครั้งล่าสุด 2023-12-27
วันที่เผยแพร่ 2020-09-15
คะแนน 3.55/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา https://pbion.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://pbion.com/en/twitter-downloader.html
URL หน้าช่วยเหลือ https://pbion.com/en/twitter-downloader.html#faq
URL หน้านโยบายความเป็นส่วนตัว https://pbion.com/privacy-policy.html
ภาษาที่รองรับ id,ms,de,en,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "5.0.1",
    "author": "pbion.com",
    "homepage_url": "https:\/\/pbion.com\/en\/twitter-downloader.html",
    "default_locale": "en",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "logo\/logo128.png",
        "64": "logo\/logo64.png",
        "48": "logo\/logo48.png",
        "32": "logo\/logo32.png",
        "16": "logo\/logo16.png"
    },
    "action": {
        "default_title": "Download Twitter videos",
        "default_popup": "popup.html",
        "default_icon": {
            "128": "logo\/logo128.png",
            "64": "logo\/logo64.png",
            "48": "logo\/logo48.png",
            "32": "logo\/logo32.png",
            "16": "logo\/logo16.png"
        }
    },
    "permissions": [
        "declarativeNetRequest",
        "declarativeNetRequestFeedback",
        "scripting",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/suggestqueries.google.com\/*",
        "https:\/\/*.pbion.com\/*",
        "https:\/\/*.twitter.com\/*",
        "https:\/\/*.twimg.com\/*",
        "https:\/\/*.video.pscp.tv\/*",
        "https:\/\/t.co\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/pbion.com\/*"
            ],
            "js": [
                "pbion.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "player.css"
            ],
            "run_at": "document_end"
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "twitter",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    }
}