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은(는) Applications Makers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Twitter Video Downloader allows you to download twitter videos but also copy easyly their shareable link."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitter Video Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}