用擴充功能輕鬆修正錫蘭 YouTube 的訂閱數
大家都知道,錫蘭的 YouTube 訂閱數因為某些原因顯示不太準確。但現在,我有了一個好消息:我開發了一個程式,可以輕鬆自動修正它!想知道怎麼做嗎?繼續往下看!
首先,請先安裝油猴(Tampermonkey)這個擴充功能。您可以在 Chrome、Edge 或 Firefox 的擴充功能商店下載它。接著,到 Greasy Fork 網站安裝我開發的程式即可。有時 YouTube 會顯示錯誤,這時您只需要重新整理頁面就好了。
如果您擔心我會不會盜取您的個人資料,那麼別擔心!在您安裝程式時,您可以查看程式碼,以確保您的資料是安全的。不過程式碼非常簡潔,有些難以閱讀,所以這裡提供比較好閱讀的版本。
1(function () {
2 function modifySubscriberCount() {
3 var subscriberCountElem = document.getElementById("subscriber-count");
4 var channel = document.getElementById("channel-handle");
5 var channelName = document.getElementById("text");
6 var subCount = document.getElementById("owner-sub-count");
7 if (subscriberCountElem && channel) {
8 observer.disconnect();
9 if (channel.innerText == '@xilanceylan') {
10 var subscriberCountText = subscriberCountElem.innerText;
11 if (subscriberCountText.indexOf("K") > -1) var replacedText = parseInt(subscriberCountText.replace("K", "")) / 10 + "T"; else
12 var replacedText = subscriberCountText.replace("萬", "兆").replace("万", "兆");
13 subscriberCountElem.innerText = replacedText;
14
15 }
16 } else if (subCount && channelName) {
17 observer.disconnect();
18 if (channelName.innerText == '錫蘭Ceylan') {
19 var subscriberCountText = subCount.innerText;
20 var replacedText = subscriberCountText.replace("萬", "兆").replace("万", "兆");
21 subCount.innerText = replacedText;
22 }
23 }
24 }
25 modifySubscriberCount();
26 window.addEventListener("popstate", modifySubscriberCount);
27 var observer = new MutationObserver(function (mutations) {
28 mutations.forEach(function (mutation) {
29 modifySubscriberCount();
30 });
31 });
32 observer.observe(document.body, { childList: true, subtree: true });
33})();
不過你可能會說"喔我沒有讀過大學,我看不懂",沒關係我也沒有,但你可以請ChatGPT解釋給你聽。
現在,您可以輕鬆地修正錫蘭 YouTube 的訂閱數,成為網路上的大王。