prettier pass on style.js
This commit is contained in:
parent
58b522be65
commit
f75442ac2b
|
@ -2,7 +2,7 @@
|
|||
|
||||
var styles = null;
|
||||
|
||||
if (document.domain == "forum.effectivealtruism.org"){
|
||||
if (document.domain == "forum.effectivealtruism.org") {
|
||||
styles = `
|
||||
.Layout-main {
|
||||
margin-left: 100px;
|
||||
|
@ -18,14 +18,14 @@ if (document.domain == "forum.effectivealtruism.org"){
|
|||
.intercom-lightweight-app{
|
||||
display: none;
|
||||
}
|
||||
`
|
||||
var styleSheet = document.createElement('style')
|
||||
styleSheet.innerText = styles
|
||||
document.head.appendChild(styleSheet)
|
||||
console.log('Style changed')
|
||||
`;
|
||||
var styleSheet = document.createElement("style");
|
||||
styleSheet.innerText = styles;
|
||||
document.head.appendChild(styleSheet);
|
||||
console.log("Style changed");
|
||||
}
|
||||
|
||||
if (document.domain == "mail.proton.me" ){
|
||||
if (document.domain == "mail.proton.me") {
|
||||
styles = `
|
||||
/*
|
||||
.item-container-row.read, .item-container.read {
|
||||
|
@ -39,16 +39,16 @@ if (document.domain == "mail.proton.me" ){
|
|||
}
|
||||
zoom: 0.625 !important;
|
||||
*/
|
||||
`
|
||||
`;
|
||||
}
|
||||
if (document.domain == "forum.nunosempere.com" ){
|
||||
if (document.domain == "forum.nunosempere.com") {
|
||||
styles = `
|
||||
body {
|
||||
zoom: 0.625 !important;
|
||||
}
|
||||
`
|
||||
`;
|
||||
}
|
||||
if (document.domain == "search.nunosempere.com" ){
|
||||
if (document.domain == "search.nunosempere.com") {
|
||||
styles = `
|
||||
body {
|
||||
/* zoom: 1.8; */
|
||||
|
@ -57,9 +57,9 @@ if (document.domain == "search.nunosempere.com" ){
|
|||
footer {
|
||||
display: none;
|
||||
}
|
||||
`
|
||||
`;
|
||||
}
|
||||
if (document.domain == "twitter.com" ){
|
||||
if (document.domain == "twitter.com") {
|
||||
styles = `
|
||||
/* hide promoted tweets */
|
||||
:has(meta[property="og:site_name"][content="Twitter"])
|
||||
|
@ -78,10 +78,10 @@ if (document.domain == "twitter.com" ){
|
|||
[data-testid^="sidebarColumn"] {
|
||||
display: none;
|
||||
}
|
||||
`
|
||||
`;
|
||||
}
|
||||
|
||||
if (document.domain == "reddit.com" || document.domain == "old.reddit.com"){
|
||||
if (document.domain == "reddit.com" || document.domain == "old.reddit.com") {
|
||||
styles = `
|
||||
/* kill sidebar ads */
|
||||
.native-ad-container,
|
||||
|
@ -97,21 +97,20 @@ if (document.domain == "reddit.com" || document.domain == "old.reddit.com"){
|
|||
{
|
||||
display: none !important;
|
||||
}
|
||||
`
|
||||
`;
|
||||
}
|
||||
|
||||
if(styles != null){
|
||||
var styleSheet = document.createElement('style')
|
||||
styleSheet.innerText = styles
|
||||
document.head.appendChild(styleSheet)
|
||||
console.log('Style changed')
|
||||
if (styles != null) {
|
||||
var styleSheet = document.createElement("style");
|
||||
styleSheet.innerText = styles;
|
||||
document.head.appendChild(styleSheet);
|
||||
console.log("Style changed");
|
||||
}
|
||||
|
||||
|
||||
// Replace default alert with new function
|
||||
// whose style can be changed!
|
||||
window.alert = (message) => {
|
||||
let alertDiv = document.getElementById('customAlert');
|
||||
let alertDiv = document.getElementById("customAlert");
|
||||
if (!alertDiv) {
|
||||
const html = `
|
||||
<div id="customAlert" class="custom-alert">
|
||||
|
@ -145,26 +144,29 @@ window.alert = (message) => {
|
|||
}
|
||||
</style>
|
||||
`;
|
||||
document.body.insertAdjacentHTML('beforeend', html);
|
||||
alertDiv = document.getElementById('customAlert');
|
||||
document.getElementById('alertOkButton').onclick = () => {
|
||||
alertDiv.classList.remove('visible');
|
||||
document.removeEventListener('keydown', dismissAlert);
|
||||
document.body.insertAdjacentHTML("beforeend", html);
|
||||
alertDiv = document.getElementById("customAlert");
|
||||
document.getElementById("alertOkButton").onclick = () => {
|
||||
alertDiv.classList.remove("visible");
|
||||
document.removeEventListener("keydown", dismissAlert);
|
||||
};
|
||||
}
|
||||
|
||||
const dismissAlert = (event) => {
|
||||
if (event.key === 'Enter' /*&& event.ctrlKey*/ && alertDiv.classList.contains('visible')) {
|
||||
alertDiv.classList.remove('visible');
|
||||
document.removeEventListener('keydown', dismissAlert);
|
||||
}
|
||||
if (
|
||||
event.key === "Enter" /*&& event.ctrlKey*/ &&
|
||||
alertDiv.classList.contains("visible")
|
||||
) {
|
||||
alertDiv.classList.remove("visible");
|
||||
document.removeEventListener("keydown", dismissAlert);
|
||||
}
|
||||
};
|
||||
|
||||
document.addEventListener('keydown', dismissAlert);
|
||||
document.getElementById('alertMessage').textContent = message;
|
||||
alertDiv.classList.add('visible');
|
||||
}
|
||||
document.addEventListener("keydown", dismissAlert);
|
||||
document.getElementById("alertMessage").textContent = message;
|
||||
alertDiv.classList.add("visible");
|
||||
};
|
||||
// ^ takes 0.014ms to run, so performance is not the concern here.
|
||||
// timed with console.time, console.timeEnd
|
||||
|
||||
document.body.style.visibility = "visible"
|
||||
document.body.style.visibility = "visible";
|
||||
|
|
Loading…
Reference in New Issue
Block a user