Youtube™ Shortcuts
Focus on the Youtube player with a the press of a button
Τι είναι το Youtube™ Shortcuts;
Το Youtube™ Shortcuts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Daniel Pham, και η κύρια λειτουργία του είναι "Focus on the Youtube player with a the press of a button".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Youtube™ Shortcuts
Λήψη αρχείων επέκτασης Youtube™ Shortcuts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | fnapinimcdpmgkedhjbfckmpjppnbhba |
| Επίσημο URL | https://chrome.google.com/webstore/detail/youtube-shortcuts/fnapinimcdpmgkedhjbfckmpjppnbhba |
| Περιγραφή | Focus on the Youtube player with a the press of a button |
| Μέγεθος Αρχείου | 68.71 KB |
| Αριθμός Εγκαταστάσεων | 548 |
| Τρέχουσα Έκδοση | 1.7.2 |
| Τελευταία Ενημέρωση | 2019-11-19 |
| Ημερομηνία Δημοσίευσης | 2019-11-19 |
| Αξιολόγηση | 2.85/5 Συνολικά 20 Αξιολογήσεις |
| Προγραμματιστής | Daniel Pham |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://github.com/danhp/youtube-shortcuts |
| Υποστηριζόμενες Γλώσσες | 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"
]
} | |