Skip to content

Instantly share code, notes, and snippets.

@jmhobbs
Created August 6, 2025 17:22
Show Gist options
  • Save jmhobbs/61de145a3a2bbcd33c97ad386091b789 to your computer and use it in GitHub Desktop.
Save jmhobbs/61de145a3a2bbcd33c97ad386091b789 to your computer and use it in GitHub Desktop.
Hide Notion AI - Tampermonkey Script
// ==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