Fantia downloader
This extension is Modified from Fantia-Downloader-tampermonkey.
Fantia downloaderคืออะไร?
Fantia downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Suzumiyahifumi และคุณลักษณะหลักของมันคือ "This extension is Modified from Fantia-Downloader-tampermonkey."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fantia downloader
ดาวน์โหลดไฟล์ส่วนขยาย Fantia downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
# Fantia-Downloader-tampermonkey (Fantia-DL)
This script will add a download button to the Fanita Image Box for downloading whole image in a ZIP file.
++ This extension is Modified from " Fantia-Downloader-tampermonkey ++
# source code:
https://github.com/suzumiyahifumi/Fantia-Downloader-tampermonkey
# Userscript version:
https://greasyfork.org/zh-TW/scripts/423306-fantia-downloader
* Use userscript version can get the fastest update and debug!
++ Any users who have not updated to version 2.5.4 or later must update! ++
#### NEW Version v3.1
* Support download image from post and blog area.
* Support Firefox, Google Chrome, Edge.
* Support English, 日本語 and 中文.
* Support download in BackNumber pages.
* Support set the format of download file Name by yourself.
* Support save setting with Cookie.
* Support single image post download.
* Support single zip download and unZip download.
#### Update Log
* 3.1.7 修正BackNumber分頁腳本載入錯誤;修正單一圖片無法下載問題
* 3.1.6 修正腳本載入錯誤
* 3.1.4 修正 csrf token
* 3.1 支援更多種類的圖片下載
* Preserve modified time stamp from server.
* 日本語メニューの一部の文言を一般的な日本語に変更!
* 修正 "一般公開" 類型商品無法下載問題。
* 支援 BackNumber分頁下載 / Support download in BackNumber pages
* 尚未更新至 2.5.4以後的使用者請一定要更新。
* 更新後可以手動刪除 fantia 的 Cookie 一次。
* 2.7.7 與 2.6 所有功能與Cookie功能沒有變化,僅修改程式架構,部分功能模組化,提升下載速度
* 2.7 在最新的BackNumber分頁下載有問題,已經修正! ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | cfkejojncmolgahkabegcdbcbmnghhcp |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fantia-downloader/cfkejojncmolgahkabegcdbcbmnghhcp |
| คำอธิบาย | This extension is Modified from Fantia-Downloader-tampermonkey. |
| ขนาดไฟล์ | 137 KB |
| จำนวนการติดตั้ง | 12,038 |
| เวอร์ชันปัจจุบัน | 3.1.7 |
| อัปเดตครั้งล่าสุด | 2024-01-25 |
| วันที่เผยแพร่ | 2021-06-06 |
| คะแนน | 3.88/5 รวมทั้งหมด 32 คะแนน |
| ผู้พัฒนา | Suzumiyahifumi |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/suzumiyahifumi/Fantia-Downloader-tampermonkey |
| ภาษาที่รองรับ | en,zh-CN,zh-TW,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "3.1.7",
"description": "__MSG_appDesc__",
"default_locale": "en",
"manifest_version": 3,
"author": "suzumiyahifumi",
"icons": {
"64": "icon_64.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/fantia.jp\/posts\/*",
"https:\/\/fantia.jp\/fanclubs\/*\/backnumbers*"
],
"js": [
"inject.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"FantiaDownloader.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
},
{
"resources": [
"jquery-3.4.1.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
},
{
"resources": [
"jszip.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
]
} | |