Follow for Github
Makes following repository file movements simple!
Τι είναι το Follow for Github;
Το Follow for Github είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Stafford Williams, και η κύρια λειτουργία του είναι "Makes following repository file movements simple!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Follow for Github
Λήψη αρχείων επέκτασης Follow for Github σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Supports private repositories via Chrome Extensions > Follow for Github > Options
This extension will change the View button into Left and Right buttons on Github.com file diffs moves/renames.
Clicking the Left button will move you to the full file as it existed in its previous location in the parent commit. Clicking the Right button does what the old View button did, and moves you to the full file on the current commit.
Open source! See/contribute to the source at http://github.com/staff0rd/github-follow-extension Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | agalokjhnhheienloigiaoohgmjdpned |
| Επίσημο URL | https://chrome.google.com/webstore/detail/follow-for-github/agalokjhnhheienloigiaoohgmjdpned |
| Περιγραφή | Makes following repository file movements simple! |
| Μέγεθος Αρχείου | 39.41 KB |
| Αριθμός Εγκαταστάσεων | 1,875 |
| Τρέχουσα Έκδοση | 1.0.13 |
| Τελευταία Ενημέρωση | 2021-08-26 |
| Ημερομηνία Δημοσίευσης | 2018-08-24 |
| Αξιολόγηση | 3.43/5 Συνολικά 21 Αξιολογήσεις |
| Προγραμματιστής | Stafford Williams |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://github.com/staff0rd/github-follow-extension |
| Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/staff0rd/github-follow-extension |
| URL της Σελίδας Πολιτικής Απορρήτου | https://staffordwilliams.com/privacy |
| Υποστηριζόμενες Γλώσσες | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "1.0.13",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"options_page": "options.html",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"permissions": [
"storage"
],
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/github.com\/*",
"https:\/\/github.com\/*"
],
"js": [
"bower_components\/jquery\/dist\/jquery.min.js",
"scripts\/commit.js"
],
"run_at": "document_end",
"all_frames": false
},
{
"matches": [
"http:\/\/github.com\/*\/commits\/*",
"https:\/\/github.com\/*\/commits\/*"
],
"js": [
"bower_components\/jquery\/dist\/jquery.min.js",
"scripts\/history.js",
"scripts\/options.js"
],
"run_at": "document_end",
"all_frames": false
}
]
} | |