Tiktok-Scraper
This extension scrapes a Tiktok web page and either downloads a file or sends a POST.
ما هو Tiktok-Scraper؟
Tiktok-Scraper هو إضافة Chrome تم تطويرها بواسطة silverbirder، والميزة الرئيسية لها هي "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tiktok-Scraper
قم بتنزيل ملفات الامتداد Tiktok-Scraper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This Chrome extension allows you to scrape information from TikTok web pages and download or POST it. Tip: * The scraping domain is www.tiktok.com. * You can set the POST destination as you like. Note: Make sure you run it with chrome incognito! This is because it will not work under the influence of other chrome exteions.
معلومات أساسية عن التمديد
الاسم | |
ID | ghnpllcbadkobhhidgbbffglnhjhfkje |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/tiktok-scraper/ghnpllcbadkobhhidgbbffglnhjhfkje |
الوصف | This extension scrapes a Tiktok web page and either downloads a file or sends a POST. |
حجم الملف | 14.87 KB |
عدد التثبيتات | 637 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2023-01-01 |
تاريخ النشر | 2022-01-25 |
تقييم | 1.00/5 مجموع تقييمات 3 |
المطور | silverbirder |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Silver-birder/chrome-extensions-tiktok-scraping-downloader |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiktok-Scraper", "description": "This extension scrapes a Tiktok web page and either downloads a file or sends a POST.", "version": "0.0.1", "manifest_version": 3, "icons": { "16": ".\/icons\/favicon-16x16.png", "48": ".\/icons\/favicon-16x16.png", "128": ".\/icons\/favicon-16x16.png" }, "permissions": [ "tabs", "storage", "downloads" ], "content_scripts": [ { "matches": [ "https:\/\/*.tiktok.com\/*" ], "js": [ "content-script.js" ] } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "web_accessible_resources.js" ], "matches": [ "https:\/\/*.tiktok.com\/*" ] } ], "options_page": "options.html", "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/icons\/favicon-16x16.png", "48": ".\/icons\/favicon-16x16.png", "128": ".\/icons\/favicon-16x16.png" } }, "devtools_page": "devtools.html" } |