Do not install. Their support team are dumb. I told them I cannot log in because my password is not working and I cannot recover it, so I raised a ticket so they can help me recover it. But they are telling me that I need to LOG IN to see the status of my password recovery ticket...Stupid people... Not able to recover all my passwords.
Posts made by josebastian
-
RE: LastPassOpera add-ons
- Opera add-ons
-
RE: Version shown in pagesOpera for Windows
The issue is in the browser.js,
It has this wrong code:isMatching: () => browserjsUrl.href,
Where it should be:
isMatching: () => href === browserjsUrl.href,
You just have to edit the browser.js script to have it like this:
'DNA-99524': { description: 'Browser.js version reported on FAQ page', isMatching: () => href === browserjsUrl.href, applyOnDOMReady: true, apply: () => { const browserjs_info = version(); const addVersion = createTextNode(`Today ${browserjs_info}`); document.body.appendChild(addVersion); }, },