Last active
September 18, 2021 02:31
-
-
Save pulkit-singh-shipsy/745d3bb0c59df42c88409c090a88a69d to your computer and use it in GitHub Desktop.
Github Projects
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
.project-pane { | |
width: 100% !important | |
} | |
.lh-default { | |
line-height: 0.9 !important; | |
} | |
.Link--primary.js-project-card-details-external-link { | |
font-size: 12px; | |
} | |
.p-3 { | |
padding: 8px !important; | |
} | |
.text-small { | |
font-size: 10px; | |
display: none; | |
} | |
.pb-3.px-3.border-top, .border-top.flex-shrink-0.text-center.p-3.color-shadow-medium, .border-top.pt-3.px-3.d-flex .flex-auto, .border-top.pt-3.px-3.d-flex .pr-2 { | |
display: none !important; | |
} | |
body, h5, .comment-body { | |
font-size: 12px; | |
} |
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 Github | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://github.com/duke79shipsy/TODO/projects/1?fullscreen=true | |
// @icon https://www.google.com/s2/favicons?domain=github.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
setInterval(() => { | |
// expand issue in project | |
const isExpanded = document.querySelector(".Details.js-details-container.open.Details--on"); | |
if (!isExpanded) { | |
document.querySelector(".btn-link.color-text-tertiary.no-underline.text-small.Details-content--shown").click(); | |
} | |
}, 200); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment