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",
"name": "ServiceDesk Plus - DIY Implementation",
"version": "2.0",
"icons": {
"128": "icon-128x128.png"
},
"manifest_version": 2,
"description": "Chrome Extension for ServiceDesk Plus Product Implementation",
"browser_action": {
"default_icon": "icon-192x192.png",
"default_title": "ServiceDesk Plus - DIY Implementation"
},
"background": {
"scripts": [
".\/jquery.js",
"background.js",
".\/content.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
".\/content.js",
".\/jquery.js"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"<all_urls>",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"index.html",
"\/static\/*"
]
}