Tango Helper
Detect crashing data automatically and parse with predefined protocol
O que é Tango Helper?
Tango Helper é uma extensão do Chrome desenvolvida por chaobinwu89, e sua principal característica é "Detect crashing data automatically and parse with predefined protocol".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tango Helper
Baixe arquivos de extensão Tango Helper 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
自动提取bugly页面的日志数据,并自动弹窗显示; 支持三种显示日志方式: 1. 自动弹窗提醒;可通过设置,取消自动弹窗提醒(默认开启) 2. 通过过右上角按钮查看日志详情面板 3. 选择日志并右键“提取日志”
Informações Básicas da Extensão
Nome | Tango Helper |
ID | ajbggbknkpkoehfmnjjebeonbjedlgmm |
URL Oficial | https://chromewebstore.google.com/detail/tango-helper/ajbggbknkpkoehfmnjjebeonbjedlgmm |
Descrição | Detect crashing data automatically and parse with predefined protocol |
Tamanho do Arquivo | 1.03 MB |
Contagem de Instalações | 20 |
Versão Atual | 0.2.0 |
Última Atualização | 2017-12-28 |
Data de Publicação | 2017-12-28 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | chaobinwu89 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://avenwu.github.io/tango |
Idiomas Suportados | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "default_locale": "zh_CN", "description": "__MSG_description__", "version": "0.2.0", "icons": { "128": "icons\/icon128.png" }, "homepage_url": "https:\/\/avenwu.github.io\/tango", "browser_action": { "default_title": "__MSG_browser_action_enable_tips__", "default_popup": "popup.html", "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/bugly.qq.com\/v2\/crash-reporting\/crashes\/*\/*", "*:\/\/bugly.qq.com\/v2\/crash-reporting\/errors\/*\/*", "*:\/\/bugly.qq.com\/v2\/crash-reporting\/blocks\/*\/*" ], "js": [ "materialize\/js\/jquery-3.2.1.min.js", "materialize\/js\/materialize.min.js", "content.js" ] } ], "options_ui": { "chrome_style": true, "page": "options.html" }, "web_accessible_resources": [ "materialize\/*", "materialize\/*\/*", "popup.html", "w3.css", "assets\/*" ], "permissions": [ "storage", "*:\/\/*.bugly.qq.com\/*", "contextMenus", "activeTab" ] } |