Bitbucket Pull Request File Review

Mark individual files as reviewed in Bitbucket Pull Requests

Τι είναι το Bitbucket Pull Request File Review;

Το Bitbucket Pull Request File Review είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον vandenberghe.jeroen, και η κύρια λειτουργία του είναι "Mark individual files as reviewed in Bitbucket Pull Requests".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bitbucket Pull Request File Review

Λήψη αρχείων επέκτασης 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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Bitbucket Pull Request File Review Bitbucket Pull Request File Review
ID bllckhlhnfngflclpdalooiehmijjbaf
Επίσημο URL 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
    }
}