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
官方網址 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*"
        ]
    }
}