Closed aonez closed 5 years ago
Just in case you need that one again, in my case just this change fixed the issue:
https://github.com/addshore/chrome-github-release-downloads/blob/d56127b4c4fcc05034f8e545237fc69d384ae548/app/scripts.babel/contentscript.js#L29
For:
el.parentNode.insertBefore(dwnCount, size);
Complete commit here https://github.com/aonez/GitHubCounter/commit/9d47ce8ea3019d961944e601ca21e24c65011ad6. They now use flex boxes, so adding flex-grow: 2 and text-align: right to your download element style might be needed.
flex-grow: 2
text-align: right
Salut!
Thanks! Patches and released as 1.3.0, going to update it in the "store" now. I also added your CSS this time too :)
Nice! It's less intrusive with the downloads icon instead of label 😉
Just in case you need that one again, in my case just this change fixed the issue:
https://github.com/addshore/chrome-github-release-downloads/blob/d56127b4c4fcc05034f8e545237fc69d384ae548/app/scripts.babel/contentscript.js#L29
For:
Complete commit here https://github.com/aonez/GitHubCounter/commit/9d47ce8ea3019d961944e601ca21e24c65011ad6. They now use flex boxes, so adding
flex-grow: 2
andtext-align: right
to your download element style might be needed.Salut!