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'" } |