Created
January 17, 2025 18:34
-
-
Save rwp0/2d048b0faf53536b3bcf9552f93e55bf to your computer and use it in GitHub Desktop.
Remove HTML Media
This file contains 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== | |
// @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