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, ሊበጅ የሚችል ተንሳፋፊ መስኮት ውስጥ ያለውን ቪዲዮ ለመክፈት ጠቅ ይችላሉ.

ተጠቀም ንስር ዓይን ፎቶ-በ-ፎቶ (ፒአይፒ) ሁነታ ላይ ቪዲዮዎችን ለማየት.

የ YouTube የመክፈቻ እና ምክር ስልተ ትኩረታቸው መራቅ ስለ ንስር አይን, ምርታማነትን ይጨምራል. የ YouTube ን ለማገድ እና ቅጥያው አማካኝነት አስፈላጊ ይዘት መመልከት ይችላሉ.

ንስር ዓይን ከጓደኞች ጋር ግንኙነት ያሻሽላል - እነሱ ሲወያዩ ሳሉ መላክ ቪዲዮዎች መመልከት ይችላሉ. አንተ Messenger ውስጥ YouTube ቪዲዮዎች ቅድመ ዕይታ መጠቀም ይችላሉ. EE በሁሉም ቦታ ላይ ይሰራል - Messenger, ብጥብጥ, ትዊተር, Google ፍለጋ ወይም ሌላ ማንኛውም ነሲብ ድረ.

ምርምር ቀላል እንዲሆን - አንድ ቪዲዮ አገናኞችን ያለው ይዘት በማንበብ ከሆነ እያነበብክ ሳለ, አንተ ልታየው ትችላለህ.

ዋና መለያ ጸባያት:
★ ይህ 100% ነፃ ነው.
★ ንጹሕ, ተደረጎ, የሚያምር ንድፍ.
እርስዎ የሚፈልጉትን በየትኛውም ተንሳፋፊ መስኮት ውሰድ ★.
ከታች በስተቀኝ ጥግ በመጎተት ★ መጠን መቀየሪያ.
★ የ ተንሳፋፊ የአጫዋች ቦታ እና መጠን ተቀምጠዋል.
★ ፈጣን አጠቃቀም ቁልፍ ማሰሪያዎች አሉ:
- ክፍት ንስር ዓይን ወደ አገናኝ [ALT + ጠቅ ያድርጉ]
- ድምጸ-መስኮቱን ለመክፈት አገናኝ [ALT + SHIFT + ጠቅ].
- የቅርብ ወደ [ESC]
- [Alt + /] መጫወት ወይም ቪዲዮውን ለአፍታ.
★ የ አማራጮች ምናሌ ውስጥ ቁልፍ ማሰሪያዎች ማበጀት ይችላሉ

=====================
RATE አሜሪካ
=====================

አንተ ንስር ዓይን እንደ አድርግ? ይህም የ 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!