Comment Overlay
Read comments and watch Youtube videos at the same time.
Comment Overlayとは何ですか?
Comment OverlayはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Read comments and watch Youtube videos at the same time.」です。
拡張機能のスクリーンショット
Comment Overlay拡張機能のCRXファイルをダウンロード
Comment Overlay拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Comment Overlay allows you to read comments while watching YouTube videos. Comments are shown as an overlay on top the video. You can show/hide comments by clicking the extension button.
Version 1.2
- Dark Mode added.
Version 1.1:
- Theater mode is now supported.
Version 1.0:
- Original release. 拡張機能の基本情報
| 名前 | |
| ID | mjkhjmibjakfenpldlgjogpiebkjliec |
| 公式URL | https://chromewebstore.google.com/detail/comment-overlay/mjkhjmibjakfenpldlgjogpiebkjliec |
| 説明 | Read comments and watch Youtube videos at the same time. |
| ファイルサイズ | 53.86 KB |
| インストール数 | 251 |
| 現在のバージョン | 1.2 |
| 最終更新日 | 2018-11-21 |
| 公開日 | 2018-11-20 |
| 評価 | 3.83/5 合計 6 レビュー |
| 開発者 | Unknown |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Comment Overlay",
"version": "1.2",
"web_accessible_resources": [
"mypage.htm"
],
"description": "Read comments and watch Youtube videos at the same time.",
"permissions": [
"activeTab",
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"exclude_globs": [],
"include_globs": [
"https:\/\/www.youtube.com\/watch*?v=*",
"https:\/\/www.youtube.com\/"
],
"js": [
"jquery-3.3.1.min.js",
"content.js",
"popup.js"
],
"matches": [
"https:\/\/www.youtube.com\/watch*",
"https:\/\/www.youtube.com\/"
]
}
],
"browser_action": {
"default_title": "Comment Overlay",
"default_popup": "popup.html"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"manifest_version": 2
} | |