flomoapp hide memos

try to take over the world!

目前为 2021-03-10 提交的版本。查看 最新版本

// ==UserScript==
// @name         flomoapp hide memos
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://flomoapp.com/*
// @resource     customCSS https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js
// @require      https://cdn.jsdelivr.net/npm/vue
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(".memos").hide();
    var a = '<input type="checkbox" id="phc" class="" name="time_end_clear_name">';
    $('.nickname').after(a);

    $("#phc").click(function(){
        $(".memos").toggle();
 //  alert("Hello World!");
});

    // Your code here...
})();