Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Co je Bitbucket Conventional Comments?
Bitbucket Conventional Comments je rozšíření Chrome vyvinuté Sam Martin, a jeho hlavní funkcí je „Adds conventional comment shortcuts to the comment editor.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bitbucket Conventional Comments
Stáhněte si soubory rozšíření Bitbucket Conventional Comments ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Save precious time typing out conventional comments with just the click of a button!
Základní Informace o Rozšíření
Název | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
Oficiální URL | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
Popis | Adds conventional comment shortcuts to the comment editor. |
Velikost souboru | 293 KB |
Počet instalací | 148 |
Aktuální Verze | 2.1.0 |
Poslední Aktualizace | 2023-09-01 |
Datum Vydání | 2021-07-14 |
Hodnocení | 4.33/5 Celkem 3 Hodnocení |
Vývojář | Sam Martin |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/smartinio/bitbucket-conventional-comments |
Podporované Jazyky | 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": [ "*:\/\/*\/*" ] } |