AO3 tag downloader
Allows archiving the contents of a tag or search results from archiveofourown.org.
AO3 tag downloader là gì?
AO3 tag downloader là một tiện ích mở rộng Chrome được phát triển bởi lastontheboat.hooray, và tính năng chính của nó là "Allows archiving the contents of a tag or search results from archiveofourown.org.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AO3 tag downloader
Tải xuống các tệp mở rộng AO3 tag downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AO3 tag downloader |
ID | icnoenhdioekejbbagnpamaafihdiaee |
URL Chính Thức | https://chromewebstore.google.com/detail/ao3-tag-downloader/icnoenhdioekejbbagnpamaafihdiaee |
Mô tả | Allows archiving the contents of a tag or search results from archiveofourown.org. |
Kích Thước Tệp | 34.87 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-01-09 |
Ngày Phát Hành | 2022-12-26 |
Nhà Phát Triển | lastontheboat.hooray |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jdm/archiveofmyown/ |
URL Trang Trợ Giúp | https://github.com/jdm/archiveofmyown/issues |
Ngôn Ngữ Được Hỗ Trợ | 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*" ] } } |