Tango Helper

Detect crashing data automatically and parse with predefined protocol

What is Tango Helper?

Tango Helper is a Chrome extension developed by chaobinwu89, and its main feature is "Detect crashing data automatically and parse with predefined protocol".

Extension Screenshots

screenshot
screenshot

Download Tango Helper Extension CRX File

Download Tango Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        自动提取bugly页面的日志数据,并自动弹窗显示;
支持三种显示日志方式:

1. 自动弹窗提醒;可通过设置,取消自动弹窗提醒(默认开启)
2. 通过过右上角按钮查看日志详情面板
3. 选择日志并右键“提取日志”                    

Extension Basic Information

Name Tango Helper Tango Helper
ID ajbggbknkpkoehfmnjjebeonbjedlgmm
Official URL https://chromewebstore.google.com/detail/tango-helper/ajbggbknkpkoehfmnjjebeonbjedlgmm
Description Detect crashing data automatically and parse with predefined protocol
File Size 1.03 MB
Installation Count 20
Current Version 0.2.0
Last Updated 2017-12-28
Publish Date 2017-12-28
Rating 5.00/5 Total 2 Ratings
Developer chaobinwu89
Email [email protected]
Payment Type free
Extension Website https://avenwu.github.io/tango
Supported Languages 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"
    ]
}