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.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου 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 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'"
}