去掉PageNote右侧的高亮列表悬浮框

Remove PageNote elements

// ==UserScript==
// @name         去掉PageNote右侧的高亮列表悬浮框
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Remove PageNote elements
// @author       Alex
// @match        https://*/*
// @icon         https://www.google.com/s2/favicons?domain=tampermonkey.net
// @grant        none
// @license      Apache 2.0
// ==/UserScript==

(function() {
    'use strict';

    function removePageNote() {
      let pageNote = document.querySelector('pagenote-aside');
      if(pageNote) {
        pageNote.remove();
      }
    }

    new MutationObserver(removePageNote).observe(document, {
      childList: true,
      subtree: true
    });

    removePageNote();

})();