JapScan_PageSaver
Extension for Save Chapter and Page of Current Manga you read
Что такое JapScan_PageSaver?
JapScan_PageSaver - это расширение Chrome, разработанное bastien boymond, и его основная функция - "Extension for Save Chapter and Page of Current Manga you read".
Снимки экрана расширения
Скачать файл CRX расширения JapScan_PageSaver
Скачайте файлы расширений JapScan_PageSaver в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Cette extension est conçue pour le site JapScan.lol et offre de nombreuses fonctionnalités, notamment : • Accès rapide aux mangas déjà lus • Notification des nouveaux chapitres à mesure qu'ils sortent • Barre de recherche pour retrouver facilement vos lectures • Fonction d'auto-scroll pour une expérience de lecture fluide • Mode sombre pour une lecture confortable en basse lumière • Lien vers Anilist dans la fenêtre pop-up • Mise à jour automatique de l'avancement des chapitres sur Anilist lorsque vous ajoutez des mangas à votre liste • Statistiques du site • Import et export de list N'hésitez pas à nous contacter si vous avez besoin d'aide !
Основная информация о расширении
Название | JapScan_PageSaver |
ID | oennheijilebmieelbahckofblcgkljn |
Официальный URL | https://chromewebstore.google.com/detail/japscanpagesaver/oennheijilebmieelbahckofblcgkljn |
Описание | Extension for Save Chapter and Page of Current Manga you read |
Размер файла | 1.23 MB |
Количество установок | 109 |
Текущая Версия | 3.570 |
Последнее Обновление | 2023-06-26 |
Дата публикации | 2021-09-01 |
Рейтинг | 5.00/5 Всего 9 оценок |
Разработчик | bastien boymond |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/BastienBoymond/JapScan-PageSaver |
URL страницы помощи | https://github.com/BastienBoymond/JapScan-PageSaver/issues |
Поддерживаемые языки | fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "JapScan_PageSaver", "description": "Extension for Save Chapter and Page of Current Manga you read", "version": "3.570", "permissions": [ "storage", "downloads" ], "host_permissions": [ "http:\/\/141.94.68.137:3900\/*", "http:\/\/141.94.68.137:2900\/*", "https:\/\/anilist.co\/*", "http:\/\/141.94.68.137:3900\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.japscan.lol\/", "https:\/\/www.japscan.lol\/*" ], "js": [ "index.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": "assets\/japscan.png", "default_popup": "popup\/home\/popup.html", "default_title": "JapScan Saver" }, "icons": { "16": "assets\/japscan.png", "48": "assets\/japscan.png", "128": "assets\/japscan.png" } } |