GitHub Diff Explorer
The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests
GitHub Diff Explorer क्या है?
GitHub Diff Explorer alexdodge द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Diff Explorer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension provides: - Dark mode styles for all supported browsers - More screen real estate with a full width view and resizable explorer - Improved review management and organization with collapsible folder views - Deep links to line references and review comments - Automatically marking viewed files in the folder view - Support for all other GitHub PR functionality
एक्सटेंशन की मूल जानकारी
नाम | GitHub Diff Explorer |
ID | kagcmhcnjehpeihgmcohmdceffihkglk |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-diff-explorer/kagcmhcnjehpeihgmcohmdceffihkglk |
विवरण | The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests |
फ़ाइल का आकार | 110 KB |
स्थापना संख्या | 256 |
वर्तमान संस्करण | 1.3.0 |
अंतिम अपडेट | 2021-03-09 |
प्रकाशन तिथि | 2019-07-26 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | alexdodge |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://gde.alexdodge.ca/ |
सहायता पृष्ठ URL | https://github.com/alexmdodge/github-diff-explorer/issues |
गोपनीयता नीति पृष्ठ URL | https://gde.alexdodge.ca/privacy-policy.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "default_locale": "en", "version": "1.3.0", "description": "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests", "author": "Alex Dodge", "short_name": "GitHub Diff Explorer", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_title": "GitHub Diff Explorer", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "css": [ "lib\/gde_styles.css" ], "js": [ "lib\/gde_script.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/" ], "version_name": "1.3.0", "offline_enabled": true } |