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은(는) peter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows searching AO3 for a primary ship tag, removing search results that do not have the wanted tag as the first relationship tag."입니다.

확장 프로그램 스크린샷

screenshot

AO3 First Tag Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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