Skip to content

Instantly share code, notes, and snippets.

@daanta-real
Last active March 7, 2025 14:44
Show Gist options
  • Save daanta-real/01948bcd316df50d4681195fca78cd94 to your computer and use it in GitHub Desktop.
Save daanta-real/01948bcd316df50d4681195fca78cd94 to your computer and use it in GitHub Desktop.
CSS stylesheet forced replacement injection source snippet
document.head.appendChild(Object.assign(document.createElement('style'), { innerHTML: `
/*********************************************/
/* PUT YOUR ADDITIONAL CUSTOM CSS STYLESHEET */
/* HERE AS WHATEVER YOU WANT. START */
/*********************************************/
body.android .photoFrame .smileCnt i.smile {
top:0.05em;
}
.photoFrame .smileCnt .smileCntTxt {
transform:scale(1.25) translateY(-0.1em);
}
/*********************************************/
/* PUT YOUR ADDITIONAL CUSTOM CSS STYLESHEET */
/* HERE AS WHATEVER YOU WANT. END */
/*********************************************/
` }));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment