Tango Helper
Detect crashing data automatically and parse with predefined protocol
Qu'est-ce que Tango Helper ?
Tango Helper est une extension Chrome développée par chaobinwu89, et sa fonction principale est "Detect crashing data automatically and parse with predefined protocol".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tango Helper
Téléchargez les fichiers d'extension Tango Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
自动提取bugly页面的日志数据,并自动弹窗显示; 支持三种显示日志方式: 1. 自动弹窗提醒;可通过设置,取消自动弹窗提醒(默认开启) 2. 通过过右上角按钮查看日志详情面板 3. 选择日志并右键“提取日志”
Informations de Base sur l'Extension
Nom | Tango Helper |
ID | ajbggbknkpkoehfmnjjebeonbjedlgmm |
URL Officiel | https://chromewebstore.google.com/detail/tango-helper/ajbggbknkpkoehfmnjjebeonbjedlgmm |
Description | Detect crashing data automatically and parse with predefined protocol |
Taille du Fichier | 1.03 MB |
Nombre d'Installations | 20 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2017-12-28 |
Date de Publication | 2017-12-28 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | chaobinwu89 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://avenwu.github.io/tango |
Langues Prises en Charge | 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" ] } |