YouTube Enhanced Extension
A third party thing that makes watching YouTube videos a little bit better.
什麼是YouTube Enhanced Extension?
YouTube Enhanced Extension是由Black Cat Milo開發的Chrome擴展程式,該擴展的主要功能是“A third party thing that makes watching YouTube videos a little bit better.”。
擴展截圖
下載YouTube Enhanced Extension擴展crx文件
下載YouTube Enhanced Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension currently does the following:
-Enables emotes for comments (mostly forsen's Twitch, BTTV, and FFZ emotes, both static and animated).
-In-video Comments - where if you post a comment with a timestamp at the beginning, it will show up on the video at that time. Emotes are also enabled for this.
Okayga :+1: 擴展基本資訊
| 名稱 | |
| ID | oobgojiochekabnidddglbpbikhnfidb |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-enhanced-extensio/oobgojiochekabnidddglbpbikhnfidb |
| 簡介 | A third party thing that makes watching YouTube videos a little bit better. |
| 檔案大小 | 4.96 MB |
| 安裝次數 | 615 |
| 目前版本 | 2.0.2 |
| 更新時間 | 2022-12-23 |
| 上架時間 | 2021-12-14 |
| 評分 | 4.78/5 共 41 次評分 |
| 開發者 | Black Cat Milo |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Enhanced Extension",
"version": "2.0.2",
"manifest_version": 3,
"description": "A third party thing that makes watching YouTube videos a little bit better.",
"permissions": [
"cookies",
"tabs"
],
"icons": {
"128": "icon.png"
},
"host_permissions": [
"https:\/\/www.youtube.com\/"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"emotes\/images\/*"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"global-content-script.js",
"setting-container\/setting-container.js",
"emotes\/emotes.js",
"in-video-comments\/in-video-comments.js"
],
"css": [
"setting-container\/setting-container.css",
"emotes\/emotes.css",
"in-video-comments\/in-video-comments.css"
]
}
]
} | |