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.”。
擴展截圖
下載TechStack: Show Github Repo Tech Stack擴展crx文件
下載TechStack: Show Github Repo Tech Stack擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | lbhjnhabgddabnagncmcgomggeadlbhh |
官方網址 | 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": [ " |