Bitbucket Pull Request File Review

Mark individual files as reviewed in Bitbucket Pull Requests

Hvad er Bitbucket Pull Request File Review?

Bitbucket Pull Request File Review er en Chrome-udvidelse udviklet af vandenberghe.jeroen, og dens hovedfunktion er "Mark individual files as reviewed in Bitbucket Pull Requests".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Bitbucket Pull Request File Review-udvidelses-CRX-fil

Download Bitbucket Pull Request File Review-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Bitbucket Pull Request File Review Bitbucket Pull Request File Review
ID bllckhlhnfngflclpdalooiehmijjbaf
Officiel URL https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf
Beskrivelse Mark individual files as reviewed in Bitbucket Pull Requests
Filstørrelse 6.92 KB
Antal Installationer 50
Nuværende Version 1.3
Senest Opdateret 2020-12-09
Udgivelsesdato 2020-11-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler vandenberghe.jeroen
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/JeroenVdb/bitbucket-pullrequest-file-review
Understøttede Sprog 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
    }
}