TechStack: Show Github Repo Tech Stack

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

Was ist TechStack: Show Github Repo Tech Stack?

TechStack: Show Github Repo Tech Stack ist eine Chrome-Erweiterung, die von CorrectRoadH entwickelt wurde, und ihr Hauptmerkmal ist "The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

TechStack: Show Github Repo Tech Stack-Erweiterungs-CRX-Datei herunterladen

Laden Sie TechStack: Show Github Repo Tech Stack-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name TechStack: Show Github Repo Tech Stack TechStack: Show Github Repo Tech Stack
ID lbhjnhabgddabnagncmcgomggeadlbhh
Offizielle URL https://chromewebstore.google.com/detail/techstack-show-github-rep/lbhjnhabgddabnagncmcgomggeadlbhh
Beschreibung The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo.
Dateigröße 922 KB
Installationsanzahl 1,864
Aktuelle Version 1.25
Letztes Update 2023-11-19
Veröffentlichungsdatum 2023-08-11
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler CorrectRoadH
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Get-Tech-Stack/Homepage
Hilfeseite URL https://github.com/Get-Tech-Stack/Homepage
URL der Datenschutzrichtlinien-Seite https://github.com/Get-Tech-Stack/TechStack/blob/main/privacy
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}