Youtube™ Shortcuts
Focus on the Youtube player with a the press of a button
Was ist Youtube™ Shortcuts?
Youtube™ Shortcuts ist eine Chrome-Erweiterung, die von Daniel Pham entwickelt wurde, und ihr Hauptmerkmal ist "Focus on the Youtube player with a the press of a button".
Erweiterungsscreenshots
Youtube™ Shortcuts-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube™ Shortcuts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A collection of keyboard shortcuts for YouTube to make navigation faster. Show shortcut - Shift + / Default Shortcuts: Focus on the player - "." (dot/period) Unfocus the current element - "Esc" Go to subscription box - "H" Go to user profile - "U" Navigate video list - "J" & "K" Navigate tab strip - "[ & ]" Follow link to new tab - "Shift + Enter" Like the video - "A" Dislike the video - "Z" Subscribe - "S" Add to playlist - "P" Expand video description - "O" Source Code: https://github.com/danhp/youtube-shortcuts
Grundlegende Informationen zur Erweiterung
Name | Youtube™ Shortcuts |
ID | fnapinimcdpmgkedhjbfckmpjppnbhba |
Offizielle URL | https://chrome.google.com/webstore/detail/youtube-shortcuts/fnapinimcdpmgkedhjbfckmpjppnbhba |
Beschreibung | Focus on the Youtube player with a the press of a button |
Dateigröße | 68.71 KB |
Installationsanzahl | 548 |
Aktuelle Version | 1.7.2 |
Letztes Update | 2019-11-19 |
Veröffentlichungsdatum | 2019-11-19 |
Bewertung | 2.85/5 Insgesamt 20 Bewertungen |
Entwickler | Daniel Pham |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/danhp/youtube-shortcuts |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube\u2122 Shortcuts", "version": "1.7.2", "description": "Focus on the Youtube player with a the press of a button", "homepage_url": "https:\/\/phamdaniel.github.io", "options_page": "options.html", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "run_at": "document_end", "css": [ "lib\/facebox.css", "popup.css" ], "js": [ "lib\/jquery-3.0.0.min.js", "lib\/keymaster.min.js", "lib\/facebox.js", "injected.js" ] } ], "web_accessible_resources": [ "popup.html" ] } |