Twitter貼文圖片自動按讚

當點擊貼文圖片時,自動按讚

安裝腳本?
作者推薦腳本

您可能也會喜歡 為你自動點選

安裝腳本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Twitter貼文圖片自動按讚
// @name:en      TweetImgAutoLike
// @description  當點擊貼文圖片時,自動按讚
// @description:en  When clicking on a Tweet's image, automatically like it.

// @namespace    https://github.com/Max46656
// @version      1.0.0
// @author       Max

// @match        https://twitter.com/*
// @match        https://x.com/*
// @match        https://mobile.twitter.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=x.com
// @license MPL2.0
// ==/UserScript==

class TweetLiker {
    constructor() {
        this.observer = null;
    }

    init() {
        this.observer = new MutationObserver((mutations) => {
            mutations.forEach((mutation) => {
                mutation.addedNodes.forEach((node) => {
                    if (node.nodeType === Node.ELEMENT_NODE &&
                        node.querySelector('div[aria-labelledby="modal-header"] div.r-11yh6sk[style]')) {
                        this.clickLikeButton(node);
                    }
                });
            });
        });

        this.observer.observe(document.body, { childList: true, subtree: true });
        console.log('貼文圖片觀察者啟動');
    }

    clickLikeButton(node) {
        const likeButton = node.querySelector('button[data-testid="like"]');
        if (likeButton) {
            likeButton.click();
            console.log('已喜歡貼文圖片');
        } else {
            console.warn('未找到喜歡按鈕');
        }
    }
}


const johnThebardOfLove = new TweetLiker();
johnThebardOfLove.init();