AO3 tag downloader

AO3 tag downloader

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

Merlin
Additional files are visible only to premium users

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