YouTube Shorts 轉普通視頻

立即將 YouTube Shorts 影片重定向到正常影片視圖,以便您儲存、下載、選擇品質等。

  1. // ==UserScript==
  2. // @name YouTube Shorts To Normal Video
  3. // @name:de YouTube-Shorts Zum Normalen Video
  4. // @name:es Cortos De YouTube A Video Normal
  5. // @name:fr Short YouTube Vers Vidéo Normale
  6. // @name:hi यूट्यूब शॉर्ट्स से सामान्य वीडियो तक
  7. // @name:id YouTube Shorts Ke Video Normal
  8. // @name:it Da YouTube Shorts A Video Normale
  9. // @name:ja YouTube ショートから通常の動画へ
  10. // @name:ko YouTube Shorts를 일반 비디오로
  11. // @name:nl YouTube Shorts Naar Normale Video
  12. // @name:pt-BR YouTube Shorts Para Vídeo Normal
  13. // @name:ru YouTube Shorts В Обычное Видео
  14. // @name:th YouTube Shorts สู่วิดีโอปกติ
  15. // @name:tr YouTube Shorts'tan Normal Videoya
  16. // @name:vi YouTube Shorts Thành Video Bình Thường
  17. // @name:zh-CN YouTube Shorts 转普通视频
  18. // @name:zh-TW YouTube Shorts 轉普通視頻
  19. // @namespace https://github.com/tientq64/userscripts
  20. // @version 1.1.0
  21. // @description Instantly redirect YouTube Shorts videos to normal video view, allowing you to save, download, choose quality, etc.
  22. // @description:de Leiten Sie YouTube Shorts-Videos sofort zur normalen Videoansicht weiter, sodass Sie sie speichern, herunterladen, die Qualität auswählen usw. können.
  23. // @description:es Redirecciona instantáneamente los videos de YouTube Shorts a la vista de video normal, lo que te permite guardarlos, descargarlos, elegir la calidad, etc.
  24. // @description:fr Redirige instantanément les vidéos YouTube Shorts vers une vue vidéo normale, vous permettant d'enregistrer, de télécharger, de choisir la qualité, etc.
  25. // @description:hi YouTube शॉर्ट्स वीडियो को तुरंत सामान्य वीडियो दृश्य में पुनर्निर्देशित करें, जिससे आप सहेज सकें, डाउनलोड कर सकें, गुणवत्ता चुन सकें, आदि।
  26. // @description:id Langsung mengalihkan video YouTube Shorts ke tampilan video normal, sehingga Anda dapat menyimpan, mengunduh, memilih kualitas, dan lain-lain.
  27. // @description:it Reindirizza immediatamente i video di YouTube Shorts alla visualizzazione video normale, consentendoti di salvare, scaricare, scegliere la qualità, ecc.
  28. // @description:ja YouTube Shorts 動画を通常の動画ビューに即座にリダイレクトし、保存、ダウンロード、品質の選択などを行うことができます。
  29. // @description:ko YouTube Shorts 동영상을 일반 동영상 보기로 즉시 리디렉션하여 저장, 다운로드, 품질 선택 등이 가능합니다.
  30. // @description:nl Stuur YouTube Shorts-video's direct door naar de normale videoweergave, zodat u ze kunt opslaan, downloaden, de kwaliteit kunt kiezen, enz.
  31. // @description:pt-BR Redirecione instantaneamente os vídeos do YouTube Shorts para a visualização normal, permitindo que você salve, baixe, escolha a qualidade, etc.
  32. // @description:ru Мгновенно перенаправляет видеоролики YouTube Shorts в обычный режим просмотра, позволяя сохранять, загружать, выбирать качество и т. д.
  33. // @description:th เปลี่ยนเส้นทางวิดีโอ YouTube Shorts ไปยังมุมมองวิดีโอปกติทันที ช่วยให้คุณบันทึก ดาวน์โหลด เลือกคุณภาพ ฯลฯ ได้
  34. // @description:tr Redirecciona instantáneamente los videos de YouTube Shorts a la vista de video normal, lo que te permite guardarlos, descargarlos, elegir la calidad, etc.
  35. // @description:vi Chuyển hướng ngay lập tức video YouTube Shorts sang chế độ xem video thông thường, cho phép bạn lưu, tải xuống, chọn chất lượng, v.v.
  36. // @description:zh-CN 立即将 YouTube Shorts 视频重定向至普通视频视图,让您可以保存、下载、选择质量等。
  37. // @description:zh-TW 立即將 YouTube Shorts 影片重定向到正常影片視圖,以便您儲存、下載、選擇品質等。
  38. // @author tientq64
  39. // @icon https://cdn-icons-png.flaticon.com/64/3670/3670147.png
  40. // @match https://www.youtube.com/*
  41. // @match https://m.youtube.com/*
  42. // @exclude https://studio.youtube.com/*
  43. // @license MIT
  44. // @grant none
  45. // @noframes
  46. // @homepage https://github.com/tientq64/userscripts/tree/main/scripts/YouTube-Shorts-To-Normal-Video
  47. // ==/UserScript==
  48.  
  49. function redirect() {
  50. const isShorts = location.pathname.startsWith('/shorts/')
  51. if (isShorts) {
  52. const newUrl = location.href.replace('/shorts/', '/watch?v=')
  53. location.replace(newUrl)
  54. }
  55. }
  56.  
  57. document.addEventListener('yt-navigate-start', redirect)
  58. redirect()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址