Skip to content

Instantly share code, notes, and snippets.

@mlnrDev
Last active June 17, 2023 20:03
Show Gist options
  • Save mlnrDev/ac2289e42b431fc4a9e36c625dc6abe4 to your computer and use it in GitHub Desktop.
Save mlnrDev/ac2289e42b431fc4a9e36c625dc6abe4 to your computer and use it in GitHub Desktop.
Hides GeoGuessr avatar frames, originally built for zi8gzag GTE
// ==UserScript==
// @name Hide GeoGuessr avatar frames
// @description Hides GeoGuessr avatar frames, originally built for zi8gzag GTE
// @version 1.0.0
// @icon https://www.google.com/s2/favicons?sz=64&domain=geoguessr.com
// @author cane
// @run-at document-start
// @match https://www.geoguessr.com/*
// @downloadURL https://gist.github.com/mlnrDev/ac2289e42b431fc4a9e36c625dc6abe4/raw/cane-hide-geoguessr-frames.user.js
// @updateURL https://gist.github.com/mlnrDev/ac2289e42b431fc4a9e36c625dc6abe4/raw/cane-hide-geoguessr-frames.user.js
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
picture[class^="avatar_titleAvatarFrame"] {
display: none;
}
`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment