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 खोलने और उनके सिफारिश एल्गोरिथ्म से विचलित से बचने के। आप यूट्यूब ब्लॉक और विस्तार के माध्यम से आवश्यक सामग्री देख सकते हैं।

ईगल नेत्र दोस्तों के साथ संचार को बेहतर बनाता है - आप वीडियो वे तुम्हें जबकि बातें भेज देख सकते हैं। आप इसे मैसेंजर में यूट्यूब वीडियो का पूर्वावलोकन कर सकते हैं। ईई हर जगह काम करता है - मैसेंजर, कलह, ट्विटर, गूगल खोज या किसी अन्य यादृच्छिक वेबसाइट।

रिसर्च आसान बना दिया - आप सामग्री है कि एक वीडियो के लिंक हों पढ़ रहे हैं, तो आप इसे देख सकते हैं, जबकि आप पढ़ रहे हैं।

विशेषताएं:
★ यह 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!