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": "TeamCity Notifier",
"version": "0.0.26",
"description": "Shows notifications about various events in TeamCity",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": [
"storage",
"notifications",
"declarativeNetRequestWithHostAccess",
"background",
"offscreen"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "assets\/action-icon-16.png",
"32": "assets\/icon-32.png",
"48": "assets\/icon-48.png",
"96": "assets\/icon-96.png",
"128": "assets\/icon-128.png"
},
"action": {
"default_icon": {
"16": "assets\/action-icon-disabled-16.png",
"24": "assets\/action-icon-disabled-24.png",
"32": "assets\/action-icon-disabled-32.png"
},
"default_title": "TeamCity Notifier",
"default_popup": "dist\/popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"all_frames": true,
"js": [
"detect\/content.js"
]
},
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_start",
"all_frames": true,
"js": [
"notify\/content.js"
]
}
],
"options_ui": {
"page": "dist\/options.html",
"browser_style": true
},
"web_accessible_resources": [
{
"resources": [
"detect\/inject.js",
"notify\/inject.js"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}