Twitter video downloader

Twitter video downloader is an extension for downloading videos from Twitter

Что такое Twitter video downloader?

Twitter video downloader - это расширение Chrome, разработанное Easy Download, и его основная функция - "Twitter video downloader is an extension for downloading videos from Twitter".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Twitter video downloader

Скачайте файлы расширений Twitter video downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        How to use:
Go to the Twitter website and find Twitter video
Click on Download button
Select video quality to download

Why this Twitter video downloader?
Unlimited downloads
No ads
No sponsored  links
Completely free
Download instantly at your highest speed
Works on multiple operating systems (Windows, Mac OS and Linux)
No need to install additional software

Please be careful not to download too many videos at once, because Twitter can block you temporarily because of too many downloads (about five minutes).

IMPORTANT: 
The extension doesn't collect browsing history. To send information from the background script to the content_scripts Twitter video downloader needs the tabs permission which triggers the warning for the browsing history.


Is Twitter video downloader legal?

Yes, as long as you download the video for your personal offline use, you probably won't do anything illegal. However, if you want to share them in the community or for commercial use, you will need the author's consent.

Disclaimer: Twitter video downloader is not an official plugin. Twitter™ is a trademark of Twitter Inc.                    

Основная информация о расширении

Название Twitter video downloader Twitter video downloader
ID ncknaobecnibkpanffkegnkmilafnofh
Официальный URL https://chromewebstore.google.com/detail/twitter-video-downloader/ncknaobecnibkpanffkegnkmilafnofh
Описание Twitter video downloader is an extension for downloading videos from Twitter
Размер файла 43.76 KB
Количество установок 79,440
Текущая Версия 1.0.0.4
Последнее Обновление 2023-09-15
Дата публикации 2022-08-19
Рейтинг 3.67/5 Всего 46 оценок
Разработчик Easy Download
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://bit.ly/3C1Kiy6
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "images\/icon-16.png",
        "default_title": "__MSG_appButtonDesc__"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/download.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "js\/script.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_start",
            "world": "MAIN"
        }
    ],
    "content_security_policy": {
        "sandbox": "sandbox allow-forms allow-scripts; script-src 'self' 'unsafe-eval'; script-src-elem 'self'  blob: 'unsafe-inline' 'unsafe-eval'; child-src 'self'; object-src 'self'"
    },
    "default_locale": "en",
    "description": "__MSG_appDesc__",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "images\/icon-128.png",
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png"
    },
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "permissions": [
        "storage",
        "downloads",
        "tabs",
        "cookies",
        "unlimitedStorage",
        "scripting",
        "webRequest",
        "declarativeNetRequestWithHostAccess"
    ],
    "sandbox": {
        "pages": [
            "js\/sandbox.html"
        ]
    },
    "version": "1.0.0.4",
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "js\/sandbox.html"
            ],
            "use_dynamic_url": true
        }
    ]
}