Tango Helper
Detect crashing data automatically and parse with predefined protocol
Tango Helperとは何ですか?
Tango Helperはchaobinwu89によって開発されたChromeの拡張機能で、その主な機能は「Detect crashing data automatically and parse with predefined protocol」です。
拡張機能のスクリーンショット
Tango Helper拡張機能のCRXファイルをダウンロード
Tango Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
自动提取bugly页面的日志数据,并自动弹窗显示;
支持三种显示日志方式:
1. 自动弹窗提醒;可通过设置,取消自动弹窗提醒(默认开启)
2. 通过过右上角按钮查看日志详情面板
3. 选择日志并右键“提取日志” 拡張機能の基本情報
| 名前 | |
| ID | ajbggbknkpkoehfmnjjebeonbjedlgmm |
| 公式URL | https://chromewebstore.google.com/detail/tango-helper/ajbggbknkpkoehfmnjjebeonbjedlgmm |
| 説明 | Detect crashing data automatically and parse with predefined protocol |
| ファイルサイズ | 1.03 MB |
| インストール数 | 20 |
| 現在のバージョン | 0.2.0 |
| 最終更新日 | 2017-12-28 |
| 公開日 | 2017-12-28 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | chaobinwu89 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://avenwu.github.io/tango |
| 対応言語 | 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"
]
} | |