Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Co to jest Bitbucket Conventional Comments?
Bitbucket Conventional Comments to rozszerzenie Chrome opracowane przez Sam Martin, a jego główną funkcją jest „Adds conventional comment shortcuts to the comment editor.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bitbucket Conventional Comments
Pobierz pliki rozszerzeń Bitbucket Conventional Comments w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Save precious time typing out conventional comments with just the click of a button!
Podstawowe informacje o rozszerzeniu
Nazwa | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
Oficjalny URL | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
Opis | Adds conventional comment shortcuts to the comment editor. |
Rozmiar pliku | 293 KB |
Liczba instalacji | 148 |
Aktualna Wersja | 2.1.0 |
Ostatnia Aktualizacja | 2023-09-01 |
Data Publikacji | 2021-07-14 |
Ocena | 4.33/5 Łącznie 3 Oceny |
Deweloper | Sam Martin |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/smartinio/bitbucket-conventional-comments |
Obsługiwane Języki | 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": [ "*:\/\/*\/*" ] } |