Video Downloader for TikTok
Download tiktok.com's videos with a single click or by right-clicking on the video elements
Video Downloader for TikTok란 무엇입니까?
Video Downloader for TikTok은(는) chandler.stimson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download tiktok.com's videos with a single click or by right-clicking on the video elements"입니다.
확장 프로그램 스크린샷
Video Downloader for TikTok 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to download video streams from supported hostnames to the local disk. There are two methods you can use to download a video: 1. Right-click on the video element and click "Save Video" (this item appears on the context menu when you have this extension installed) 2. Use the "Download" button next to the video element Supported hostnames: 1. https://www.tiktok.com/* How does it work: Method 1: the extension tries to remove the overlay item that hides the video element so that the native right-click over video element could appear Method 2: the extension tries to find the video element and insert a download button next to it. This method displays the downloading progress. Also, the extension tries to find the correct filename for the media. For bug reports please use https://github.com/chandler-stimson/video-downloader
확장 프로그램 기본 정보
이름 | Video Downloader for TikTok |
ID | endnhjcpnhomfjbloggpapdndhafoeeo |
공식 URL | https://chromewebstore.google.com/detail/video-downloader-for-tikt/endnhjcpnhomfjbloggpapdndhafoeeo |
설명 | Download tiktok.com's videos with a single click or by right-clicking on the video elements |
파일 크기 | 28.7 KB |
설치 횟수 | 408 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2022-01-06 |
출시 날짜 | 2022-01-05 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | chandler.stimson |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/chandler-stimson/video-downloader |
도움말 페이지 URL | https://github.com/chandler-stimson/video-downloader |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Downloader for TikTok", "description": "Download tiktok.com's videos with a single click or by right-clicking on the video elements", "version": "0.1.1", "manifest_version": 3, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "homepage_url": "https:\/\/add0n.com\/video-downloader.html", "permissions": [ "storage" ], "optional_permissions": [ "downloads" ], "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.tiktok.com\/*" ], "js": [ "data\/inject\/mouse.js", "data\/inject\/button.js" ], "css": [ "data\/inject\/button.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "data\/inject\/button.svg" ], "matches": [ "*:\/\/www.tiktok.com\/*" ] } ] } |