Inspect and view changes in Ticketing Tool Extension v2.9 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Ticketing Tool Extension v2.9",
"description": "Ticketing Tool Extension v2.9",
"version": "2.9",
"manifest_version": 3,
"permissions": [
"activeTab",
"tabs",
"scripting",
"identity",
"storage",
"identity.email"
],
"oauth2": {
"client_id": "c560e5f4-f65d-420a-a1e2-ab2f4e313f57",
"scopes": [
"api://38d35fe9-f233-4626-8e2f-3573f3505ba3/.default"
],
"tenant_id": "72f988bf-86f1-41af-91ab-2d7cd011db47"
},
"content_scripts": [
{
"matches": [
"https://microsoft.service-now.com/*",
"https://microsoftuat.service-now.com/*",
"https://*/*"
],
"js": [
"JS/content.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "Ticketing Tool Extension v2.9",
"default_icon": "Images/ExtensionLogo.png"
}
}