RingCentral for Microsoft 365
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",
"manifest_version": 2,
"version": "22.2.34",
"name": "RingCentral for Microsoft 365",
"description": "RingCentral for Microsoft 365",
"background": {
"page": "background.html"
},
"permissions": [
"tabs",
"background",
"notifications",
"http://*/",
"https://*/",
"storage"
],
"browser_action": {},
"icons": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"web_accessible_resources": [
"redirect.html",
"client.html",
"assets/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./content.js"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html"
},
"content_security_policy": "script-src 'self' https://*.googleapis.com https://*.google.com https://*.segment.com https://apps.ringcentral.com https://*.mxpnl.com; object-src 'self'"
}