Hypertrons-crx
Hypertrons Chrome Extension
Hypertrons-crxคืออะไร?
Hypertrons-crx เป็นส่วนขยายของ Chrome ที่พัฒนาโดย x-lab开放实验室 และคุณลักษณะหลักของมันคือ "Hypertrons Chrome Extension"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hypertrons-crx
ดาวน์โหลดไฟล์ส่วนขยาย Hypertrons-crx ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Hypertrons-crx aims at tracing and digging GitHub projects and developers。We do this by inserting useful dashboards into some GitHub pages to help users gain the insight into developers and projects quickly. Hypertrons-crx 用于 GitHub 项目与开发者关系的追踪、挖掘与洞察。通过可视化图表展示各类丰富的行为数据,方便用户快速洞察开发者与项目相关信息。
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Hypertrons-crx |
ID | jkgfcnkgfapbckbpgobmgiphpknkiljm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hypertrons-crx/jkgfcnkgfapbckbpgobmgiphpknkiljm |
คำอธิบาย | Hypertrons Chrome Extension |
ขนาดไฟล์ | 1.23 MB |
จำนวนการติดตั้ง | 25 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2021-06-11 |
วันที่เผยแพร่ | 2021-05-28 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | x-lab开放实验室 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://hypertrons.github.io/hypertrons-crx-website/ |
URL หน้าช่วยเหลือ | https://hypertrons.github.io/hypertrons-crx-website/ |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/hypertrons/hypertrons-crx-website/blob/master/privacy-policy.md |
ภาษาที่รองรับ | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Hypertrons Chrome Extension", "version": "1.0.1", "name": "Hypertrons-crx", "options_page": "options.html", "icons": { "128": "main.png" }, "background": { "scripts": [ "background.bundle.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": "main.png" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "content.styles.css", "main.png" ], "permissions": [ "*:\/\/github.com\/*", "storage", "notifications", "alarms" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |