Enlarge Like Button on the Stupid Twitter

MAKE IT LARGER.

目前为 2024-08-19 提交的版本。查看 最新版本

// ==UserScript==
// @name         Enlarge Like Button on the Stupid Twitter
// @namespace    http://tampermonkey.net/
// @version      2024-08-05
// @description  MAKE IT LARGER.
// @license      MIT
// @match        https://x.com/*
// @match        https://twitter.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=x.com
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement("style")
    style.innerHTML = `[data-testid=like], [data-testid=unlike] { padding: 1.5rem 2.5rem 1.5rem 1rem !important; margin: -1.5rem -2.5rem -1.5rem -1rem !important; }`
    document.head.appendChild(style)
})();