Last active
January 16, 2019 15:18
-
-
Save gigaherz/cee1af98c298dbeea14f12986307fdf0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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