changelog.js 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* Config */
  2. const config = {
  3. advanced: false,
  4. disableVoteSubmission: false,
  5. coloredThumbs: false,
  6. coloredBar: false,
  7. colorTheme: "classic",
  8. numberDisplayFormat: "compactShort",
  9. showAdvancedMessage:
  10. '<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor"><rect fill="none" height="24" width="24"/><path d="M19.5,12c0-0.23-0.01-0.45-0.03-0.68l1.86-1.41c0.4-0.3,0.51-0.86,0.26-1.3l-1.87-3.23c-0.25-0.44-0.79-0.62-1.25-0.42 l-2.15,0.91c-0.37-0.26-0.76-0.49-1.17-0.68l-0.29-2.31C14.8,2.38,14.37,2,13.87,2h-3.73C9.63,2,9.2,2.38,9.14,2.88L8.85,5.19 c-0.41,0.19-0.8,0.42-1.17,0.68L5.53,4.96c-0.46-0.2-1-0.02-1.25,0.42L2.41,8.62c-0.25,0.44-0.14,0.99,0.26,1.3l1.86,1.41 C4.51,11.55,4.5,11.77,4.5,12s0.01,0.45,0.03,0.68l-1.86,1.41c-0.4,0.3-0.51,0.86-0.26,1.3l1.87,3.23c0.25,0.44,0.79,0.62,1.25,0.42 l2.15-0.91c0.37,0.26,0.76,0.49,1.17,0.68l0.29,2.31C9.2,21.62,9.63,22,10.13,22h3.73c0.5,0,0.93-0.38,0.99-0.88l0.29-2.31 c0.41-0.19,0.8-0.42,1.17-0.68l2.15,0.91c0.46,0.2,1,0.02,1.25-0.42l1.87-3.23c0.25-0.44,0.14-0.99-0.26-1.3l-1.86-1.41 C19.49,12.45,19.5,12.23,19.5,12z M12.04,15.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S13.97,15.5,12.04,15.5z"/></svg>',
  11. hideAdvancedMessage:
  12. '<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor"><path d="M0 0h24v24H0V0z" fill="none" opacity=".87"/><path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm4.3 14.3c-.39.39-1.02.39-1.41 0L12 13.41 9.11 16.3c-.39.39-1.02.39-1.41 0-.39-.39-.39-1.02 0-1.41L10.59 12 7.7 9.11c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L12 10.59l2.89-2.89c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41L13.41 12l2.89 2.89c.38.38.38 1.02 0 1.41z"/></svg>',
  13. links: {
  14. website: "https://returnyoutubedislike.com",
  15. github: "https://github.com/Anarios/return-youtube-dislike",
  16. discord: "https://discord.gg/mYnESY4Md5",
  17. donate: "https://returnyoutubedislike.com/donate",
  18. faq: "https://returnyoutubedislike.com/faq",
  19. help: "https://returnyoutubedislike.com/help",
  20. },
  21. };
  22. /* Change language */
  23. function localizeHtmlPage() {
  24. //Localize by replacing __MSG_***__ meta tags
  25. var objects = document.getElementsByTagName("html");
  26. for (var j = 0; j < objects.length; j++) {
  27. var obj = objects[j];
  28. var valStrH = obj.innerHTML.toString();
  29. var valNewH = valStrH.replace(/__MSG_(\w+)__/g, function (match, v1) {
  30. return v1 ? chrome.i18n.getMessage(v1) : "";
  31. });
  32. if (valNewH != valStrH) {
  33. obj.innerHTML = valNewH;
  34. }
  35. }
  36. }
  37. localizeHtmlPage();
  38. /* Links */
  39. createLink(config.links.website, "link_website");
  40. createLink(config.links.github, "link_github");
  41. createLink(config.links.discord, "link_discord");
  42. createLink(config.links.faq, "link_faq");
  43. createLink(config.links.donate, "link_donate");
  44. createLink(config.links.help, "link_help");
  45. function createLink(url, id) {
  46. document.getElementById(id).addEventListener("click", () => {
  47. chrome.tabs.create({ url: url });
  48. });
  49. }