TechStack: Show Github Repo Tech Stack

The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.

TechStack: Show Github Repo Tech Stack là gì?

TechStack: Show Github Repo Tech Stack là một tiện ích mở rộng Chrome được phát triển bởi CorrectRoadH, và tính năng chính của nó là "The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TechStack: Show Github Repo Tech Stack

Tải xuống các tệp mở rộng TechStack: Show Github Repo Tech Stack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        When a user visits a Github public repository, the extension will display that repository's tech stack alongside the page. Users can more easily get more information about repositories.

The Extension contain DOM blocker functionality. It will insert some new DOM element to Github repo page to display Tech stacks. But It didn't delete any DOM from the Page.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TechStack: Show Github Repo Tech Stack TechStack: Show Github Repo Tech Stack
ID lbhjnhabgddabnagncmcgomggeadlbhh
URL Chính Thức https://chromewebstore.google.com/detail/techstack-show-github-rep/lbhjnhabgddabnagncmcgomggeadlbhh
Mô tả The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.
Kích Thước Tệp 922 KB
Số Lần Cài Đặt 1,864
Phiên Bản Hiện Tại 1.25
Cập Nhật Lần Cuối 2023-11-19
Ngày Phát Hành 2023-08-11
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển CorrectRoadH
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Get-Tech-Stack/Homepage
URL Trang Trợ Giúp https://github.com/Get-Tech-Stack/Homepage
URL Trang Chính Sách Bảo Mật https://github.com/Get-Tech-Stack/TechStack/blob/main/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TechStack: Show Github Repo Tech Stack",
    "author": "CorrectRoadH",
    "version": "1.25",
    "manifest_version": 3,
    "description": "The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "24": "assets\/icons\/icon-24.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background\/background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icon-16.png",
            "48": "assets\/icons\/icon-48.png"
        },
        "default_popup": "popup\/index.html",
        "default_title": "Teach Stack"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "content\/*",
                "options\/*",
                "popup\/*",
                "background\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}