Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Github Expand Diff क्या है?
Github Expand Diff Michael Ridgway द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A user script for Chrome that allows you to expand the missing lines in a Github diff."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Github Expand Diff एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
एक्सटेंशन की मूल जानकारी
नाम | Github Expand Diff |
ID | imakbajpbolcgnkfhhlhipbjppfomlij |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
विवरण | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
फ़ाइल का आकार | 5.63 KB |
स्थापना संख्या | 121 |
वर्तमान संस्करण | 0.0.1.6 |
अंतिम अपडेट | 2014-06-18 |
प्रकाशन तिथि | 2014-06-18 |
रेटिंग | 3.86/5 कुल 7 रेटिंग्स |
डेवलपर | Michael Ridgway |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/mridgway/github-expand-diff |
सहायता पृष्ठ URL | https://github.com/mridgway/github-expand-diff/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Expand Diff", "version": "0.0.1.6", "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.com\/*\/*\/pull\/*", "https:\/\/*.com\/*\/*\/commit\/*", "https:\/\/*.com\/*\/*\/compare\/*" ], "include_globs": [ "https:\/\/github.com\/*", "https:\/\/github.*.com\/*", "https:\/\/git.*.com\/*" ], "run_at": "document_end", "js": [ "github-expand-diff.user.js" ] } ] } |