Same here. Curiously, if I send things to My Flow from the PC, they show up on the device, but the device asks me to connect if I try to send things from there.
Best posts made by nkrishnaswami
- 
	RE: Opera signing out of browser and flowOpera for Windows
 - 
	RE: Version shown in pagesOpera for Windows
@acerswap Looks like it's from
- DNA-99524 Update method for displaying version of active browserjs
The correspondingbrowser.jschange looks like 
'DNA-99524': { description: 'Browser.js version reported on FAQ page', isMatching: () => browserjsUrl, applyOnDOMReady: true, apply: () => { const browserjs_info = version(); const addVersion = createTextNode(`Today ${browserjs_info}`); document.body.appendChild(addVersion); }, },and it looks like the
isMatchingis always truthy, so should maybe need to be something likeisMatching: () => href === browserjsUrl.href,instead.
 - DNA-99524 Update method for displaying version of active browserjs
 
Latest posts made by nkrishnaswami
- 
	RE: All extensions from Chrome store don't work anymoreFuture releases
Has this been fixed? (I downgraded to 108.0.5067.14 and have been running
--no-updatesince then) - 
	Workspace API for extensionsOpera for computers
Are there APIs yet for extensions to query the workspaces the user has created or to open new tabs in a specific workspace?
 - 
	RE: Opera signing out of browser and flowOpera for Windows
Same here. Curiously, if I send things to My Flow from the PC, they show up on the device, but the device asks me to connect if I try to send things from there.
 - 
	RE: Version shown in pagesOpera for Windows
@acerswap Looks like it's from
- DNA-99524 Update method for displaying version of active browserjs
The correspondingbrowser.jschange looks like 
'DNA-99524': { description: 'Browser.js version reported on FAQ page', isMatching: () => browserjsUrl, applyOnDOMReady: true, apply: () => { const browserjs_info = version(); const addVersion = createTextNode(`Today ${browserjs_info}`); document.body.appendChild(addVersion); }, },and it looks like the
isMatchingis always truthy, so should maybe need to be something likeisMatching: () => href === browserjsUrl.href,instead.
 - DNA-99524 Update method for displaying version of active browserjs