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.”。

扩展截图

screenshot

下载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 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*"
        ]
    }
}