Eagle Eye - फ्लोटिंग विंडो मध्ये व्हिडिओ पहा icon

Eagle Eye - फ्लोटिंग विंडो मध्ये व्हिडिओ पहा

Extension Actions

CRX ID
pecdkhjikgejgnlpccgmghcnalkggjaj
Status
  • Live on Store
Description from extension meta

एक लहान फ्लोटिंग विंडोमध्ये पूर्वावलोकन व्हिडिओ दुवे.

Image from store
Eagle Eye - फ्लोटिंग विंडो मध्ये व्हिडिओ पहा
Description from store

गरुड नेत्र ब्राउझर मध्ये मानक दुवे सुधारते. एक तळटीप दर्शविण्यासाठी YouTube दुवा आपला माउस ठेवा. आपण minimalistic, सानुकूल फ्लोटिंग विंडो मध्ये व्हिडिओ उघडण्यासाठी क्लिक करा शकता.

मध्ये चित्र-इन-चित्र (PIP) मोड व्हिडिओ पाहण्यासाठी वापरा गरुड डोळा.

आपण YouTube उघडून त्यांची शिफारस अल्गोरिदम विचलित मिळत टाळण्यासाठी कारण गरुड डोळा, उत्पादन क्षमता वाढते. आपण YouTube अवरोधित आणि विस्तार माध्यमातून आवश्यक सामग्री पाहू शकता.

गरुड नेत्र मित्र संवाद सुधारते - आपण ते गप्पा मारत असताना आपण पाठवू व्हिडिओ पाहू शकता. आपण Messenger मध्ये YouTube व्हिडिओ पूर्वावलोकन वापरू शकता. कायर्कारी अिभयंता सर्वत्र कार्य करते - मेसेंजर, मतभेद, ट्विटर, Google शोध किंवा इतर कोणत्याही यादृच्छिक वेबसाइट.

संशोधन सोपे केले - आपण एक व्हिडिओ दुवे की सामग्री वाचून दाखवत असाल तर, तुम्ही वाचत असताना आपण पाहू शकता.

वैशिष्ट्ये:
★ हे 100% विनामूल्य आहे.
★ स्वच्छ, किमानचौकटप्रबंधक, सुंदर डिझाइन.
★ आपण इच्छुक जेथे जेथे फ्लोटिंग विंडो हलवा.
तळाशी उजव्या कोपर्यात ओढून ★ आकार बदला.
★ फ्लोटिंग खेळाडू स्थान आणि आकार जतन केले जातात.
★ जलद वापरासाठी की बाइंडिंगची आहेत:
- गरुड डोळा उघडा दुवा [ALT + क्लिक करा]
- नि: शब्द विंडो उघडण्यासाठी [ALT + SHIFT + क्लिक करा] दुवा.
- [ESC] बंद
- [Alt + /] व्हिडिओ प्ले करा किंवा विराम.
★ आपण पर्याय मेनू मध्ये की बाइंडिंगची सानुकूलित करू शकता

=====================
दर अमेरिकन
=====================

आपण गरुड डोळा नाही? तो एक 5-स्टार रेटिंग देत आणि ते मित्रांसह सामायिक विचार :)

Latest reviews

eThax Kew
looks like this haven't been update for the long time for youtube shorts or portrait support add the followings and load it with developer mode. (if you need help, ask) globals.js 1) replace with these const EXTRACT_YOUTUBE_VIDEO_ID_REGEX = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(shorts\/)|(watch\?))\??v?=?([^#&?]*).*/ const EXTRACT_YOUTUBE_START_TIME_REGEX = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|shorts\/|watch\?v=|\&v=)([^#\&\?]*)(?:(\?t|\&t|&start)=(\d+))?.*/ open-screen.js at the end of function extractVideoId(value) 1) replace it with this return (match && match[8].length==11) ? match[8] : false; open-screen.js 1) in function isYoutubeVideoLink(target) replace with this const urlTests = ['youtube', 'youtu.be', 'watch', 'shorts'] 2) add this const isShorts = contains(target.href, ['shorts']); 3) at the end replace with this return { videoUrl: videoUrl, startTime: startTime, isShorts: isShorts} open-screen.js in eventtrigger $(document).on('click', '.eagle-eye-tooltip', function(ev) 1) at the end replace with this showPopup(isYoutube.videoUrl, isYoutube.startTime || 0, isYoutube.isShorts) index.js at this line function showPopup(videoId, startTime) 1) replace it with this function showPopup(videoId, startTime, isShorts=false) add this whole condition if (isShorts) { let tempTotalWidth = totalWidth; totalWidth = totalHeight; totalHeight = tempTotalWidth; } just above the line bellow (exactly as seen here) if (document.getElementsByClassName('overlay-yt-extension').length)
eThax Kew
looks like this haven't been update for the long time for youtube shorts or portrait support add the followings and load it with developer mode. (if you need help, ask) globals.js 1) replace with these const EXTRACT_YOUTUBE_VIDEO_ID_REGEX = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(shorts\/)|(watch\?))\??v?=?([^#&?]*).*/ const EXTRACT_YOUTUBE_START_TIME_REGEX = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|shorts\/|watch\?v=|\&v=)([^#\&\?]*)(?:(\?t|\&t|&start)=(\d+))?.*/ open-screen.js at the end of function extractVideoId(value) 1) replace it with this return (match && match[8].length==11) ? match[8] : false; open-screen.js 1) in function isYoutubeVideoLink(target) replace with this const urlTests = ['youtube', 'youtu.be', 'watch', 'shorts'] 2) add this const isShorts = contains(target.href, ['shorts']); 3) at the end replace with this return { videoUrl: videoUrl, startTime: startTime, isShorts: isShorts} open-screen.js in eventtrigger $(document).on('click', '.eagle-eye-tooltip', function(ev) 1) at the end replace with this showPopup(isYoutube.videoUrl, isYoutube.startTime || 0, isYoutube.isShorts) index.js at this line function showPopup(videoId, startTime) 1) replace it with this function showPopup(videoId, startTime, isShorts=false) add this whole condition if (isShorts) { let tempTotalWidth = totalWidth; totalWidth = totalHeight; totalHeight = tempTotalWidth; } just above the line bellow (exactly as seen here) if (document.getElementsByClassName('overlay-yt-extension').length)
Manuel Augman García
GREAT!!! Ecelente!!!
Asher GZ
Only works on the same page as the source video, making the whole floating aspect pointless
Asher GZ
Only works on the same page as the source video, making the whole floating aspect pointless
forpost 0001
Работает только на той вкладке ,где оно запущено! :(
Arthur J
great!
Виктория Генова
It's useful if you want to open a video right away instead of going to the page
Виктория Генова
It's useful if you want to open a video right away instead of going to the page
Radostin Angelov
It's amazing!
Radostin Angelov
It's amazing!