Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Hvad er Bitbucket Conventional Comments?
Bitbucket Conventional Comments er en Chrome-udvidelse udviklet af Sam Martin, og dens hovedfunktion er "Adds conventional comment shortcuts to the comment editor.".
Udvidelsesskærmbilleder
Download Bitbucket Conventional Comments-udvidelses-CRX-fil
Download Bitbucket Conventional Comments-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Save precious time typing out conventional comments with just the click of a button! Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ahbhljoncimmieljhlkkeifohkigiefa |
| Officiel URL | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
| Beskrivelse | Adds conventional comment shortcuts to the comment editor. |
| Filstørrelse | 293 KB |
| Antal Installationer | 148 |
| Nuværende Version | 2.1.0 |
| Senest Opdateret | 2023-09-01 |
| Udgivelsesdato | 2021-07-14 |
| Bedømmelse | 4.33/5 Samlet 3 Bedømmelser |
| Udvikler | Sam Martin |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/smartinio/bitbucket-conventional-comments |
| Understøttede Sprog | 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": [
"*:\/\/*\/*"
]
} | |