Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Nov 09, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SN Ticket Manager",
"description": "A modern ServiceNow backlog manager with advanced filters, dark mode, dual panels and automatic background badge updates.",
"version": "8.1",
"permissions": [
"scripting"
],
"host_permissions": [
"https:\/\/prysmiansd.service-now.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/prysmiansd.service-now.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"commands": {
"toggle-panel": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Toggle Backlog Panel"
}
},
"web_accessible_resources": [
{
"resources": [
"page_helper.js"
],
"matches": [
"https:\/\/*.service-now.com\/*"
]
}
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}