Created
August 6, 2025 17:22
-
-
Save jmhobbs/61de145a3a2bbcd33c97ad386091b789 to your computer and use it in GitHub Desktop.
Hide Notion AI - Tampermonkey Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Notion AI Removal | |
// @namespace https://velvetcache.org/ | |
// @version 2025-08-05 | |
// @description Just Say No (to notion ai) | |
// @author You | |
// @match https://www.notion.so/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=notion.so | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const style = document.createElement('style') | |
document.head.append(style) | |
// corner face | |
style.sheet.addRule('.notion-assistant-corner-origin-container', 'display: none !important;'); | |
// home page prompt | |
style.sheet.addRule('.ai-chat-input-and-suggestion-container', 'display: none !important;'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment