TechStack: Show Github Repo Tech Stack

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

O que é TechStack: Show Github Repo Tech Stack?

TechStack: Show Github Repo Tech Stack é uma extensão do Chrome desenvolvida por CorrectRoadH, e sua principal característica é "The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão TechStack: Show Github Repo Tech Stack

Baixe arquivos de extensão TechStack: Show Github Repo Tech Stack no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome TechStack: Show Github Repo Tech Stack TechStack: Show Github Repo Tech Stack
ID lbhjnhabgddabnagncmcgomggeadlbhh
URL Oficial https://chromewebstore.google.com/detail/techstack-show-github-rep/lbhjnhabgddabnagncmcgomggeadlbhh
Descrição The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.
Tamanho do Arquivo 922 KB
Contagem de Instalações 1,864
Versão Atual 1.25
Última Atualização 2023-11-19
Data de Publicação 2023-08-11
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor CorrectRoadH
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Get-Tech-Stack/Homepage
URL da Página de Ajuda https://github.com/Get-Tech-Stack/Homepage
URL da Página de Política de Privacidade https://github.com/Get-Tech-Stack/TechStack/blob/main/privacy
Idiomas Suportados 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": [
                ""
            ]
        }
    ]
}