Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
1,036
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Instagram Filter Video Only
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       adw0rd
  7. // @include      https://www.instagram.com/*/
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.      setInterval(() => {
  14.          document.querySelectorAll('a[href*="/p/"]').forEach(n => {
  15.              if (!n.querySelector('span[aria-label="Video"]')) {
  16.                  n.style.display = 'none';
  17.              }
  18.          });
  19.      }, 50);
  20. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement