TikTok Download Buttons
Adds download buttons to TikTok videos
Qu'est-ce que TikTok Download Buttons ?
TikTok Download Buttons est une extension Chrome développée par emy, et sa fonction principale est "Adds download buttons to TikTok videos".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TikTok Download Buttons
Téléchargez les fichiers d'extension TikTok Download Buttons au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | TikTok Download Buttons |
ID | kcnchleajedobajlpgkcinfcdmdnfejd |
URL Officiel | https://chromewebstore.google.com/detail/tiktok-download-buttons/kcnchleajedobajlpgkcinfcdmdnfejd |
Description | Adds download buttons to TikTok videos |
Taille du Fichier | 34.19 KB |
Nombre d'Installations | 7,000 |
Version Actuelle | 1.1.5 |
Dernière Mise à Jour | 2023-07-31 |
Date de Publication | 2022-01-10 |
Évaluation | 4.48/5 Total 29 Évaluations |
Développeur | emy |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sixem/tiktok-download-buttons |
URL de la Page d'Aide | https://github.com/sixem/tiktok-download-buttons |
Langues Prises en Charge | 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\/*" ] } |