YTPlayer
Youtube Player
YTPlayerとは何ですか?
YTPlayerはfdal omarによって開発されたChromeの拡張機能で、その主な機能は「Youtube Player」です。
拡張機能のスクリーンショット
YTPlayer拡張機能のCRXファイルをダウンロード
YTPlayer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
YTPlayer helps you control all of your opened Youtube videos either using keyboard shortcuts or directly using its popup window.
The player has audio controls + focus button which focus on a tab, skip button which skip the ad if any, and a button to show suggested youtube videos (exclamation mark icon). 拡張機能の基本情報
| 名前 | |
| ID | pakpfpcgppmjfecdmicncjoihpeledem |
| 公式URL | https://chromewebstore.google.com/detail/ytplayer/pakpfpcgppmjfecdmicncjoihpeledem |
| 説明 | Youtube Player |
| ファイルサイズ | 112 KB |
| インストール数 | 1,397 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2020-10-04 |
| 公開日 | 2020-08-30 |
| 評価 | 4.00/5 合計 1 レビュー |
| 開発者 | fdal omar |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YTPlayer",
"description": "Youtube Player",
"version": "1.1",
"options_page": "pages\/options\/opts.html",
"browser_action": {
"default_icon": "assets\/icons\/128.png",
"default_popup": "pages\/popup\/popup.html",
"default_title": "YTPlayer"
},
"commands": {
"Play": {
"suggested_key": {
"windows": "Ctrl+Shift+Y"
},
"description": "Play the video",
"global": true
},
"Next": {
"suggested_key": {
"windows": "Ctrl+Shift+F"
},
"description": "Next video",
"global": true
},
"Reload": {
"suggested_key": {
"windows": "Ctrl+Shift+E"
},
"description": "Load\/Reload video",
"global": true
},
"Skip": {
"suggested_key": {
"windows": "Ctrl+Shift+K"
},
"description": "Skip Ad",
"global": true
}
},
"icons": {
"16": "assets\/icons\/16.png",
"48": "assets\/icons\/48.png",
"128": "assets\/icons\/128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/watch*"
],
"js": [
"pages\/cs\/cs.js"
]
}
],
"permissions": [
"tabs",
"https:\/\/www.youtube.com\/watch*",
"notifications"
],
"background": {
"scripts": [
"pages\/bg\/background.js"
],
"persistent": false
}
} | |