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

چشم عقاب را بهبود می بخشد لینک های استاندارد در مرورگر. موس خود را بر روی یک لینک یوتیوب برای نشان دادن یک ابزار را. شما می توانید روی آن کلیک کنید برای باز کردن ویدیو در یک حداقلی، پنجره شناور قابل تنظیم است.

استفاده از چشم عقاب برای مشاهده فیلم ها در تصویر-در-تصویر (PIP) حالت.

چشم عقاب افزایش بهره وری، دلیل این که شما جلوگیری از باز کردن یوتیوب و گرفتن توسط الگوریتم توصیه خود منحرف شده است. شما می توانید یوتیوب را مسدود و تماشای محتوای لازم از طریق توسعه.

چشم عقاب را بهبود می بخشد ارتباط با دوستان - شما می توانید فیلم آنها به شما در حالی که چت ارسال را تماشا کنید. شما می توانید از آن استفاده کنید پیش نمایش فیلم های یوتیوب در مسنجر. EE کار می کند در همه جا - مسنجر، اختلافات، توییتر، گوگل جستجو یا هر وب سایت به صورت تصادفی است.

تحقیقات ساخته شده آسان تر - اگر شما در حال خواندن محتوای است که لینک به یک ویدیو، شما می توانید آن را تماشا در حالی که شما در حال خواندن.

امکانات:
★ این 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!