Twitter Video Downloader
Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link.
Qu'est-ce que Twitter Video Downloader ?
Twitter Video Downloader est une extension Chrome développée par Applications Makers, et sa fonction principale est "Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitter Video Downloader
Téléchargez les fichiers d'extension Twitter Video Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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)
Informations de Base sur l'Extension
Nom | Twitter Video Downloader |
ID | nlkjkemkonahlpdjffgilcmgpghfphbj |
URL Officiel | https://chromewebstore.google.com/detail/twitter-video-downloader/nlkjkemkonahlpdjffgilcmgpghfphbj |
Description | Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link. |
Taille du Fichier | 186 KB |
Nombre d'Installations | 4,000 |
Version Actuelle | 1.0.7 |
Dernière Mise à Jour | 2023-02-22 |
Date de Publication | 2020-04-12 |
Évaluation | 3.31/5 Total 26 Évaluations |
Développeur | Applications Makers |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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'" } |