你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/408055-ao3-tag-word-cloud,源站連結 點此以跳轉

AO3: Tag Word Cloud

Change font size of words of AO3 tags according to the word frequency in each chapter or entire works.


點此查看下載連結位址https://update.greasyfork.org.cn/scripts/408055/AO3%3A%20Tag%20Word%20Cloud.user.js

安装此脚本?
作者
Vannius
日安装量
0
总安装量
150
评分
2 0 0
版本
1.6
创建于
2020-08-02
更新于
2025-08-24
大小
14.6 KB
许可证
MIT
适用于

AO3: Tag Word Cloud

Description

This script change font size of words of AO3 tags according to the word frequency in each chapter or entire works.

[Source] [Greasy Fork]

Demo

demo

Config

    // Config
    const MAX_FONT_SCALE = 200; // %
    const MIN_FONT_SCALE = 80; // %
    const FREEFORM_TAGS = true; // Apply TWC to freeform tags.
    const AUTO_TWC_ON_READING_PAGE = true; // Apply TWC automatically on reading page.

    // Treat related words as a group and add up the count of all words in that group
    const relatedWordGroups = [ // Lowercase only
        [ 'cat', 'catelyn' ], // Add up the count of "cat" and the count of "catelyn"
        [ 'eddard', 'ned' ]   // Add up the count of "eddard" and the count of "ned"
    ];

Compatible