Bitbucket Diff Tree

Extension to display diff tree for Bitbucket

Τι είναι το Bitbucket Diff Tree;

Το Bitbucket Diff Tree είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Minh Dam, και η κύρια λειτουργία του είναι "Extension to display diff tree for Bitbucket".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bitbucket Diff Tree

Λήψη αρχείων επέκτασης Bitbucket Diff Tree σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Bring the DiffTree back from Bitbucket Server to Bitbucket Cloud

v1.0.5:
----------
* Support showing code changes as a tree structure in the following pages: 
    - Branches
    - Create pull request
    - View pull request
* Allow enable diff tree extension permanently

v1.0.6
----------
* Allow collapse/expand the diff tree region

v1.0.7
----------
* Navigate to corresponding comment when clicking on the "new comment notification" area at the bottom right corner
* Display diff tree when the viewer selects "ignore whitespace"

v1.0.8
----------
* Option to compact empty middle packages
* Show diff tree on commits page

v1.1:
* Allow collapsing / expanding all folders
* Fix for tab size and nasty css bug which breaks alignments

v1.2:
* Track files have been reviewed by clicking on the "..." icon on the left of the files

v1.3:
* Show new version indicator for Bitbucket Diff Tree

v1.3.1:
* Fix bug: Should navigate to the correct file based on the hash of the url (if any)

v1.4:
* Allow resizing the diff tree

v.1.5:
* Allow searching files and folders

v1.6:
* Unset the "reviewed" status of a file if its contents changed

v1.7:
* Allow filtering files by reviewed, unreviewed and commented statuses

v1.8.0:
* Grant "tabs" permission when needed to comply with Google Chrome "Use of permissions" policy
https://developer.chrome.com/webstore/program_policies#permissions

v2.0:
* Support new pull request experience                    

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

Όνομα Bitbucket Diff Tree Bitbucket Diff Tree
ID pgpjdkejablgneeocagbncanfihkebpf
Επίσημο URL https://chromewebstore.google.com/detail/bitbucket-diff-tree/pgpjdkejablgneeocagbncanfihkebpf
Περιγραφή Extension to display diff tree for Bitbucket
Μέγεθος Αρχείου 103 KB
Αριθμός Εγκαταστάσεων 1,939
Τρέχουσα Έκδοση 2.0.5
Τελευταία Ενημέρωση 2023-09-22
Ημερομηνία Δημοσίευσης 2020-08-16
Αξιολόγηση 4.82/5 Συνολικά 60 Αξιολογήσεις
Προγραμματιστής Minh Dam
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/minhdam/BitbucketDiffTree
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bitbucket Diff Tree",
    "description": "Extension to display diff tree for Bitbucket",
    "version": "2.0.5",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "tabs",
        "https:\/\/bitbucket.org\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "libs\/jquery.min.js",
                "libs\/jstree\/jstree.min.js",
                "libs\/jquery-resizable.js",
                "libs\/jquery.md5.js",
                "js\/namespaces.js",
                "js\/models\/treeNodeModel.js",
                "js\/models\/pullRequestModel.js",
                "js\/helpers\/hashingHelper.js",
                "js\/helpers\/htmlHelper.js",
                "js\/helpers\/pullRequestHelper.js",
                "js\/helpers\/localStorageHelper.js",
                "js\/helpers\/treeHelper.js",
                "js\/observers\/newCommentObserver.js",
                "js\/observers\/fileChangesObserver.js",
                "js\/content.js"
            ],
            "css": [
                "libs\/jstree\/jstree.min.css",
                "css\/content.css"
            ],
            "web_accessible_resources": [
                "images\/vsizegrip.png"
            ],
            "matches": [
                "https:\/\/bitbucket.org\/*"
            ]
        }
    ]
}