github-code-viewer
A Chromium extension to view GitHub code faster and easier.
github-code-viewer क्या है?
github-code-viewer xcv58 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chromium extension to view GitHub code faster and easier."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में github-code-viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
View GitHub code in VSCode.
एक्सटेंशन की मूल जानकारी
नाम | github-code-viewer |
ID | ecddapgifccgblebfibdgkagfbdagjfn |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn |
विवरण | A Chromium extension to view GitHub code faster and easier. |
फ़ाइल का आकार | 19.39 KB |
स्थापना संख्या | 609 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2021-02-10 |
प्रकाशन तिथि | 2021-02-10 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | xcv58 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/febaoshan/edge-extensions-github-code-viewer |
सहायता पृष्ठ URL | https://github.com/febaoshan/edge-extensions-github-code-viewer/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-code-viewer", "version": "0.0.1", "manifest_version": 2, "description": "A Chromium extension to view GitHub code faster and easier.", "icons": { "16": "icons\/logo16x16.png", "32": "icons\/logo32x32.png", "48": "icons\/logo48x48.png", "128": "icons\/logo128x128.png" }, "page_action": { "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/background.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "src\/background.js" ], "homepage_url": "https:\/\/github.com\/febaoshan\/edge-extensions-github-code-viewer", "permissions": [ "contextMenus" ], "background": { "scripts": [ "src\/background.js" ] } } |