Youtube™ Shortcuts
Focus on the Youtube player with a the press of a button
Qu'est-ce que Youtube™ Shortcuts ?
Youtube™ Shortcuts est une extension Chrome développée par Daniel Pham, et sa fonction principale est "Focus on the Youtube player with a the press of a button".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube™ Shortcuts
Téléchargez les fichiers d'extension Youtube™ Shortcuts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Youtube™ Shortcuts |
ID | fnapinimcdpmgkedhjbfckmpjppnbhba |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-shortcuts/fnapinimcdpmgkedhjbfckmpjppnbhba |
Description | Focus on the Youtube player with a the press of a button |
Taille du Fichier | 68.71 KB |
Nombre d'Installations | 548 |
Version Actuelle | 1.7.2 |
Dernière Mise à Jour | 2019-11-19 |
Date de Publication | 2019-11-19 |
Évaluation | 2.85/5 Total 20 Évaluations |
Développeur | Daniel Pham |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/danhp/youtube-shortcuts |
Langues Prises en Charge | 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" ] } |