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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The extension will display the tech stack of the Repo when the user visits a GitHub Public Repo."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TechStack: Show Github Repo Tech Stack एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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": [ " |