Twitter Video Downloader
Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link.
Cos'è Twitter Video Downloader?
Twitter Video Downloader è un'estensione di Chrome sviluppata da Applications Makers, e la sua funzione principale è "Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Video Downloader
Scarica i file di estensione Twitter Video Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | Twitter Video Downloader |
ID | nlkjkemkonahlpdjffgilcmgpghfphbj |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-video-downloader/nlkjkemkonahlpdjffgilcmgpghfphbj |
Descrizione | Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link. |
Dimensione del File | 186 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 1.0.7 |
Ultimo Aggiornamento | 2023-02-22 |
Data di Pubblicazione | 2020-04-12 |
Valutazione | 3.31/5 Totale 26 Valutazioni |
Sviluppatore | Applications Makers |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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'" } |