YouTube Enhanced Extension
A third party thing that makes watching YouTube videos a little bit better.
O que é YouTube Enhanced Extension?
YouTube Enhanced Extension é uma extensão do Chrome desenvolvida por Black Cat Milo, e sua principal característica é "A third party thing that makes watching YouTube videos a little bit better.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Enhanced Extension
Baixe arquivos de extensão YouTube Enhanced Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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:
Informações Básicas da Extensão
Nome | YouTube Enhanced Extension |
ID | oobgojiochekabnidddglbpbikhnfidb |
URL Oficial | https://chromewebstore.google.com/detail/youtube-enhanced-extensio/oobgojiochekabnidddglbpbikhnfidb |
Descrição | A third party thing that makes watching YouTube videos a little bit better. |
Tamanho do Arquivo | 4.96 MB |
Contagem de Instalações | 615 |
Versão Atual | 2.0.2 |
Última Atualização | 2022-12-23 |
Data de Publicação | 2021-12-14 |
Classificação | 4.78/5 Total de 41 Avaliações |
Desenvolvedor | Black Cat Milo |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |