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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |