Potential changes for GitHub
Analyzes all pull requests within a GitHub repository for any potential changes related to a file.
Τι είναι το Potential changes for GitHub;
Το Potential changes for GitHub είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dzhavat Ushev, και η κύρια λειτουργία του είναι "Analyzes all pull requests within a GitHub repository for any potential changes related to a file.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Potential changes for GitHub
Λήψη αρχείων επέκτασης Potential changes for GitHub σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
## Limitations **Note**: This extension is still a **proof of concept** and has the following limitations: - It is limited to Public repositories only. - It is limited to repositories with 10 or less pull requests. - GitHub has a rate limit of 60 requests per hour. Usually same requests are cached but if you want to check multiple files in different repositories, you can quickly "run out" of requests. Most of the limitations above are there only because I wanted to save time and focused on solving the core idea behind the extension. The source code behind this extension is available on GitHub (https://github.com/dzhavat/potential-changes-for-github). If you want to follow the development, file an issue or contribute, please check out the repo. Git icon used in the Store icon is made by Raj Dev from www.freeicons.io
Βασικές Πληροφορίες Επέκτασης
Όνομα | Potential changes for GitHub |
ID | neehipoljbecacjcgcceflmlikiadkob |
Επίσημο URL | https://chromewebstore.google.com/detail/potential-changes-for-git/neehipoljbecacjcgcceflmlikiadkob |
Περιγραφή | Analyzes all pull requests within a GitHub repository for any potential changes related to a file. |
Μέγεθος Αρχείου | 5.39 KB |
Αριθμός Εγκαταστάσεων | 41 |
Τρέχουσα Έκδοση | 0.7.0 |
Τελευταία Ενημέρωση | 2020-10-16 |
Ημερομηνία Δημοσίευσης | 2019-04-24 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Dzhavat Ushev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/dzhavat/potential-changes-for-github |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Potential changes for GitHub", "version": "0.7.0", "homepage_url": "https:\/\/github.com\/dzhavat\/potential-changes-for-github", "description": "Analyzes all pull requests within a GitHub repository for any potential changes related to a file.", "permissions": [ "https:\/\/github.com\/*", "https:\/\/api.github.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content.js" ], "css": [ "styles.css" ] } ] } |