Webtoon to PDF
Converts webtoon pages to PDFs
ما هو Webtoon to PDF؟
Webtoon to PDF هو إضافة Chrome تم تطويرها بواسطة dontaskwhy، والميزة الرئيسية لها هي "Converts webtoon pages to PDFs".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Webtoon to PDF
قم بتنزيل ملفات الامتداد Webtoon to PDF بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Converts webtoons from comic.naver.com into pdf files for quick and easy offline reading
معلومات أساسية عن التمديد
الاسم | Webtoon to PDF |
ID | ohchlfahbejfldhnniiccfehipehfchf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/webtoon-to-pdf/ohchlfahbejfldhnniiccfehipehfchf |
الوصف | Converts webtoon pages to PDFs |
حجم الملف | 127 KB |
عدد التثبيتات | 605 |
النسخة الحالية | 0.1 |
آخر تحديث | 2022-04-29 |
تاريخ النشر | 2022-04-29 |
تقييم | 1.00/5 مجموع تقييمات 2 |
المطور | dontaskwhy |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Fox-Islam/webtoon-to-pdf |
عنوان صفحة المساعدة | https://github.com/Fox-Islam/webtoon-to-pdf |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Webtoon to PDF", "description": "Converts webtoon pages to PDFs", "version": "0.1", "manifest_version": 3, "permissions": [ "activeTab" ], "host_permissions": [ "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/comic.naver.com\/webtoon\/*" ], "js": [ "content-script.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "128": "\/images\/icon-128.png" } }, "icons": { "128": "\/images\/icon-128.png" } } |