Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Bitbucket Conventional Comments Helper",
"version": "1.0.2",
"description": "Aims to categorize code review comments in a way that communicates the intent, urgency, and required action effectively.",
"content_scripts": [
{
"matches": [
"*:\/\/bitbucket.org\/*\/pull-requests\/*"
],
"css": [
"src\/style.css"
],
"js": [
"src\/cloud\/index.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*\/*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\/icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
}
},
"permissions": [
"clipboardRead",
"clipboardWrite"
]
}