Greasy Fork

Change AO3 "Kudos" button text to "Glory"

Change the button text from "Kudos" to "Glory"; inspired by tumblr post https://ao3commentoftheday.tumblr.com/post/186719948024/fuckyeahrichardiii-terpsikeraunos-friendly

目前为 2019-09-17 提交的版本。查看 最新版本

// ==UserScript==
// @name        Change AO3 "Kudos" button text to "Glory"
// @description Change the button text from "Kudos" to "Glory"; inspired by tumblr post https://ao3commentoftheday.tumblr.com/post/186719948024/fuckyeahrichardiii-terpsikeraunos-friendly
// @namespace   ao3
// @author      AlectoPerdita
// @include     http*://archiveofourown.org/*works*
// @grant       none
// @version     1.0
// ==/UserScript==

const newButtonText = 'Glory ♥';

(function () {
    'use strict';
    const kudosBtn = document.querySelector('#kudo_submit');
    kudosBtn.value = newButtonText;
})();