Tango Helper
Detect crashing data automatically and parse with predefined protocol
Cos'è Tango Helper?
Tango Helper è un'estensione di Chrome sviluppata da chaobinwu89, e la sua funzione principale è "Detect crashing data automatically and parse with predefined protocol".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tango Helper
Scarica i file di estensione Tango Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
自动提取bugly页面的日志数据,并自动弹窗显示;
支持三种显示日志方式:
1. 自动弹窗提醒;可通过设置,取消自动弹窗提醒(默认开启)
2. 通过过右上角按钮查看日志详情面板
3. 选择日志并右键“提取日志” Informazioni di Base sull'Estensione
| Nome | |
| ID | ajbggbknkpkoehfmnjjebeonbjedlgmm |
| URL Ufficiale | https://chromewebstore.google.com/detail/tango-helper/ajbggbknkpkoehfmnjjebeonbjedlgmm |
| Descrizione | Detect crashing data automatically and parse with predefined protocol |
| Dimensione del File | 1.03 MB |
| Conteggio Installazioni | 20 |
| Versione Corrente | 0.2.0 |
| Ultimo Aggiornamento | 2017-12-28 |
| Data di Pubblicazione | 2017-12-28 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | chaobinwu89 |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://avenwu.github.io/tango |
| Lingue Supportate | 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"
]
} | |