AO3 tag downloader

Allows archiving the contents of a tag or search results from archiveofourown.org.

Vad är AO3 tag downloader?

AO3 tag downloader är en Chrome-tillägg utvecklad av lastontheboat.hooray, och dess huvudfunktion är "Allows archiving the contents of a tag or search results from archiveofourown.org.".

Tilläggsskärmbilder

screenshot

Ladda ner AO3 tag downloader-förlängningens CRX-fil

Ladda ner AO3 tag downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn AO3 tag downloader AO3 tag downloader
ID icnoenhdioekejbbagnpamaafihdiaee
Officiell webbadress https://chromewebstore.google.com/detail/ao3-tag-downloader/icnoenhdioekejbbagnpamaafihdiaee
Beskrivning Allows archiving the contents of a tag or search results from archiveofourown.org.
Filstorlek 34.87 KB
Antal Installationer 39
Aktuell Version 1.1
Senast Uppdaterad 2023-01-09
Publiceringsdatum 2022-12-26
Utvecklare lastontheboat.hooray
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jdm/archiveofmyown/
Hjälpsida URL https://github.com/jdm/archiveofmyown/issues
Stödda Språk 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*"
        ]
    }
}