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": "Comment Muffler",
"description": "Adds a Muffle button to Jira comments to hide entries from automation accounts.",
"version": "0.1",
"icons": {
"32": "assets\/icon-32.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
},
"permissions": [],
"host_permissions": [
"https:\/\/*.atlassian.net\/*"
],
"web_accessible_resources": [
{
"resources": [
"assets\/icon-32.png",
"assets\/icon-48.png",
"assets\/icon-128.png",
"assets\/logo.svg"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/*.atlassian.net\/*"
],
"js": [
"src\/contentScript.js"
],
"run_at": "document_idle"
}
]
}