Comic Downloader
This plugin was created to download comics and convert them to pdf
Comic Downloaderとは何ですか?
Comic DownloaderはQuizmoによって開発されたChromeの拡張機能で、その主な機能は「This plugin was created to download comics and convert them to pdf」です。
Comic Downloader拡張機能のCRXファイルをダウンロード
Comic Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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\/*" ] } |