Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name reddit_link_filter
- // @namespace reddit
- // @include https://old.reddit.com/*
- // @version 1
- // @grant none
- // ==/UserScript==
- divs=document.querySelectorAll("[data-domain]");
- for(i=0; i<divs.length; ++i) {
- domain = divs[i].getAttribute("data-domain");
- if (domain == "v.redd.it") {
- divs[i].style.display = "None";
- }
- }
Add Comment
Please, Sign In to add comment