Code tours Github
Allows to run code tours in your browser
Code tours Github क्या है?
Code tours Github Zipper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows to run code tours in your browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Code tours Github एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds the "code tours" feature directly in github. See https://marketplace.visualstudio.com/items?itemName=vsls-contrib.codetour It allows you to explore the code of a repository step by step, guided by previously written Code Tours.
एक्सटेंशन की मूल जानकारी
नाम | Code tours Github |
ID | emmipndjppboloecpfgnckbkcehhhpkc |
आधिकारिक URL | https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc |
विवरण | Allows to run code tours in your browser |
फ़ाइल का आकार | 42.82 KB |
स्थापना संख्या | 76 |
वर्तमान संस्करण | 0.0.6 |
अंतिम अपडेट | 2021-04-09 |
प्रकाशन तिथि | 2020-11-30 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Zipper |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/doctolib/code-tours-github |
सहायता पृष्ठ URL | https://github.com/doctolib/code-tours-github/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Code tours Github", "version": "0.0.6", "description": "Allows to run code tours in your browser", "manifest_version": 2, "minimum_chrome_version": "60", "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/render.githubusercontent.com\/*", "https:\/\/github.com\/*" ], "icons": { "128": "code-tour.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*\/*" ], "js": [ "github.js" ] } ], "web_accessible_resources": [ "code-tour.png" ] } |