You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details. The error that caused us to look at the chrome extension errors was:
You don't have permission to send messages to recipients outside of your organization.
The text was updated successfully, but these errors were encountered:
levohealth-dmw
changed the title
Users aren't able to send SMS messages.
Users aren't able to send SMS messages. Lots of errors on the extension.
Mar 21, 2022
About the extension page errors, please ignore the errors, not related.
About the error message: "You don't have permission to send messages to recipients outside of your organization.", please contact RingCentral customer service: https://support.ringcentral.com/
Manifest version 2 is deprecated, and support will be removed in 2023. See https://developer.chrome.com/blog/mv2-transition/ for more details. The error that caused us to look at the chrome extension errors was:
You don't have permission to send messages to recipients outside of your organization.
Error details:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "Ringcentral Embeddable Widgets for Pipedrive",
"version": "3.5.5",
"description": "Add RingCentral Embeddable Voice widgets to Pipedrive",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1YqYvCEeGGNOgtKrx8DfG33ujx7NgAwbyVpikug4mHiNvKZYWulw7lY5fjaD8wAy5bmXnkfULDzqMkL8UOxUcf8qD2lJFcLm+BqBtqNnoSz00vwjSOxXrcDvpvsMrjEZkI7N/FD60sTWp1U+QOehua7OboUpXb4iV7TQfppz3PsCz7qGOa4PWjUMAZTTgomUtW47Es6f/vjIeejs7Ihro3Al5Jo3SWIbjpjSU9BK34XgFvtcZx3lZQgfFiK+ZNyxlx8mgC/PLqJB+uX63ywMrT86TdcfxBuaThy98S8SCXjZTpHOP6X5pmGMk0lPM06hwxmSCBZgHOHL/Wk6r8FUlQIDAQAB",
"permissions": [
"http:///",
"https:///",
"storage",
"activeTab",
"tabs",
"background",
"tabCapture",
"system.display",
"unlimitedStorage",
"https://.pipedrive.com/",
"https://kocm6omq0b.execute-api.us-east-1.amazonaws.com/",
"https://.gtihub.io/",
"https://.ringcentral.com/"
],
"page_action": {
"default_icon": {
"16": "icons/rc16.png",
"32": "icons/rc32.png",
"48": "icons/rc48.png",
"128": "icons/rc128.png"
},
"default_title": "PipeDrive embeddable RingCentral phone"
},
"icons": {
"16": "icons/rc16.png",
"32": "icons/rc32.png",
"48": "icons/rc48.png",
"128": "icons/rc128.png"
},
"web_accessible_resources": [
"embeddable/**"
],
"content_scripts": [
{
"matches": [
"https://.pipedrive.com/*"
],
"exclude_matches": [],
"js": [
"./react.production.min.js",
"./react-dom.production.min.js",
"./content.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_security_policy": "script-src 'self' chrome-extension://mghgakfckjffpapcfagahoabncnoajpi/embeddable; object-src 'self'",
"manifest_version": 2
}
The text was updated successfully, but these errors were encountered: