Skip to content

Instantly share code, notes, and snippets.

@kebot
Created December 2, 2020 09:45
Show Gist options
  • Save kebot/9adfda3c91383ca70f97669f29f86d08 to your computer and use it in GitHub Desktop.
Save kebot/9adfda3c91383ca70f97669f29f86d08 to your computer and use it in GitHub Desktop.
userscript: remove zhihu
// ==UserScript==
// @name Remove Zhihu
// @namespace http://pornhub.com/
// @version 0.1
// @description browse zhihu without login
// @author You
// @match https://www.zhihu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.setTimeout(() => {
document.querySelector('.Modal-wrapper').remove();
document.querySelector('html').style.removeProperty('overflow');
}, 100);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment