Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Bitbucket Conventional Comments là gì?
Bitbucket Conventional Comments là một tiện ích mở rộng Chrome được phát triển bởi Sam Martin, và tính năng chính của nó là "Adds conventional comment shortcuts to the comment editor.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bitbucket Conventional Comments
Tải xuống các tệp mở rộng Bitbucket Conventional Comments dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Save precious time typing out conventional comments with just the click of a button!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
URL Chính Thức | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
Mô tả | Adds conventional comment shortcuts to the comment editor. |
Kích Thước Tệp | 293 KB |
Số Lần Cài Đặt | 148 |
Phiên Bản Hiện Tại | 2.1.0 |
Cập Nhật Lần Cuối | 2023-09-01 |
Ngày Phát Hành | 2021-07-14 |
Đánh Giá | 4.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Sam Martin |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/smartinio/bitbucket-conventional-comments |
Ngôn Ngữ Được Hỗ Trợ | 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": [ "*:\/\/*\/*" ] } |