Pretty Pull Requests (Github)
This extension applies various tweaks to the github pull-request code review pages.
Pretty Pull Requests (Github) क्या है?
Pretty Pull Requests (Github) Brent Yates द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension applies various tweaks to the github pull-request code review pages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pretty Pull Requests (Github) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will add various features to the diff view on Github's pull request pages. Supports both files changed and commit diffs. Current Features: - Click on the file name to collapse a file, or collapse from bottom up via an added button - Collapse/Expand all - Collapse/Expand all that match a regex pattern - Collapse/Expand added/removed lines - File tree view allowing you to collapse a directory, or jump directly to a file diff - Github Enterprise Support (set your URL via right-clicking the address bar icon, and going to 'options')
एक्सटेंशन की मूल जानकारी
नाम | Pretty Pull Requests (Github) |
ID | ljnjpkadhhcdniohpfilddnhahoigdec |
आधिकारिक URL | https://chromewebstore.google.com/detail/pretty-pull-requests-gith/ljnjpkadhhcdniohpfilddnhahoigdec |
विवरण | This extension applies various tweaks to the github pull-request code review pages. |
फ़ाइल का आकार | 412 KB |
स्थापना संख्या | 1,338 |
वर्तमान संस्करण | 2.11.1 |
अंतिम अपडेट | 2018-01-31 |
प्रकाशन तिथि | 2018-01-31 |
रेटिंग | 3.95/5 कुल 21 रेटिंग्स |
डेवलपर | Brent Yates |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Yatser/prettypullrequests |
सहायता पृष्ठ URL | https://github.com/Yatser/prettypullrequests/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pretty Pull Requests (Github)", "description": "This extension applies various tweaks to the github pull-request code review pages.", "version": "2.11.1", "icons": { "32": "ppr-logo\/32x32.png", "64": "ppr-logo\/64x64.png", "128": "ppr-logo\/128x128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage", "activeTab" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull\/*\/files", "https:\/\/github.com\/*\/commit*", "https:\/\/github.com\/*\/pulls*", "https:\/\/github.com\/*\/compare*", "https:\/\/github.com\/*\/*\/pulls*", "https:\/\/github.com\/*\/*\/pull\/*", "https:\/\/github.com\/*\/*\/pull\/*\/files", "https:\/\/github.com\/*\/*\/commit*", "https:\/\/github.com\/*\/*\/compare*" ], "js": [ "jquery-1.9.1.min.js", "github.com.js" ], "css": [ "pullrequest.css" ] } ], "page_action": { "default_icon": "ppr-logo\/128x128.png", "default_title": "Pretty Pull Requests", "default_popup": "popup.html" }, "web_accessible_resources": [ "jquery-1.9.1.min.js" ], "options_page": "options.html" } |