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 |
电子邮箱 | [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": [ "*:\/\/*\/*" ] } |