Hypertrons-crx
Hypertrons Chrome Extension
Qu'est-ce que Hypertrons-crx ?
Hypertrons-crx est une extension Chrome développée par x-lab开放实验室, et sa fonction principale est "Hypertrons Chrome Extension".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hypertrons-crx
Téléchargez les fichiers d'extension Hypertrons-crx 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
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 项目与开发者关系的追踪、挖掘与洞察。通过可视化图表展示各类丰富的行为数据,方便用户快速洞察开发者与项目相关信息。
Informations de Base sur l'Extension
Nom | Hypertrons-crx |
ID | jkgfcnkgfapbckbpgobmgiphpknkiljm |
URL Officiel | https://chromewebstore.google.com/detail/hypertrons-crx/jkgfcnkgfapbckbpgobmgiphpknkiljm |
Description | Hypertrons Chrome Extension |
Taille du Fichier | 1.23 MB |
Nombre d'Installations | 25 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2021-06-11 |
Date de Publication | 2021-05-28 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | x-lab开放实验室 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://hypertrons.github.io/hypertrons-crx-website/ |
URL de la Page d'Aide | https://hypertrons.github.io/hypertrons-crx-website/ |
URL de la Page de Politique de Confidentialité | https://github.com/hypertrons/hypertrons-crx-website/blob/master/privacy-policy.md |
Langues Prises en Charge | 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'" } |