AO3 tag downloader
Allows archiving the contents of a tag or search results from archiveofourown.org.
AO3 tag downloaderคืออะไร?
AO3 tag downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lastontheboat.hooray และคุณลักษณะหลักของมันคือ "Allows archiving the contents of a tag or search results from archiveofourown.org."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AO3 tag downloader
ดาวน์โหลดไฟล์ส่วนขยาย AO3 tag downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension automatically downloads every work included in a tag or search results in one of the supported AO3 download formats. It respects AO3's rate limits and when throttling occurs it will automatically resume once the throttling period is complete.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | AO3 tag downloader |
ID | icnoenhdioekejbbagnpamaafihdiaee |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ao3-tag-downloader/icnoenhdioekejbbagnpamaafihdiaee |
คำอธิบาย | Allows archiving the contents of a tag or search results from archiveofourown.org. |
ขนาดไฟล์ | 34.87 KB |
จำนวนการติดตั้ง | 39 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2023-01-09 |
วันที่เผยแพร่ | 2022-12-26 |
ผู้พัฒนา | lastontheboat.hooray |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jdm/archiveofmyown/ |
URL หน้าช่วยเหลือ | https://github.com/jdm/archiveofmyown/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AO3 tag downloader", "version": "1.1", "description": "Allows archiving the contents of a tag or search results from archiveofourown.org.", "icons": { "48": "icon1.png" }, "browser_specific_settings": { "gecko": { "id": "[email protected]" } }, "permissions": [ "activeTab", "downloads", "storage", "alarms", "scripting" ], "firefox_background": { "scripts": [ "background.js" ] }, "background": { "service_worker": "background.js" }, "action": { "browser_style": true, "default_icon": { "19": "icon1.png", "38": "icon1.png" }, "default_popup": "archive.html", "show_matches": [ "https:\/\/archiveofourown.org\/tags\/*", "https:\/\/archiveofourown.org\/works*" ] } } |