Get Tech Stack

Get Tech Stack

Show a GitHub Repo's tech stack

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TechStack: Show Github Repo Tech Stack",
  "author": "CorrectRoadH",
  "version": "1.25",
  "manifest_version": 2,
  "description": "The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo. The user can easily get more info about the 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",
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "js": [
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "permissions": [
    "*://*.github.com/*",
    "*://*.zeabur.app/",
    "activeTab",
    "webRequest",
    "tabs",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "54.0a1"
    }
  }
}