Tango Helper
Detect crashing data automatically and parse with predefined protocol
ما هو Tango Helper؟
Tango Helper هو إضافة Chrome تم تطويرها بواسطة chaobinwu89، والميزة الرئيسية لها هي "Detect crashing data automatically and parse with predefined protocol".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tango Helper
قم بتنزيل ملفات الامتداد Tango Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
自动提取bugly页面的日志数据,并自动弹窗显示; 支持三种显示日志方式: 1. 自动弹窗提醒;可通过设置,取消自动弹窗提醒(默认开启) 2. 通过过右上角按钮查看日志详情面板 3. 选择日志并右键“提取日志”
معلومات أساسية عن التمديد
الاسم | Tango Helper |
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 |
البريد الإلكتروني | [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" ] } |