Side-by-side diff view in Github
Adds the option to view diffs side-by-side in Github
Side-by-side diff view in Github क्या है?
Side-by-side diff view in Github smike द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the option to view diffs side-by-side in Github"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Side-by-side diff view in Github एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will transform the diff view on Github to a side-by-side view. Just load a commit page and click the "Show Side-By-Side Diffs" button. Things that work: - Switch between side-by-side and unified diffs - Previous comments are shown - New comments can be added to any line, but they look funky until you reload. Found a bug? Have a feature you'd like but isn't working? Please contribute at http://github.com/smike/diffhub.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ihmhmdmhllhleioijdeoocgoddjckbcd |
आधिकारिक URL | https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd |
विवरण | Adds the option to view diffs side-by-side in Github |
फ़ाइल का आकार | 51.96 KB |
स्थापना संख्या | 118 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2013-03-26 |
प्रकाशन तिथि | 2013-03-26 |
रेटिंग | 2.40/5 कुल 10 रेटिंग्स |
डेवलपर | smike |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://github.com/smike/diffhub |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Side-by-side diff view in Github", "version": "1.0.1", "description": "Adds the option to view diffs side-by-side in Github", "icons": { "128": "icon.png" }, "background": { "scripts": [ "secrets.js", "bg.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "lib\/jquery-1.9.1.min.js", "content.js" ], "css": [ "lib\/diffhub.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |