Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Was ist Bitbucket Conventional Comments?
Bitbucket Conventional Comments ist eine Chrome-Erweiterung, die von Sam Martin entwickelt wurde, und ihr Hauptmerkmal ist "Adds conventional comment shortcuts to the comment editor.".
Erweiterungsscreenshots
Bitbucket Conventional Comments-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bitbucket Conventional Comments-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Save precious time typing out conventional comments with just the click of a button!
Grundlegende Informationen zur Erweiterung
Name | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
Offizielle URL | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
Beschreibung | Adds conventional comment shortcuts to the comment editor. |
Dateigröße | 293 KB |
Installationsanzahl | 148 |
Aktuelle Version | 2.1.0 |
Letztes Update | 2023-09-01 |
Veröffentlichungsdatum | 2021-07-14 |
Bewertung | 4.33/5 Insgesamt 3 Bewertungen |
Entwickler | Sam Martin |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/smartinio/bitbucket-conventional-comments |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } |