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.
Τι είναι το AO3 First Tag Search;
Το AO3 First Tag Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον peter, και η κύρια λειτουργία του είναι "Allows searching AO3 for a primary ship tag, removing search results that do not have the wanted tag as the first relationship tag.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AO3 First Tag Search
Λήψη αρχείων επέκτασης AO3 First Tag Search σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This add-on adds a checkbox to AO3's search page that will make the search exclude results where the ship tag isn't the first relationship tag listed. This helps cases where the search page is flooded with stories about other ships, where your ship is present and tagged, but not in focus. Because of how AO3 renders its search pages, we can't grab more search results to replace the dropped ones, so this means fewer search results per page. It's possible you could even get a totally empty page of search results, although I haven't seen this happen in the wild. If you search with multiple ship tags, the search will include any story that has any of your listed ship tags as the first tag. Obviously this doesn't guarantee that every story will feature your ship as a focus; but in general, people tend to put their fic's primary ship first and then add secondary ones later, so it's a pretty good heuristic.
Βασικές Πληροφορίες Επέκτασης
Όνομα | AO3 First Tag Search |
ID | bmbpikjcekglfidkmhafdelaiimbgnpa |
Επίσημο URL | https://chromewebstore.google.com/detail/ao3-first-tag-search/bmbpikjcekglfidkmhafdelaiimbgnpa |
Περιγραφή | Allows searching AO3 for a primary ship tag, removing search results that do not have the wanted tag as the first relationship tag. |
Μέγεθος Αρχείου | 38.79 KB |
Αριθμός Εγκαταστάσεων | 1,181 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2020-11-16 |
Ημερομηνία Δημοσίευσης | 2020-11-16 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | peter |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
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" ] } ] } |