AO3 tag downloader

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

Τι είναι το AO3 tag downloader;

Το AO3 tag downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lastontheboat.hooray, και η κύρια λειτουργία του είναι "Allows archiving the contents of a tag or search results from archiveofourown.org.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης AO3 tag downloader

Λήψη αρχείων επέκτασης 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*"
        ]
    }
}