Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 3.51 KB

index.md

File metadata and controls

23 lines (18 loc) · 3.51 KB
layout title description
page
Empty Notion Trash
Bookmarklet to permanently delete all notion pages that have already been deleted.

Emtpy Notion Trash

Source repo

  • To Install: Drag and drop this link Empty Notion Trash to your Bookmarks Bar
  • To Use: Click on the bookmark when you are on notion.so
<script> // Replace the URIEncoded '%3A' to ':' after javascript so browsers treat this as a bookmarklet let bookmarklet = document.getElementById('bookmarklet') bookmarklet.href = bookmarklet.href.replace('javascript%3A', 'javascript:') // Remove useless h1 generated by github document.getElementsByTagName('h1')[0].remove() </script>