|
@@ -22,6 +22,20 @@
|
|
// @grant GM_addStyle
|
|
// @grant GM_addStyle
|
|
// @run-at document-end
|
|
// @run-at document-end
|
|
// ==/UserScript==
|
|
// ==/UserScript==
|
|
|
|
+
|
|
|
|
+const extConfig = {
|
|
|
|
+// BEGIN USER OPTIONS
|
|
|
|
+// You may change the following variables to allowed values listed in the corresponding brackets (* means default). Keep the style and keywords intact.
|
|
|
|
+ showUpdatePopup: false, // [true, false*] Show a popup tab after extension update (See what's new)
|
|
|
|
+ disableVoteSubmission: false, // [true, false*] Disable like/dislike submission (Stops counting your likes and dislikes)
|
|
|
|
+ coloredThumbs: false, // [true, false*] Colorize thumbs (Use custom colors for thumb icons)
|
|
|
|
+ coloredBar: false, // [true, false*] Colorize ratio bar (Use custom colors for ratio bar)
|
|
|
|
+ colorTheme: "classic", // [classic*, accessible, neon] Color theme (red/green, blue/yellow, pink/cyan)
|
|
|
|
+ numberDisplayFormat: "compactShort", // [compactShort*, compactLong, standard] Number format (For non-English locale users, you may be able to improve appearance with a different option. Please file a feature request if your locale is not covered)
|
|
|
|
+ numberDisplayRoundDown: true, // [true*, false] Round down numbers (Show rounded down numbers)
|
|
|
|
+// END USER OPTIONS
|
|
|
|
+};
|
|
|
|
+
|
|
const LIKED_STATE = "LIKED_STATE";
|
|
const LIKED_STATE = "LIKED_STATE";
|
|
const DISLIKED_STATE = "DISLIKED_STATE";
|
|
const DISLIKED_STATE = "DISLIKED_STATE";
|
|
const NEUTRAL_STATE = "NEUTRAL_STATE";
|
|
const NEUTRAL_STATE = "NEUTRAL_STATE";
|
|
@@ -205,6 +219,13 @@ function createRateBar(likes, dislikes) {
|
|
likes + dislikes > 0 ? (likes / (likes + dislikes)) * 100 : 50;
|
|
likes + dislikes > 0 ? (likes / (likes + dislikes)) * 100 : 50;
|
|
|
|
|
|
if (!rateBar && !isMobile) {
|
|
if (!rateBar && !isMobile) {
|
|
|
|
+ let colorLikeStyle = "";
|
|
|
|
+ let colorDislikeStyle = "";
|
|
|
|
+ if (extConfig.coloredBar) {
|
|
|
|
+ colorLikeStyle = "; background-color: " + getColorFromTheme(true);
|
|
|
|
+ colorDislikeStyle = "; background-color: " + getColorFromTheme(false);
|
|
|
|
+ }
|
|
|
|
+
|
|
document.getElementById("menu-container").insertAdjacentHTML(
|
|
document.getElementById("menu-container").insertAdjacentHTML(
|
|
"beforeend",
|
|
"beforeend",
|
|
`
|
|
`
|
|
@@ -212,11 +233,11 @@ function createRateBar(likes, dislikes) {
|
|
<div class="ryd-tooltip-bar-container">
|
|
<div class="ryd-tooltip-bar-container">
|
|
<div
|
|
<div
|
|
id="return-youtube-dislike-bar-container"
|
|
id="return-youtube-dislike-bar-container"
|
|
- style="width: 100%; height: 2px;"
|
|
|
|
|
|
+ style="width: 100%; height: 2px;${colorDislikeStyle}"
|
|
>
|
|
>
|
|
<div
|
|
<div
|
|
id="return-youtube-dislike-bar"
|
|
id="return-youtube-dislike-bar"
|
|
- style="width: ${widthPercent}%; height: 100%"
|
|
|
|
|
|
+ style="width: ${widthPercent}%; height: 100%${colorDislikeStyle}"
|
|
></div>
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -236,6 +257,13 @@ function createRateBar(likes, dislikes) {
|
|
document.querySelector(
|
|
document.querySelector(
|
|
"#ryd-dislike-tooltip > #tooltip"
|
|
"#ryd-dislike-tooltip > #tooltip"
|
|
).innerHTML = `${likes.toLocaleString()} / ${dislikes.toLocaleString()}`;
|
|
).innerHTML = `${likes.toLocaleString()} / ${dislikes.toLocaleString()}`;
|
|
|
|
+
|
|
|
|
+ if (extConfig.coloredBar) {
|
|
|
|
+ document.getElementById("return-youtube-dislike-bar-container").style.backgroundColor =
|
|
|
|
+ getColorFromTheme(false);
|
|
|
|
+ document.getElementById("return-youtube-dislike-bar").style.backgroundColor =
|
|
|
|
+ getColorFromTheme(true);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -254,6 +282,10 @@ function setState() {
|
|
dislikesvalue = dislikes;
|
|
dislikesvalue = dislikes;
|
|
setDislikes(numberFormat(dislikes));
|
|
setDislikes(numberFormat(dislikes));
|
|
createRateBar(likes, dislikes);
|
|
createRateBar(likes, dislikes);
|
|
|
|
+ if (extConfig.coloredThumbs === true) {
|
|
|
|
+ getLikeButton().style.color = getColorFromTheme(true);
|
|
|
|
+ getDislikeButton().style.color = getColorFromTheme(false);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
});
|
|
@@ -347,14 +379,73 @@ function numberFormat(numberState) {
|
|
?.getAttribute("href")
|
|
?.getAttribute("href")
|
|
)?.searchParams?.get("locale");
|
|
)?.searchParams?.get("locale");
|
|
} catch {}
|
|
} catch {}
|
|
|
|
+
|
|
|
|
+ let numberDisplay;
|
|
|
|
+ if (extConfig.numberDisplayRoundDown === false) {
|
|
|
|
+ numberDisplay = numberState;
|
|
|
|
+ } else {
|
|
|
|
+ numberDisplay = roundDown(numberState);
|
|
|
|
+ }
|
|
|
|
+ return getNumberFormatter(extConfig.numberDisplayFormat).format(
|
|
|
|
+ numberDisplay
|
|
|
|
+ );
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+function getNumberFormatter(optionSelect) {
|
|
|
|
+ let formatterNotation;
|
|
|
|
+ let formatterCompactDisplay;
|
|
|
|
+
|
|
|
|
+ switch (optionSelect) {
|
|
|
|
+ case "compactLong":
|
|
|
|
+ formatterNotation = "compact";
|
|
|
|
+ formatterCompactDisplay = "long";
|
|
|
|
+ break;
|
|
|
|
+ case "standard":
|
|
|
|
+ formatterNotation = "standard";
|
|
|
|
+ formatterCompactDisplay = "short";
|
|
|
|
+ break;
|
|
|
|
+ case "compactShort":
|
|
|
|
+ default:
|
|
|
|
+ formatterNotation = "compact";
|
|
|
|
+ formatterCompactDisplay = "short";
|
|
|
|
+ }
|
|
|
|
+
|
|
const formatter = Intl.NumberFormat(
|
|
const formatter = Intl.NumberFormat(
|
|
document.documentElement.lang || userLocales || navigator.language,
|
|
document.documentElement.lang || userLocales || navigator.language,
|
|
{
|
|
{
|
|
- notation: "compact",
|
|
|
|
|
|
+ notation: formatterNotation,
|
|
|
|
+ compactDisplay: formatterCompactDisplay,
|
|
}
|
|
}
|
|
);
|
|
);
|
|
|
|
+ return formatter;
|
|
|
|
+}
|
|
|
|
|
|
- return formatter.format(roundDown(numberState));
|
|
|
|
|
|
+function getColorFromTheme(voteIsLike) {
|
|
|
|
+ let colorString;
|
|
|
|
+ switch (extConfig.colorTheme) {
|
|
|
|
+ case "accessible":
|
|
|
|
+ if (voteIsLike === true) {
|
|
|
|
+ colorString = "dodgerblue";
|
|
|
|
+ } else {
|
|
|
|
+ colorString = "gold";
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+ case "neon":
|
|
|
|
+ if (voteIsLike === true) {
|
|
|
|
+ colorString = "aqua";
|
|
|
|
+ } else {
|
|
|
|
+ colorString = "magenta";
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+ case "classic":
|
|
|
|
+ default:
|
|
|
|
+ if (voteIsLike === true) {
|
|
|
|
+ colorString = "lime";
|
|
|
|
+ } else {
|
|
|
|
+ colorString = "red";
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return colorString;
|
|
}
|
|
}
|
|
|
|
|
|
function setEventListeners(evt) {
|
|
function setEventListeners(evt) {
|