Comic Downloader
This plugin was created to download comics and convert them to pdf
ما هو Comic Downloader؟
Comic Downloader هو إضافة Chrome تم تطويرها بواسطة Quizmo، والميزة الرئيسية لها هي "This plugin was created to download comics and convert them to pdf".
تحميل ملف CRX للإضافة Comic Downloader
قم بتنزيل ملفات الامتداد Comic Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This plugin will convert the images from the website http://readcomiconline.to/ and convert them into a pdf for offline reading.. This was created for personal use, and only uploaded to the Chrome Webshop to stop Chrome from removing it when restarting Chrome. Icon created by Sagar Unagar under the licens Attribution 3.0
معلومات أساسية عن التمديد
الاسم | |
ID | goofdkpiolidkahcmobnhkpeojceehoh |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/comic-downloader/goofdkpiolidkahcmobnhkpeojceehoh |
الوصف | This plugin was created to download comics and convert them to pdf |
حجم الملف | 119 KB |
عدد التثبيتات | 272 |
النسخة الحالية | 1.0 |
آخر تحديث | 2017-05-19 |
تاريخ النشر | 2017-05-19 |
تقييم | 1.91/5 مجموع تقييمات 11 |
المطور | Quizmo |
نوع الدفع | free |
موقع الإضافة | https://github.com/Quizmo/ComicDownload/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Comic Downloader", "description": "This plugin was created to download comics and convert them to pdf", "version": "1.0", "author": "Quizmo", "icons": { "16": "css\/icon\/icon16.png", "48": "css\/icon\/icon48.png", "128": "css\/icon\/icon128.png" }, "browser_action": { "default_icon": "css\/icon\/icon16.png" }, "content_scripts": [ { "matches": [ "http:\/\/readcomiconline.to\/*", "http:\/\/*.blogspot.com\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/FileSaver.min.js", "js\/lib\/jspdf.min.js", "js\/content.js" ], "css": [ "css\/style.css" ] } ], "web_accessible_resources": [ "js\/lib\/content.js" ], "permissions": [ "activeTab", "downloads", "https:\/\/ajax.googleapis.com\/", "tabs", "http:\/\/readcomiconline.to\/*", "http:\/\/*.blogspot.com\/*" ] } |