TikTok Download Buttons
Adds download buttons to TikTok videos
ما هو TikTok Download Buttons؟
TikTok Download Buttons هو إضافة Chrome تم تطويرها بواسطة emy، والميزة الرئيسية لها هي "Adds download buttons to TikTok videos".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TikTok Download Buttons
قم بتنزيل ملفات الامتداد TikTok Download Buttons بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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\/*" ] } |