Github Voice Notes
Record and add voice note comments to pull requests on Github
Τι είναι το Github Voice Notes;
Το Github Voice Notes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ryanmarvin, και η κύρια λειτουργία του είναι "Record and add voice note comments to pull requests on Github".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Github Voice Notes
Λήψη αρχείων επέκτασης Github Voice Notes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Are you tired of Zoom calls? Want more pointed discussions and faster Github pull request reviews? Github Voice Notes will let you record audio snippets and add them on Github pull request comments with only the click of a single button!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Github Voice Notes |
ID | icnhdefbminhpijiicfdjhndkbocoibb |
Επίσημο URL | https://chromewebstore.google.com/detail/github-voice-notes/icnhdefbminhpijiicfdjhndkbocoibb |
Περιγραφή | Record and add voice note comments to pull requests on Github |
Μέγεθος Αρχείου | 477 KB |
Αριθμός Εγκαταστάσεων | 26 |
Τρέχουσα Έκδοση | 0.3 |
Τελευταία Ενημέρωση | 2021-07-13 |
Ημερομηνία Δημοσίευσης | 2021-07-03 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | ryanmarvin |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Voice Notes", "description": "Record and add voice note comments to pull requests on Github", "version": "0.3", "manifest_version": 2, "icons": { "16": "static\/gvn-icon-16.png", "48": "static\/gvn-icon-48.png", "128": "static\/gvn-icon-square-128.png" }, "content_security_policy": "script-src 'self'; object-src 'self';", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*\/pull\/*", "*:\/\/github.com\/*\/*\/pull\/*\/files", "*:\/\/github.com\/*\/*\/pull\/*\/commits\/*", "*:\/\/github.com\/*\/*\/commit\/*" ], "js": [ "main.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/github.com\/*" ] }, "web_accessible_resources": [ "static\/*", "page-script.js" ] } |