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 ব্লক এবং এক্সটেনশন মাধ্যমে প্রয়োজনীয় বিষয়বস্তু দেখতে পারেন।

ঈগল আই বন্ধুদের সাথে যোগাযোগ উন্নত - আপনি ভিডিও তারা তোমাকে যখন চ্যাটিং পাঠাতে দেখতে পারেন। আপনি এটা রসূল YouTube ভিডিওগুলি পূর্বরূপ ব্যবহার করতে পারেন। ই ই সর্বত্র কাজ করে - রসূল, বিভেদ, টুইটার, Google অনুসন্ধান বা অন্য কোন র্যান্ডম ওয়েবসাইট।

গবেষণা সহজ করে - আপনি সামগ্রী রয়েছে যা একটি ভিডিওতে লিঙ্ক আছে পড়ছেন, তাহলে আপনি এটি দেখতে পারেন যখন আপনি পড়ছেন।

বৈশিষ্ট্য:
★ এটা 100% বিনামূল্যে।
★ ক্লিন, অল্পস্বল্প, সুন্দর নকশা।
★ ভাসমান উইন্ডো যেখানেই থাকুন না কেন আপনি চান সরান।
★ পুনরায় মাপ নীচের অংশে ডানদিকে কোণায় টেনে এনে।
★ ভাসমান খেলোয়াড় অবস্থান ও আকার সংরক্ষিত হয়।
★ দ্রুত ব্যবহারের জন্য কী বাইন্ডিং আছে:
- খোলা ঈগল চোখ থেকে লিঙ্ক [করতে ALT + ক্লিক করুন]
- জানালা নিঃশব্দ খুলতে [ALT + SHIFT + ক্লিক করুন] লিঙ্ক।
- [চট্টগ্রাম সিটি কর্পোরেশন] বন্ধ
- [Alt + /] খেলার অথবা ভিডিও বিরাম।
★ আপনি বিকল্প মেনু কী বাইন্ডিং কাস্টমাইজ করতে পারেন

=====================
আমাদের ব্যাপারে আপনার মতামত দিন
=====================

আপনি Eagle আই পছন্দ করেন? এটি একটি 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!