Level up your business security with free, on-demand training and certification. Explore 1Password Academy today →
discussion
556 Topics#ME-271 feedback: Inline menu hidden in Safari
Hello, I recently noticed that a lot of login forms were no longer showing the 1Password drop-down to select a credential. I believe it is related to this change referenced in the title. Simply put, I prefer the browser extension to select credentials for logging in. It handles OTP codes faster and easier than the system autofill in iOS/iPadOS. Instead, using the system autofill requires extra taps, needlessly populates the clipboard with OTP codes, and generates notifications about the OTP being copied to the clipboard that I'm frequently needing to dismiss. I'm not sure if this is something that can be made optional in the browser extension settings, but I strongly dislike this new behavior and hope that it will be reverted to the previous behavior, or at least made optional. Thank you.Solved228Views2likes11CommentsNonprofit verification request submitted 5 days ago — expected timeline?
Hello, I sent an email about nonprofit verification around five days ago, and my ticket ID is 561671. My account is currently in the trial period, and I would like to complete the nonprofit verification and move to the appropriate plan before the trial ends. If possible, I would prefer to avoid having to change the subscription more than once during the process. However, I have not yet received a reply, so I wanted to ask whether this waiting time is typical, or if there is any chance that my request was not received properly. Could you please let me know how long nonprofit verification requests usually take to process? If possible, I would also really appreciate it if you could check ticket 561671. Even a rough estimate of the expected timeline would be very helpful for deciding how to proceed. Since this is a public community, I have not included any personal or account-identifying information here. If needed, I would be happy to provide additional details privately. Thank you.15Views0likes0CommentsFeature Request - Send me a password securely
I had a look for this feature request and couldnt see it... I would like the ability for people that dont have 1password to share passwords securely with me. Perhaps I could send them a link to an empty 1Password item which they can then update, hit save and I get the password securely in my vault. Links expire within x days, and can only be saved once. Once its saved, the link expires immediately and the person who updated it cannot access it.Solved1.8KViews8likes23CommentsFirefox extension not being updated or mainted
Is there going to be any updates coming to firefox extension soon? It's been two months since the extension has been updated and chrome was updated two days ago. It would be nice if the firefox extension got a little bit more love like chrome and was updated more promptly to match current version of everything else in the ecosystem. Thank for the help in advance!24Views0likes2CommentsEscape to stop focus on item
Suggestion: When I am looking up a password I click copy and continue on my second screen, but my 1password stays open in the other screen. So some of my info is still visible for other people. I would like to press escape to empty the right side. For example, I want to look up a password for example.com. If I now continue on my other monitor anyone can see my password, to conceal it again I need to minimize or go to the options and press conceal, but I would rather be able to press escape to clear the right screen like this:11Views0likes1CommentSticky icon remains on other pages
Hi, Looking for advice on how to solve this issue, tried with 1Password - Password Manager > Hide on this page. That didn't change anything sadly. Only one user has this problem with one webpage where the icon from a login field remains, even when viewing other pages on the same website. The icon remains when navigating to other pages, as if the field remains hidden in the background. A refresh of the page removes the "ghost icon". Seems quite similar to another thread I found. https://www.1password.community/discussions/1password/1password-menu-icon-in-text-fields/3669836Views0likes7CommentsCurrent Grandfathered Family Plan and getting family though business plan
So I'm currently on the grandfathered $45/mo family plan from joining really early. My business just picked up 1Password and offers the family plan free. I'm wondering if I take advantage of that opportunity, would I lose my grandfathered rate if I ever leave the business? How long does the business -> Family plan last?9Views0likes0Comments1Password Access after Death, Legacy Contacts
I am not planning to die anytime soon, but sometimes things happen. Beyond securing my 1Password details in an Escrow account, or with a lawyer, or in a bank lockbox, does 1Password offer any means of allowing one or more designated member of the 1Password Families account to access the 1Password account in case of the primary owner's passing? Apple now offers the ability to add one or more https://support.apple.com/en-us/102631 so that in case of your untimely demise, an Access Key and a Death Certificate allows Apple to grant the holder of both of these to get a new Apple ID that has access to your Apple ID Account. It may be something 1Password wants to consider, though I realize that reviewing Death Certificates may not be on the high list of priorities for the team! 1Password Version: Not Provided Extension Version: Not Provided OS Version: Not Provided Browser: Not Provided16KViews53likes145CommentsManaged Update of Intune Win32 App
I deploy 1Password via Intune, and I recently transitioned our deployment from the MSI installer to the MSIX installer—as a Win32 app in both cases. I prefer to manage the deployed version and so disable Auto Update. When deploying using the MSI installer, I used a File detection rule that checked for the presence of the app and also checked the version. Rule type: File Path: C:\Program Files\1Password\app\8 File or folder: 1Password.exe Detection method: String (version) Operator: Greater than or equal to Value: 8.x.x Associated with a 32-bit app on 64-bit clients: No With this process, when I updated the installer version, I would update the version value in the detection rule, and Intune would update the installed version of 1Password when it detected a version number less than the expected value. Because the detection script provided for the MSIX deployment—AppDetectScript.ps1—does not include a version check, updating the installer version has no effect on devices where 1Password is already installed. Intune will report that the latest version is installed, but that is only because it is finding 1Password, not because it is finding the latest version of 1Password. I modified the script to include a version check, in hopes that that Intune would then behave as it had with the MSI installer, installing the latest version of the app when it detected that the installed version did not match the target version. # Modify the $targetVersion to ensure app updates $targetVersion = "8.12.10" $targetVersion = [Version] $targetVersion.ToString() # The unique 1Password identifier in detection scripts. $targetPackageFamilyName = "Agilebits.1Password_amwd9z03whsfe" try { # Per-user install (eg. Install behavior in Intune is User). $package = Get-AppxPackage | Where-Object { $_.PackageFamilyName -eq $targetPackageFamilyName } if ($package) { $ver = [Version] $package.Version.ToString() Write-Host "1Password is installed." if ($ver -ge $targetVersion) { Write-Host "1Password is up to date." exit 0 } else { Write-Host "1Password requires an update." exit 1 } } else { Write-Host "A 1Password installation wasn't found." exit 1 } } catch { Write-Host "An error occurred when detecting a 1Password installation: $_" exit 1 } As far as I can tell, the detection script worked, in the sense that it started registering the app as not installed—"The application was not detected after installation completed successfully"—but it did not cause the installed version to be updated. I know that the https://support.1password.com/deploy-1password/?windows#step-1-plan-your-deployment-windows states: To allow your team members to update 1Password, deploy the MSIX as a Win32 app and set the install behavior to User. To manage and deploy updates to 1Password, deploy the MSIX as a line-of-business app and set the install behavior to User. But all of our other Intune app deployments are Win32 apps, and, https://learn.microsoft.com/en-us/intune/intune-service/apps/apps-win32-troubleshoot#:~:text=If%20you%20mix%20the%20installation%20of%20Win32%20apps%20and%20line%2Dof%2Dbusiness%20(LOB)%20apps%20during%20Windows%20Autopilot%20enrollment%2C%20the%20app%20installation%20might%20fail., Win32 and LOB apps do not mix well when using Windows Autopilot (which we do): If you mix the installation of Win32 apps and line-of-business (LOB) apps during Windows Autopilot enrollment, the app installation might fail. I was hoping it might just work. Since it seems as though that is not the case, I was wondering if there is a technical reason why the MSIX deployment does not work as the MSI deployment did, if there is a chance that modifying the detection script in some way could work, and, given the answers to the first two questions, if there is some way this setup might be made to work in the future?10Views0likes0CommentsAutoFill Not Sticking
Hi Folks Lately, Autofill has not been sticking to the necessary fields - username and password - on a regularly used site (banking) and the fields remain blank. The site then doesn't open. It will though open when the necessary fields are typed in manually. This problem has lingered for over a month but for years before that, all was OK. No other sites appear to be affected. Mac, Tahoe 26.4. Please note the problem began around (??) the time of the Tahoe update but I can't say for certain. Cheers, Volker56Views0likes5Comments