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開發的Chrome擴展程式,該擴展的主要功能是“Mark individual files as reviewed in Bitbucket Pull Requests”。
擴展截圖
下載Bitbucket Pull Request File Review擴展crx文件
下載Bitbucket Pull Request File Review擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | bllckhlhnfngflclpdalooiehmijjbaf |
| 官方網址 | 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
}
} | |