Youtube™ Shortcuts
Focus on the Youtube player with a the press of a button
什麼是Youtube™ Shortcuts?
Youtube™ Shortcuts是由Daniel Pham開發的Chrome擴展程式,該擴展的主要功能是“Focus on the Youtube player with a the press of a button”。
擴展截圖
下載Youtube™ Shortcuts擴展crx文件
下載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
擴展基本資訊
名稱 | Youtube™ Shortcuts |
ID | fnapinimcdpmgkedhjbfckmpjppnbhba |
官方網址 | 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" ] } |