Procházet zdrojové kódy

1.0.0.2 - updated backend URL

Dmitrii Selivanov před 3 roky
rodič
revize
1906cf5f98

+ 1 - 1
Extensions/chrome/manifest.json

@@ -1,7 +1,7 @@
 {
   "name": "Return YouTube Dislike",
   "description": "Returns ability to see dislikes",
-  "version": "0.0.0.9",
+  "version": "1.0.0.2",
   "manifest_version": 3,
   "background": {
     "service_worker": "return-youtube-dislike.background.js"

+ 1 - 1
Extensions/chrome/popup.html

@@ -18,7 +18,7 @@
       <button id="link_discord">Discord</button>
 
       <br>
-      <button id="advancedToggle">Show Advanced</button>
+<!--      <button id="advancedToggle">Show Advanced</button>-->
 
     </center>
 

+ 1 - 1
Extensions/chrome/return-youtube-dislike.background.js

@@ -1,4 +1,4 @@
-const apiUrl = "https://return-youtube-dislike-api.azurewebsites.net";
+const apiUrl = "https://returnyoutubedislikeapi.com";
 
 // Security token causes issues if extension is reloaded/updated while several tabs are open
 // const securityToken = Math.random().toString(36).substring(2, 15);

+ 1 - 1
Extensions/firefox/manifest.json

@@ -1,7 +1,7 @@
 {
   "name": "Return YouTube Dislike",
   "description": "Returns ability to see dislikes",
-  "version": "0.0.0.9",
+  "version": "1.0.0.2",
   "manifest_version": 2,
   "background": {
     "scripts": ["return-youtube-dislike.background.js"]

+ 1 - 1
Extensions/firefox/popup.html

@@ -18,7 +18,7 @@
       <button id="link_discord">Discord</button>
 
       <br>
-      <button id="advancedToggle">Show Advanced</button>
+<!--      <button id="advancedToggle">Show Advanced</button>-->
 
     </center>
 

+ 1 - 1
Extensions/firefox/return-youtube-dislike.background.js

@@ -1,4 +1,4 @@
-const apiUrl = "https://return-youtube-dislike-api.azurewebsites.net";
+const apiUrl = "https://returnyoutubedislikeapi.com";
 
 browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
   if (request.message === "get_auth_token") {

+ 19 - 30
Extensions/firefox/return-youtube-dislike.script.js

@@ -236,37 +236,26 @@ function createRateBar(likes, dislikes) {
   }
 }
 
-// function sendVideoIds() {
-//   const ids = Array.from(
-//     document.getElementsByClassName(
-//       "yt-simple-endpoint ytd-compact-video-renderer"
-//     )
-//   )
-//   .concat(
-//     Array.from(
-//       document.getElementsByClassName("yt-simple-endpoint ytd-thumbnail")
-//     )
-//   )
-//   .filter((x) => x.href && x.href.indexOf("/watch?v=") > 0)
-//   .map((x) => getVideoId(x.href));
-//   browser.runtime.sendMessage({
-//     message: "send_links",
-//     videoIds: ids,
-//   });
-// }
+function sendVideoIds() {
+  const ids = Array.from(
+    document.getElementsByClassName(
+      "yt-simple-endpoint ytd-compact-video-renderer"
+    )
+  )
+  .concat(
+    Array.from(
+      document.getElementsByClassName("yt-simple-endpoint ytd-thumbnail")
+    )
+  )
+  .filter((x) => x.href && x.href.indexOf("/watch?v=") > 0)
+  .map((x) => getVideoId(x.href));
+  browser.runtime.sendMessage({
+    message: "send_links",
+    videoIds: ids,
+  });
+}
 
 setEventListeners();
 
-// document.addEventListener("yt-navigate-finish", function (event) {
-//   if (jsInitChecktimer !== null) clearInterval(jsInitChecktimer);
-//   window.returnDislikeButtonlistenersSet = false;
-//   setEventListeners();
-// });
-
-// window.onscrollend = () => {
-//   sendVideoIds();
-// };
-//
-// setTimeout(() => sendVideoIds(), 1500);
+setTimeout(() => sendVideoIds(), 1500);
 
-//window.addEventListener("hashchange", setEventListeners, false);