Youtube™ Shortcuts
Focus on the Youtube player with a the press of a button
Youtube™ Shortcuts là gì?
Youtube™ Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi Daniel Pham, và tính năng chính của nó là "Focus on the Youtube player with a the press of a button".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube™ Shortcuts
Tải xuống các tệp mở rộng Youtube™ Shortcuts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube™ Shortcuts |
ID | fnapinimcdpmgkedhjbfckmpjppnbhba |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-shortcuts/fnapinimcdpmgkedhjbfckmpjppnbhba |
Mô tả | Focus on the Youtube player with a the press of a button |
Kích Thước Tệp | 68.71 KB |
Số Lần Cài Đặt | 548 |
Phiên Bản Hiện Tại | 1.7.2 |
Cập Nhật Lần Cuối | 2019-11-19 |
Ngày Phát Hành | 2019-11-19 |
Đánh Giá | 2.85/5 Tổng số 20 Đánh Giá |
Nhà Phát Triển | Daniel Pham |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/danhp/youtube-shortcuts |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |