TikTok Download Buttons
Adds download buttons to TikTok videos
TikTok Download Buttons란 무엇입니까?
TikTok Download Buttons은(는) emy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds download buttons to TikTok videos"입니다.
확장 프로그램 스크린샷
TikTok Download Buttons 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
After installing this addon, there will be download buttons on every TikTok video, allowing for easy downloading of videos. This addon has support for attempting to download non-watermarked videos. In cases where this doesn't work or the user decides not to use it, it'll download the regular, watermarked videos instead. Please keep in mind that TikTok's website is being updated fairly regularly, therefore the addon may not work all the time, but keeping it updated is a priority.
확장 프로그램 기본 정보
이름 | TikTok Download Buttons |
ID | kcnchleajedobajlpgkcinfcdmdnfejd |
공식 URL | https://chromewebstore.google.com/detail/tiktok-download-buttons/kcnchleajedobajlpgkcinfcdmdnfejd |
설명 | Adds download buttons to TikTok videos |
파일 크기 | 34.19 KB |
설치 횟수 | 7,000 |
현재 버전 | 1.1.5 |
최근 업데이트 | 2023-07-31 |
출시 날짜 | 2022-01-10 |
평점 | 4.48/5 총 29 개의 평점 |
개발자 | emy |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sixem/tiktok-download-buttons |
도움말 페이지 URL | https://github.com/sixem/tiktok-download-buttons |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TikTok Download Buttons", "description": "Adds download buttons to TikTok videos", "author": "emy", "manifest_version": 3, "version": "1.1.5", "homepage_url": "https:\/\/github.com\/sixem\/tiktok-download-buttons", "icons": { "48": "48.png", "128": "128.png" }, "action": { "default_popup": "popup.html" }, "background": { "service_worker": "service.js" }, "content_scripts": [ { "matches": [ "https:\/\/tiktok.com\/*", "https:\/\/www.tiktok.com\/*" ], "js": [ "main.js" ], "css": [ "main.css" ], "run_at": "document_idle" } ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "ruleset.json" } ] }, "permissions": [ "downloads", "storage", "declarativeNetRequestWithHostAccess" ], "host_permissions": [ "*:\/\/*.tiktok.com\/*", "https:\/\/tiktok.com\/*", "https:\/\/*.tiktokcdn.com\/*", "https:\/\/*.tiktokv.com\/*" ] } |