Bitbucket Pull Request File Review

Mark individual files as reviewed in Bitbucket Pull Requests

Co je Bitbucket Pull Request File Review?

Bitbucket Pull Request File Review je rozšíření Chrome vyvinuté vandenberghe.jeroen, a jeho hlavní funkcí je „Mark individual files as reviewed in Bitbucket Pull Requests“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Bitbucket Pull Request File Review

Stáhněte si soubory rozšíření Bitbucket Pull Request File Review ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Bitbucket Pull Request File Review Bitbucket Pull Request File Review
ID bllckhlhnfngflclpdalooiehmijjbaf
Oficiální URL https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf
Popis Mark individual files as reviewed in Bitbucket Pull Requests
Velikost souboru 6.92 KB
Počet instalací 50
Aktuální Verze 1.3
Poslední Aktualizace 2020-12-09
Datum Vydání 2020-11-24
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář vandenberghe.jeroen
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/JeroenVdb/bitbucket-pullrequest-file-review
Podporované Jazyky 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
    }
}