A project created by Chad Boyce on LiveCodes.
A project created by Chad Boyce on LiveCodes.
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
/* imo, Roboto is too narrow, this spaces it more nicely */ | |
html, body, | |
ytd-page-manager > *.ytd-page-manager { | |
letter-spacing: 0.2px; | |
background-color: rgba(38, 43, 55, 1) !important; | |
} | |
/* VIDEO TITLE */ | |
.title.ytd-video-primary-info-renderer { | |
color: #dce1eb; |
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
<!-- https://github.com/tsparticles/tsparticles | |
https://particles.js.org | |
https://confetti.js.org | |
--> | |
<div class="github"> | |
<a class="btn btn-link" href="https://github.com/matteobruni/tsparticles" title="Find more info on GitHub"> | |
<img class="img-fluid" id="gh-mark" src="https://particles.js.org/images/GitHub-Mark-120px-plus.png" alt=""> | |
<span id="gh-project">tsParticles</span> | |
</a> | |
<div> |
A Pen by Matteo Bruni on CodePen.
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
<main></main> |
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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: orange; icon-glyph: magic; | |
function cleanTitle(title) { | |
return title | |
.replace(/\[ios(\s*universal)?\]\s*/i, "") | |
.replace(/\[macos\]\s*/i, "") | |
.replace(/^\s*/, "") | |
.replace(/\[Windows\]\s*/i, "🎮") | |
.trim() |
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
// Converted using Bookmarklet Creator with Script Includer - https://mrcoles.com/bookmarklet/ | |
javascript:(function()%7Bjavascript%3A(function()%20%7Bfunction%20copyToClipboard(text)%20%7Bif%20(window.clipboardData%20%26%26%20window.clipboardData.setData)%20%7B%2F*IE%20specific%20code%20path%20to%20prevent%20textarea%20being%20shown%20while%20dialog%20is%20visible.*%2Freturn%20clipboardData.setData(%22Text%22%2C%20text)%3B%7D%20else%20if%20(document.queryCommandSupported%20%26%26%20document.queryCommandSupported(%22copy%22))%20%7Bvar%20textarea%20%3D%20document.createElement(%22textarea%22)%3Btextarea.textContent%20%3D%20text%3Btextarea.style.position%20%3D%20%22fixed%22%3B%20%20%2F*%20Prevent%20scrolling%20to%20bottom%20of%20page%20in%20MS%20Edge.*%2Fdocument.body.appendChild(textarea)%3Btextarea.select()%3Btry%20%7Breturn%20document.execCommand(%22copy%22)%3B%20%20%2F*%20Security%20exception%20may%20be%20thrown%20by%20some%20browsers.*%2F%7D%20catch%20(ex)%20%7Bconsole.warn(%22Copy%20to%20clipboard%20faile |