Lazy Reviewer

This extension adds an option to sort merge requests by the size of their changes

Τι είναι το Lazy Reviewer;

Το Lazy Reviewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Stas Gavrylov, και η κύρια λειτουργία του είναι "This extension adds an option to sort merge requests by the size of their changes".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Lazy Reviewer

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

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

                        Lazy Reviewer adds information on pull request diffs to PR section on GitHub and GitLab. It also allows you to sort all PRs by the amount of changes. 

SETUP INSTRUCTIONS: https://github.com/stasgavrylov/lazy-reviewer

Everyone knows that feeling when your colleague asks you to review his "tiny PR", but there's no way to find out it's actual size unless you're already reviewing it. Fortunately, this awesome extension eliminates the problem and allows you to prevent misinformation by displaying actual diff for every pull request in your project.
Those who are ready for the biggest challenges can always use "More changes" sorting option to help their friends in need, of course.

GETTING STARTED:

To be able to request info on your project, you must provide an access token for GitHub/GitLab API. It's not that hard to get one, but without it the extension won't work. To set your access token, click on Lazy Reviewer extension icon on the toolbar and paste the token into corresponding input. If you don't have an access token yet, clicking on (get one) link will redirect you to corresponding section in your profile to easily create one. Enter any name, choose an expiration date and click Generate new token (GitHub) or Create Personal Access Token (GitLab). Select appropriate access checkboxes (repo for GitHub, api for GitLab). Then copy-paste your key to the extension popup and click Set.

BE AWARE: if your server is hosted on a custom domain, you should enter the domain's name in the first place, and only afterwards [click (get one) and] set your API key to avoid incorrect host mapping in extension settings.

When the API key is set, you're good to go! Proceed to review those pull requests (the tiniest ones, of course).

Acknowledgements:
I'd like to thank @rynarud for drawing an awesome icon for this extension.                    

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

Όνομα Lazy Reviewer Lazy Reviewer
ID bhalbgkloajkkfflgafbaghiccfkdknf
Επίσημο URL https://chromewebstore.google.com/detail/lazy-reviewer/bhalbgkloajkkfflgafbaghiccfkdknf
Περιγραφή This extension adds an option to sort merge requests by the size of their changes
Μέγεθος Αρχείου 40.19 KB
Αριθμός Εγκαταστάσεων 30
Τρέχουσα Έκδοση 1.0.7
Τελευταία Ενημέρωση 2018-10-17
Ημερομηνία Δημοσίευσης 2018-10-17
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Stas Gavrylov
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/stasgavrylov/lazy-reviewer
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Stas Gavrylov",
    "name": "Lazy Reviewer",
    "description": "This extension adds an option to sort merge requests by the size of their changes",
    "version": "1.0.7",
    "permissions": [
        "tabs",
        "storage",
        "webNavigation"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Add API token"
    },
    "icons": {
        "16": "icons\/lr_16.png",
        "48": "icons\/lr_48.png",
        "128": "icons\/lr_128.png"
    }
}