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

Eagle Eye ช่วยเพิ่มการเชื่อมโยงมาตรฐานในเบราว์เซอร์ วางเมาส์ของคุณผ่านการเชื่อมโยง YouTube เพื่อแสดงคำแนะนำเครื่องมือ คุณสามารถคลิกเพื่อเปิดวิดีโอใน minimalistic, หน้าต่างลอยปรับแต่ง

ใช้ Eagle Eye เพื่อดูวิดีโอในโหมดภาพในภาพ (PIP)

Eagle Eye เพิ่มผลผลิตเพราะคุณหลีกเลี่ยงการเปิด YouTube และได้รับการฟุ้งซ่านโดยขั้นตอนวิธีการคำแนะนำของพวกเขา คุณสามารถปิดกั้น YouTube และดูเนื้อหาที่จำเป็นผ่านนามสกุล

Eagle Eye ช่วยเพิ่มการติดต่อสื่อสารกับเพื่อน ๆ - คุณสามารถดูวิดีโอที่พวกเขาส่งคุณในขณะที่พูดคุย คุณสามารถใช้มันดูตัวอย่างวิดีโอ YouTube ใน Messenger ได้ EE ทำงานทุกที่ - Messenger ให้ความขัดแย้ง, Twitter, Google Search หรือเว็บไซต์สุ่มอื่น ๆ

งานวิจัยที่ทำง่าย - ถ้าคุณกำลังอ่านเนื้อหาที่มีการเชื่อมโยงไปยังวิดีโอที่คุณสามารถดูได้ในขณะที่คุณกำลังอ่าน

คุณสมบัติ:
★มันเป็น 100% ฟรี
★สะอาดเรียบง่าย, การออกแบบที่สวยงาม
★ย้ายหน้าต่างลอยทุกที่ที่คุณต้องการ
★ปรับขนาดโดยการลากที่มุมขวาล่าง
★ตำแหน่งผู้เล่นลอยและขนาดจะถูกบันทึกไว้
★มีปุ่มลัดสำหรับการใช้งานได้อย่างรวดเร็ว:
- [ALT + คลิก] เชื่อมโยงไปยังเปิด Eagle Eye
- [Alt + Shift + คลิก] เชื่อมโยงไปเปิดหน้าต่างปิดเสียง
- [ESC] เพื่อปิด
- [ALT + /] เพื่อเล่นหรือหยุดวิดีโอ
★คุณสามารถปรับแต่งปุ่มลัดในเมนูตัวเลือก

=====================
คะแนนเรา
=====================

คุณชอบ Eagle Eye? พิจารณาให้มันเป็นคะแนนระดับ 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!