Twitter video downloader

Download twitter videos in best quality with one simple click

Hvad er Twitter video downloader?

Twitter video downloader er en Chrome-udvidelse udviklet af mstfsnc, og dens hovedfunktion er "Download twitter videos in best quality with one simple click".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Twitter video downloader-udvidelses-CRX-fil

Download Twitter video downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        1 - After installation, you will see a download icon under every tweet, which contains a video.
2 - Simply press download icon.
3 - Video will be downloaded when loading complete.                    

Grundlæggende oplysninger om udvidelsen

Navn Twitter video downloader Twitter video downloader
ID akmdionenlnfcipmdhbhcnkighafmdha
Officiel URL https://chromewebstore.google.com/detail/twitter-video-downloader/akmdionenlnfcipmdhbhcnkighafmdha
Beskrivelse Download twitter videos in best quality with one simple click
Filstørrelse 21.08 KB
Antal Installationer 33,270
Nuværende Version 2.17.1
Senest Opdateret 2024-03-05
Udgivelsesdato 2020-07-22
Bedømmelse 4.55/5 Samlet 128 Bedømmelser
Udvikler mstfsnc
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/mstfsnc/twitter-video-downloader
Hjælpeside-URL https://github.com/mstfsnc/twitter-video-downloader/issues
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.17.1",
    "description": "Download twitter videos in best quality with one simple click",
    "name": "Twitter video downloader",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.x.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.x.com\/*"
            ]
        }
    ]
}