Github Fork Confirmation
Adds a confirmation dialog to the Github and Gist Fork button.
Τι είναι το Github Fork Confirmation;
Το Github Fork Confirmation είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alex Pendleton, και η κύρια λειτουργία του είναι "Adds a confirmation dialog to the Github and Gist Fork button.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Github Fork Confirmation
Λήψη αρχείων επέκτασης Github Fork Confirmation σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Are you always accidentally forking repositories? I know I am. This Chrome Extension (or User Script!) will help. It adds a confirm dialog to the Fork button on Github repositories and Gists. The source code is available on Github. https://github.com/alexcpendleton/GithubForkConfirmation Updated! August 25, 2015: v1.0.1 - Fixed to accommodate new Github HTML. Sorry for the inconvenience.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Github Fork Confirmation |
ID | mofjdkidemhjconaodballcmpnaofeod |
Επίσημο URL | https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod |
Περιγραφή | Adds a confirmation dialog to the Github and Gist Fork button. |
Μέγεθος Αρχείου | 17.08 KB |
Αριθμός Εγκαταστάσεων | 125 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2015-08-26 |
Ημερομηνία Δημοσίευσης | 2015-08-25 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Alex Pendleton |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/alexcpendleton/GithubForkConfirmation |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/alexcpendleton/GithubForkConfirmation |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Fork Confirmation", "version": "1.0.1", "manifest_version": 2, "description": "Adds a confirmation dialog to the Github and Gist Fork button.", "homepage_url": "https:\/\/github.com\/alexcpendleton\/GithubForkConfirmation", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |