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 για να δείξει μια επεξήγηση εργαλείου. Μπορείτε να κάνετε κλικ για να ανοίξει το βίντεο σε μια μινιμαλιστική, προσαρμόσιμη κινητό παράθυρο.

Χρησιμοποιήστε Eagle Eye για να δείτε τα βίντεο σε λειτουργία Picture-in-Picture (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!