AO3 First Tag Search

AO3 First Tag Search

Allows searching AO3 for a primary ship tag, removing search results that do not have the wanted tag as the first relationship tag.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AO3 First Tag Search",
  "version": "1.0",
  "description": "Allows searching AO3 for a primary ship tag, removing search results that do not have the wanted tag as the first relationship tag.",
  "icons": {
    "48": "icons/ao3-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.archiveofourown.org/works/search?*"
      ],
      "js": [
        "firsttag.js"
      ]
    },
    {
      "matches": [
        "*://*.archiveofourown.org/works/search*"
      ],
      "js": [
        "searchpage.js"
      ]
    }
  ]
}