Bitbucket Pull Request File Review
Mark individual files as reviewed in Bitbucket Pull Requests
Bitbucket Pull Request File Review क्या है?
Bitbucket Pull Request File Review vandenberghe.jeroen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mark individual files as reviewed in Bitbucket Pull Requests"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bitbucket Pull Request File Review एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
With this extension you can mark individual files as reviewed. It can help you review (big) pull requests. This extension brings you a fantastic feature of Github and an announced one for Bitbucket cloud: mark individual files of a pull request as reviewed. This extension only works with the new beta pull request experience of Atlassian Bitbucket cloud. You can enable this feature via a lab. We use the collapsible diffs feature as a way to mark files as reviewed and style them accordingly.
एक्सटेंशन की मूल जानकारी
नाम | Bitbucket Pull Request File Review |
ID | bllckhlhnfngflclpdalooiehmijjbaf |
आधिकारिक URL | https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf |
विवरण | Mark individual files as reviewed in Bitbucket Pull Requests |
फ़ाइल का आकार | 6.92 KB |
स्थापना संख्या | 50 |
वर्तमान संस्करण | 1.3 |
अंतिम अपडेट | 2020-12-09 |
प्रकाशन तिथि | 2020-11-24 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | vandenberghe.jeroen |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/JeroenVdb/bitbucket-pullrequest-file-review |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bitbucket Pull Request File Review", "version": "1.3", "description": "Mark individual files as reviewed in Bitbucket Pull Requests", "manifest_version": 2, "permissions": [ "https:\/\/bitbucket.org\/*\/pull-requests\/*", "webNavigation", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*\/pull-requests\/*" ], "js": [ "bb-pr-markfilesreviewed.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false } } |