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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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