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ファイルをダウンロード
TikTok Download Buttons拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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\/*" ] } |