Webtoon to PDF
Converts webtoon pages to PDFs
什么是Webtoon to PDF?
Webtoon to PDF是由dontaskwhy开发的Chrome扩展程序,该扩展的主要功能是“Converts webtoon pages to PDFs”。
扩展截图
下载Webtoon to PDF扩展crx文件
下载Webtoon to PDF扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Converts webtoons from comic.naver.com into pdf files for quick and easy offline reading 扩展基本信息
| 名称 | |
| 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 |
| 帮助页面URL | 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"
}
} | |