Skip to content

Instantly share code, notes, and snippets.

@rwp0
Created January 17, 2025 18:34
Show Gist options
  • Save rwp0/2d048b0faf53536b3bcf9552f93e55bf to your computer and use it in GitHub Desktop.
Save rwp0/2d048b0faf53536b3bcf9552f93e55bf to your computer and use it in GitHub Desktop.
Remove HTML Media
// ==UserScript==
// @namespace Personal
// @name Remove media
// @description Remove images and videos
// @version 2025-01-17
// @author Elvin Aslanov
// @icon https://www.google.com/s2/favicons?sz=64&domain=wikimedia.org
// @license MIT
// @grant none
// @match *://*/*
// ==/UserScript==
(function() {
'use strict';
for (var element of document.querySelectorAll('img, video, figure, svg')) { // NodeList
element.remove();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment