Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Vad är Bitbucket Conventional Comments?
Bitbucket Conventional Comments är en Chrome-tillägg utvecklad av Sam Martin, och dess huvudfunktion är "Adds conventional comment shortcuts to the comment editor.".
Tilläggsskärmbilder
Ladda ner Bitbucket Conventional Comments-förlängningens CRX-fil
Ladda ner Bitbucket Conventional Comments-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Save precious time typing out conventional comments with just the click of a button! Grundläggande Information om Tillägg
| Namn | |
| ID | ahbhljoncimmieljhlkkeifohkigiefa |
| Officiell webbadress | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
| Beskrivning | Adds conventional comment shortcuts to the comment editor. |
| Filstorlek | 293 KB |
| Antal Installationer | 148 |
| Aktuell Version | 2.1.0 |
| Senast Uppdaterad | 2023-09-01 |
| Publiceringsdatum | 2021-07-14 |
| Betyg | 4.33/5 Totalt 3 Betyg |
| Utvecklare | Sam Martin |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/smartinio/bitbucket-conventional-comments |
| Stödda Språk | 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": [
"*:\/\/*\/*"
]
} | |