Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Τι είναι το Bitbucket Conventional Comments;
Το Bitbucket Conventional Comments είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sam Martin, και η κύρια λειτουργία του είναι "Adds conventional comment shortcuts to the comment editor.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Bitbucket Conventional Comments
Λήψη αρχείων επέκτασης Bitbucket Conventional Comments σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Save precious time typing out conventional comments with just the click of a button!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
Επίσημο URL | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
Περιγραφή | Adds conventional comment shortcuts to the comment editor. |
Μέγεθος Αρχείου | 293 KB |
Αριθμός Εγκαταστάσεων | 148 |
Τρέχουσα Έκδοση | 2.1.0 |
Τελευταία Ενημέρωση | 2023-09-01 |
Ημερομηνία Δημοσίευσης | 2021-07-14 |
Αξιολόγηση | 4.33/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Sam Martin |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/smartinio/bitbucket-conventional-comments |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bitbucket Conventional Comments", "description": "Adds conventional comment shortcuts to the comment editor.", "version": "2.1.0", "content_scripts": [ { "matches": [ "*:\/\/*\/**\/*\/pull-requests\/*" ], "css": [ "src\/style.css" ], "js": [ "src\/index.js" ], "run_at": "document_idle" }, { "matches": [ "*:\/\/bitbucket.org\/**\/*\/pull-requests\/*" ], "css": [ "src\/style.css" ], "js": [ "src\/index.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "src\/*" ] } ], "action": { "default_popup": "src\/popup\/index.html", "default_icon": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" } }, "permissions": [ "clipboardRead", "clipboardWrite", "storage" ], "host_permissions": [ "*:\/\/*\/*" ] } |