Skip to content

Instantly share code, notes, and snippets.

@killerwolf
Created June 23, 2015 22:50
Show Gist options
  • Save killerwolf/7d7b787c6840f4ccbb47 to your computer and use it in GitHub Desktop.
Save killerwolf/7d7b787c6840f4ccbb47 to your computer and use it in GitHub Desktop.
Google Sponsored Links remover http://userscripts.org/scripts/show/38984
// ==UserScript==
// @name Google Sponsored Links remover
// @namespace http://www.h4md1.fr
// @description remove google sponsored links from SERPS
// @include http://www.google.com/*
// ==/UserScript==
(function() {
var sidebarads = document.getElementById(‘mbEnd’);
var skyads = document.getElementById(‘tads’);
if (sidebarads) {
sidebarads.parentNode.removeChild(sidebarads);
}
if (skyads) {
skyads.parentNode.removeChild(skyads);
}
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment