Skip to content

Instantly share code, notes, and snippets.

@yukikaoru
Created November 25, 2018 19:59
Show Gist options
  • Save yukikaoru/b1d26c7bd435d8649484e2c863d786a2 to your computer and use it in GitHub Desktop.
Save yukikaoru/b1d26c7bd435d8649484e2c863d786a2 to your computer and use it in GitHub Desktop.
u.ggのヘッダーと左枠の広告リンクを潰すgrease monkey
// ==UserScript==
// @name Remove ad link on u.gg
// @version 1.0
// @match https://u.gg/*
// @grant none
// ==/UserScript==
(function() {
'use strict'
document.querySelector('#af-header').style['height'] = '0px'
document.querySelector('#af-left-link').remove()
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment