Simple YouTube Windowed Fullscreen
Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
Simple YouTube Windowed Fullscreenとは何ですか?
Simple YouTube Windowed Fullscreenはhttps://srnyx.comによって開発されたChromeの拡張機能で、その主な機能は「Open YouTube videos in fullscreen in it's own window (windowed fullscreen)」です。
拡張機能のスクリーンショット
Simple YouTube Windowed Fullscreen拡張機能のCRXファイルをダウンロード
Simple YouTube Windowed Fullscreen拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple YouTube Windowed Fullscreen is an extremely simple extension (only 12 lines of code) that allows you to open YouTube videos in their own pop-up windows.
This is great if you're watching a long video or movie and want to multi-task. Or, you just like being able to see your taskbar and to easily manage the YouTube video's display.
This was made in a few hours (had to learn a bit of JavaScript and Chrome API), but I'd be happy to add any new features and to fix any bugs!
GitHub (source code): https://simple-youtube-windowed-fullscreen.srnyx.com 拡張機能の基本情報
| 名前 | |
| ID | pbihmiiillncegkbfnfkmlcjkpagehgh |
| 公式URL | https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh |
| 説明 | Open YouTube videos in fullscreen in it's own window (windowed fullscreen) |
| ファイルサイズ | 21.2 KB |
| インストール数 | 20 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2023-08-25 |
| 公開日 | 2023-03-29 |
| 評価 | 4.00/5 合計 3 レビュー |
| 開発者 | https://srnyx.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://srnyx.com |
| ヘルプページのURL | https://srnyx.com/discord |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "1.0.0",
"name": "Simple YouTube Windowed Fullscreen",
"description": "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)",
"author": "[email protected]",
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"64": "icons\/icon64.png",
"80": "icons\/icon80.png",
"96": "icons\/icon96.png",
"112": "icons\/icon112.png",
"128": "icons\/icon128.png"
},
"default_title": "Open video in windowed fullscreen"
},
"permissions": [
"tabs"
],
"background": {
"service_worker": "background.js"
}
} | |