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란 무엇입니까?

TechStack: Show Github Repo Tech Stack은(는) CorrectRoadH에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

TechStack: Show Github Repo Tech Stack 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 TechStack: Show Github Repo Tech Stack TechStack: Show Github Repo Tech Stack
ID lbhjnhabgddabnagncmcgomggeadlbhh
공식 URL https://chromewebstore.google.com/detail/techstack-show-github-rep/lbhjnhabgddabnagncmcgomggeadlbhh
설명 The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.
파일 크기 922 KB
설치 횟수 1,864
현재 버전 1.25
최근 업데이트 2023-11-19
출시 날짜 2023-08-11
평점 5.00/5 총 3 개의 평점
개발자 CorrectRoadH
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Get-Tech-Stack/Homepage
도움말 페이지 URL https://github.com/Get-Tech-Stack/Homepage
개인정보 보호 정책 페이지 URL https://github.com/Get-Tech-Stack/TechStack/blob/main/privacy
지원되는 언어 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": [
                ""
            ]
        }
    ]
}