Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. (function() {
  2. 'use strict';
  3. document.addEventListener('DOMSubtreeModified', function (event) {
  4. try {
  5. (Array.from(document.querySelectorAll("div")).filter(d => d.id.indexOf("_panel") >= 0)).forEach(function(item){item.style.display='none'});
  6. (Array.from(document.querySelectorAll(".sinaad-toolkit-box"))).forEach(function(item){item.style.display='none'});
  7. (Array.from(document.querySelectorAll("ins"))).forEach(function(item){item.style.display='none'});
  8. (Array.from(document.querySelectorAll("#sinaAD_type_blogbf"))).forEach(function(item){item.style.display='none'});
  9. (Array.from(document.querySelectorAll("table"))).filter(t => t.className == "CP_w").filter(t => t.id.indexOf("_panel")).forEach(function(item){item.style.display='none'});
  10. } catch (error) {
  11. alert(error);
  12. }
  13. }, true);
  14. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement