Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Bitbucket Conventional Commentsとは何ですか?
Bitbucket Conventional CommentsはSam Martinによって開発されたChromeの拡張機能で、その主な機能は「Adds conventional comment shortcuts to the comment editor.」です。
拡張機能のスクリーンショット
Bitbucket Conventional Comments拡張機能のCRXファイルをダウンロード
Bitbucket Conventional Comments拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Save precious time typing out conventional comments with just the click of a button!
拡張機能の基本情報
名前 | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
公式URL | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
説明 | Adds conventional comment shortcuts to the comment editor. |
ファイルサイズ | 293 KB |
インストール数 | 148 |
現在のバージョン | 2.1.0 |
最終更新日 | 2023-09-01 |
公開日 | 2021-07-14 |
評価 | 4.33/5 合計 3 レビュー |
開発者 | Sam Martin |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/smartinio/bitbucket-conventional-comments |
対応言語 | 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": [ "*:\/\/*\/*" ] } |