YouTube Shorts 轉普通視頻

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

目前為 2024-08-24 提交的版本,檢視 最新版本

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

QingJ © 2025

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