Skip to content

Instantly share code, notes, and snippets.

@karasugawasu
Last active April 28, 2021 03:05
Show Gist options
  • Save karasugawasu/8d45356250e431094de2ab0e44e64f7e to your computer and use it in GitHub Desktop.
Save karasugawasu/8d45356250e431094de2ab0e44e64f7e to your computer and use it in GitHub Desktop.
スタンプのやつ
// ==UserScript==
// @name CSSスタンプ機能
// @version 0.0.1
// @description CSSスタンプ機能
// @author Sue Karasugawa
// @match https://fedibird.com/web*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
window.addEventListener("load", function() {
Init();
});
function Init(){
var css = `
.detailed-status .status__content p .emojione[alt^=":stamp_"],
p .emojione[alt^=":stamp_"],
.notification__message .emojione[alt^=":stamp_"]
{
width: 120px !important;
height: 120px !important;
vertical-align: bottom !important;
}
`;
GM_addStyle(css)
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment