Skip to content

Instantly share code, notes, and snippets.

@gigaherz
Last active January 16, 2019 15:18
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 gigaherz/cee1af98c298dbeea14f12986307fdf0 to your computer and use it in GitHub Desktop.
Save gigaherz/cee1af98c298dbeea14f12986307fdf0 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Down with the Circles!
// @namespace https://gist.github.com/gigaherz/cee1af98c298dbeea14f12986307fdf0
// @version 0.4
// @description Changes the circleness of twitter avatars.
// @author gigaherz
// @match https://twitter.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// Your code here...
GM_addStyle(".avatar, .DashboardProfileCard-avatarImage, .DashboardProfileCard-avatarLink,"+
".ProfileAvatar-image, .ProfileAvatar, .ProfileCard-avatarLink, .ProfileCard-avatarImage { border-radius: 10% !important; }");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment