Hypercrx

Hypertrons Chromium Extension

Wat is Hypercrx?

Hypercrx is een Chrome-extensie ontwikkeld door X-lab 开放实验室, en de belangrijkste functie is "Hypertrons Chromium Extension".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Hypercrx

Download Hypercrx-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Hypercrx 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. 

 Hypercrx 用于 GitHub 项目与开发者关系的追踪、挖掘与洞察。通过可视化图表展示各类丰富的行为数据,方便用户快速洞察开发者与项目相关信息。                    

Basisinformatie over de Extensie

Naam Hypercrx Hypercrx
ID ijchfbpdgeljmhnhokmekkecpbdkgabc
Officiële URL https://chromewebstore.google.com/detail/hypercrx/ijchfbpdgeljmhnhokmekkecpbdkgabc
Beschrijving Hypertrons Chromium Extension
Bestandsgrootte 911 KB
Aantal Installaties 980
Huidige Versie 1.9.3
Laatst Bijgewerkt 2023-10-16
Publicatiedatum 2021-10-19
Beoordeling 5.00/5 Totaal 7 Beoordelingen
Ontwikkelaar X-lab 开放实验室
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://hypertrons.github.io/hypertrons-crx-website/
Help Pagina-URL https://github.com/zhuxiangning/hypertrons-crx-website/blob/dev/privacy-policy.md
URL van de Privacybeleid Pagina https://github.com/zhuxiangning/hypertrons-crx-website/blob/dev/privacy-policy.md
Ondersteunde Talen zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Hypertrons Chromium Extension",
    "version": "1.9.3",
    "manifest_version": 3,
    "name": "Hypercrx",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "main.png"
    },
    "icons": {
        "128": "main.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "contentScript.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "main.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "notifications",
        "alarms",
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/github.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}