Threads Video Downloader - Threadster

Download Threads videos and images using Threadster.

Threads Video Downloader - Threadster란 무엇입니까?

Threads Video Downloader - Threadster은(는) https://threadster.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download Threads videos and images using Threadster."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Threads Video Downloader - Threadster 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Threadster is an online tool to download videos and images from Threads. The Threadster extension makes it extremely easy to download media from the Threads.net website.

A Download button will appear below every Thread containing media. Clicking on the Download button will take you straight to the download page where you can download any media from that particular Thread including images and videos.                    

확장 프로그램 기본 정보

이름 Threads Video Downloader - Threadster Threads Video Downloader - Threadster
ID dbapeonhbhkmajmjgpcmlikkjnhbbncm
공식 URL https://chromewebstore.google.com/detail/threads-video-downloader/dbapeonhbhkmajmjgpcmlikkjnhbbncm
설명 Download Threads videos and images using Threadster.
파일 크기 54.75 KB
설치 횟수 252
현재 버전 1.1.1
최근 업데이트 2023-08-26
출시 날짜 2023-07-17
평점 5.00/5 총 8 개의 평점
개발자 https://threadster.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://threadster.app
도움말 페이지 URL https://threadster.app/contact-us
개인정보 보호 정책 페이지 URL https://aculix.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.1",
    "description": "Download Threads videos and images using Threadster.",
    "name": "Threads Video Downloader - Threadster",
    "manifest_version": 3,
    "icons": {
        "16": "src\/icons\/icon-16.png",
        "32": "src\/icons\/icon-32.png",
        "48": "src\/icons\/icon-48.png",
        "128": "src\/icons\/icon-128.png"
    },
    "action": {
        "default_popup": "src\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.threads.net\/*"
            ],
            "js": [
                "src\/jquery.js",
                "src\/index.js"
            ],
            "css": [
                "src\/css\/index.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/index.js"
            ],
            "matches": [
                "*:\/\/*.threads.net\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.threads.net\/*"
    ]
}