Skip to content

Instantly share code, notes, and snippets.

@lucgiffon
Created December 18, 2021 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucgiffon/aad6f5f5ef8a2a8c4d15555090e0dda3 to your computer and use it in GitHub Desktop.
Save lucgiffon/aad6f5f5ef8a2a8c4d15555090e0dda3 to your computer and use it in GitHub Desktop.
Tampermonkey script to make ads more visible on startpage
// ==UserScript==
// @name Ads visibility on startpage
// @description Background-color is added to ads on the startpage site so they are made more visible.
// @version 0.1
// @author You
// @match https://www.startpage.com/*
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle("#adBlock > * { background-color: #e6e6ff; }");
console.log('Ads made visible on startpage done.');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment