Skip to content

Instantly share code, notes, and snippets.

@naoyeye
Created March 1, 2022 08:15
Show Gist options
  • Save naoyeye/b718ebf5c793796aafbb3c7b599596b5 to your computer and use it in GitHub Desktop.
Save naoyeye/b718ebf5c793796aafbb3c7b599596b5 to your computer and use it in GitHub Desktop.
移除豆瓣写日记入口的下拉菜单
// ==UserScript==
// @name remove-douban-note-menu
// @namespace remove-douban-note-menu
// @version 0.1
// @description 移除豆瓣写日记入口的下拉菜单
// @author @post-rocker
// @match https://www.douban.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=douban.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('#db-isay .menu-switch').remove();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment