Youtube Search Navigator
Adds keyboard shortcuts to Youtube Search Pages! Yaay!
Co to jest Youtube Search Navigator?
Youtube Search Navigator to rozszerzenie Chrome opracowane przez hristoapps, a jego główną funkcją jest „Adds keyboard shortcuts to Youtube Search Pages! Yaay!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube Search Navigator
Pobierz pliki rozszerzeń Youtube Search Navigator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension is for all the people out there who like to save some time, and use shortcuts! It adds arrow key search possibility in Youtube search bar. KEEP IN MIND! This extension is still in development, so some bugs may come up here and there! ALSO KEEP IN MIND! It works only with the newest version of Youtube, which you can check out at youtube.com/new
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nplfabbikfflncpadioencndbagkhhhi |
Oficjalny URL | https://chrome.google.com/webstore/detail/youtube-search-navigator/nplfabbikfflncpadioencndbagkhhhi |
Opis | Adds keyboard shortcuts to Youtube Search Pages! Yaay! |
Rozmiar pliku | 15.67 KB |
Liczba instalacji | 75 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2018-01-30 |
Data Publikacji | 2018-01-30 |
Ocena | 4.20/5 Łącznie 5 Oceny |
Deweloper | hristoapps |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Search Navigator", "version": "0.0.2", "description": "Adds keyboard shortcuts to Youtube Search Pages! Yaay!", "background": { "scripts": [ "eventPage.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "keymaster.min.js", "youtube_navigation.js" ], "css": [ "result.css" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/www.youtube.com\/*", "activeTab", "tabs", "storage" ], "icons": { "16": "icon16.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" } } |