SubscribeStar Ellipsify69

Make the navigation easier.

目前為 2024-04-11 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         SubscribeStar Ellipsify69
// @version      2024-04-12
// @description  Make the navigation easier.
// @namespace    https://greasyfork.org/users/1267336
// @author       ProtagNeptune
// @match        https://subscribestar.adult/*
// @match        https://www.subscribestar.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=subscribestar.adult
// @license      MIT
// @grant        none
// ==/UserScript==

function ellipsify(str) {
    if (str.length > 69) {
        return str.substring(0, 69) + "...";
    } else {
        return str;
    }
}

function applyTruncation() {
    const currentUrl = window.location.href;
    const excludedPatterns = [
      'https://subscribestar.adult/chats/',
      'https://subscribestar.adult/posts/',
      'https://www.subscribestar.com/chats/',
      'https://www.subscribestar.com/posts/'
    ];
    if (!excludedPatterns.some(pattern => currentUrl.startsWith(pattern))) {
        const trixElements = document.querySelectorAll('.trix-content');
        trixElements.forEach((element) => {
            element.textContent = ellipsify(element.textContent);
        });
    }
}

// Call the function initially
applyTruncation();

// Repeat the function every three seconds
setInterval(applyTruncation, 3000); // 3000 milliseconds = 3 seconds