Greasy Fork is available in English.

AO3: Tag Hider

Hide tags automatically when there are too many tags. Add hide/show tags button to browsing page and reading page.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
Vannius
일일 설치수
0
총 설치수
283
평점
4 0 0
버전
1.931
생성
2018-06-11
갱신
2019-04-09
라이선스
MIT
동작 사이트

AO3: Tag Hider

Description

Hide tags when there are too many tags automatically on AO3. Add hide/show tags button to browsing page and reading page.

[Source] [Greasy Fork]

Config

Browsing page: except of https://archiveofourown.org/works/*

const MAX_TAGS_ON_BROWSING_PAGE = 15;
// When number_of_tags > MAX_TAGS_ON_BROWSING_PAGE, hide tags on browsing page.
// If MAX_TAGS_ON_BROWSING_PAGE = 0, hide tags always on browsing page.
// If MAX_TAGS_ON_BROWSING_PAGE = 1000, show tags always on browsing page.

An example of browsing page when MAX_TAGS_ON_BROWSING_PAGE = 15

MAX_TAGS_ON_BROWSING_PAGE = 15

Reading page: https://archiveofourown.org/works/*

const MAX_TAGS_ON_READING_PAGE = 0;
// When number_of_tags > MAX_TAGS_ON_READING_PAGE, hide tags on reading page.
// if MAX_TAGS_ON_READING_PAGE = 0, hide tags always on reading page.
// if MAX_TAGS_ON_READING_PAGE = 1000, show tags always on reading page.
// number_of_tags on reading page also include Rating, Archive Warning, Category and Fandom tags.

An example of reading page when MAX_TAGS_ON_READING_PAGE = 0

MAX_TAGS_ON_READING_PAGE = 0