Skip to content

Instantly share code, notes, and snippets.

@takasek
Last active August 29, 2015 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takasek/42ce96dfa332f4f60dcd to your computer and use it in GitHub Desktop.
Save takasek/42ce96dfa332f4f60dcd to your computer and use it in GitHub Desktop.
WorkFlowyのCompletedボタンをシンプルにする
// ==UserScript==
// @name wf_completed_button_simplifier.user.js
// @namespace https://gist.github.com/takasek/42ce96dfa332f4f60dcd
// @description WorkFlowyのCompletedボタンをシンプルにする
// @include https://workflowy.com/*
// @version 2
// @grant none
// ==/UserScript==
$(".showCompletedButton").html($(".showCompletedButton").html().replace("Completed:","✓").replace("Hidden","😪").replace("Visible","😳")).css("width", "auto");
@takasek
Copy link
Author

takasek commented Aug 28, 2015

更新 Revisions:2
ユーザースクリプトに準拠しました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment