AO3 tag downloader
Allows archiving the contents of a tag or search results from archiveofourown.org.
AO3 tag downloaderとは何ですか?
AO3 tag downloaderはlastontheboat.hoorayによって開発されたChromeの拡張機能で、その主な機能は「Allows archiving the contents of a tag or search results from archiveofourown.org.」です。
拡張機能のスクリーンショット
AO3 tag downloader拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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*" ] } } |