Hypercrx

Hypertrons Chromium Extension

Hypercrxとは何ですか?

HypercrxはX-lab 开放实验室によって開発されたChromeの拡張機能で、その主な機能は「Hypertrons Chromium Extension」です。

拡張機能のスクリーンショット

screenshot

Hypercrx拡張機能のCRXファイルをダウンロード

Hypercrx拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Hypercrx Hypercrx
ID ijchfbpdgeljmhnhokmekkecpbdkgabc
公式URL https://chromewebstore.google.com/detail/hypercrx/ijchfbpdgeljmhnhokmekkecpbdkgabc
説明 Hypertrons Chromium Extension
ファイルサイズ 911 KB
インストール数 980
現在のバージョン 1.9.3
最終更新日 2023-10-16
公開日 2021-10-19
評価 5.00/5 合計 7 レビュー
開発者 X-lab 开放实验室
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://hypertrons.github.io/hypertrons-crx-website/
ヘルプページのURL https://github.com/zhuxiangning/hypertrons-crx-website/blob/dev/privacy-policy.md
プライバシーポリシーページのURL https://github.com/zhuxiangning/hypertrons-crx-website/blob/dev/privacy-policy.md
対応言語 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'"
    }
}