BTS Eng Sub Finder
Base Level Extension
O que é BTS Eng Sub Finder?
BTS Eng Sub Finder é uma extensão do Chrome desenvolvida por ResRes, e sua principal característica é "Base Level Extension".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão BTS Eng Sub Finder
Baixe arquivos de extensão BTS Eng Sub Finder 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
Fed up on checking to see if the BTS video you're watching has Eng Subs? Or trying to find a fan subbed equivalent? This extension will automatically turn on Eng Subs if the BANGTANTV or BigHitLabels video has them, and if it doesn't, the extension will open the correct Bangtan Subs video.
Informações Básicas da Extensão
Nome | BTS Eng Sub Finder |
ID | odhonopbhndpieabkjcgojjlkaecliad |
URL Oficial | https://chrome.google.com/webstore/detail/bts-eng-sub-finder/odhonopbhndpieabkjcgojjlkaecliad |
Descrição | Base Level Extension |
Tamanho do Arquivo | 98.72 KB |
Contagem de Instalações | 170 |
Versão Atual | 0.0.0.3 |
Última Atualização | 2020-12-10 |
Data de Publicação | 2020-12-10 |
Desenvolvedor | ResRes |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BTS Eng Sub Finder", "description": "Base Level Extension", "version": "0.0.0.3", "permissions": [ "activeTab", "tabs" ], "manifest_version": 2, "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*" ], "js": [ "onYouTube.js", "jquery-3.5.1.js" ] }, { "matches": [ "https:\/\/*.youtube.com\/c\/BangtanSubs\/search*", "http:\/\/*.youtube.com\/c\/BangtanSubs\/search*" ], "js": [ "subbedVidPage.js", "jquery-3.5.1.js" ] } ], "browser_action": { "default_icon": "hello_extensions copy.png", "default_popup": "hello.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens hello.html" } } } |