-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cross extensions messaging feature #935
base: master
Are you sure you want to change the base?
Cross extensions messaging feature #935
Conversation
@@ -28,7 +28,7 @@ function WebsiteEntry ({ className = '', info, toggleAuth, url }: Props): React. | |||
return ( | |||
<div className={`${className} ${info.isAllowed ? 'allowed' : 'denied'}`}> | |||
<div className='url'> | |||
{url} | |||
{info.origin} ({url}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Optional change: that improves the website listing when using extensions (extension url is the extension id which means nothing to the user)
Hi @jacogr, any thoughts on this one ? |
Hi @jacogr, I am building Polkadot Wallet called Onyx as Chrome extension which will display my staked and free coins based on wallet addresses I have loaded through this extension. I would really appreciate this PR reviewed and merged as soon as possible. Thannks :) |
Hi all
Following the discussions in #849 and #912, you will find in this PR the modifications to enable the use of this extension by others, through Cross Extensions Messaging.
I will be happy to discuss this further !
Thanks.