Bitbucket Pull Request File Review

Mark individual files as reviewed in Bitbucket Pull Requests

Cos'è Bitbucket Pull Request File Review?

Bitbucket Pull Request File Review è un'estensione di Chrome sviluppata da vandenberghe.jeroen, e la sua funzione principale è "Mark individual files as reviewed in Bitbucket Pull Requests".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bitbucket Pull Request File Review

Scarica i file di estensione Bitbucket Pull Request File Review in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Bitbucket Pull Request File Review Bitbucket Pull Request File Review
ID bllckhlhnfngflclpdalooiehmijjbaf
URL Ufficiale https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf
Descrizione Mark individual files as reviewed in Bitbucket Pull Requests
Dimensione del File 6.92 KB
Conteggio Installazioni 50
Versione Corrente 1.3
Ultimo Aggiornamento 2020-12-09
Data di Pubblicazione 2020-11-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore vandenberghe.jeroen
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JeroenVdb/bitbucket-pullrequest-file-review
Lingue Supportate 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
    }
}