Bitbucket Pull Request File Review

Mark individual files as reviewed in Bitbucket Pull Requests

Wat is Bitbucket Pull Request File Review?

Bitbucket Pull Request File Review is een Chrome-extensie ontwikkeld door vandenberghe.jeroen, en de belangrijkste functie is "Mark individual files as reviewed in Bitbucket Pull Requests".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Bitbucket Pull Request File Review

Download Bitbucket Pull Request File Review-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Bitbucket Pull Request File Review Bitbucket Pull Request File Review
ID bllckhlhnfngflclpdalooiehmijjbaf
Officiële URL https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf
Beschrijving Mark individual files as reviewed in Bitbucket Pull Requests
Bestandsgrootte 6.92 KB
Aantal Installaties 50
Huidige Versie 1.3
Laatst Bijgewerkt 2020-12-09
Publicatiedatum 2020-11-24
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar vandenberghe.jeroen
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/JeroenVdb/bitbucket-pullrequest-file-review
Ondersteunde Talen 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
    }
}