Remove media

Remove images and videos

目前為 2025-01-17 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @namespace Focus
  3. // @name Remove media
  4. // @description Remove images and videos
  5. // @version 2025-01-17
  6. // @author Elvin Aslanov
  7. // @icon https://www.google.com/s2/favicons?sz=64&domain=wikimedia.org
  8. // @license MIT
  9. // @grant none
  10. // @match *://*/*
  11. // ==/UserScript==
  12. (function() {
  13. 'use strict';
  14. for (var element of document.querySelectorAll('img, video, figure, svg, embed')) { // NodeList
  15. element.remove();
  16. }
  17. })();