home.social

#google-contacts — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #google-contacts, aggregated by home.social.

fetched live
  1. #Android Gets Fake Call Detection That Uses #RCS

    #Phone by #Google wants to combat the "growing threat of #impersonation #scams " and protect Android users against "sophisticated, AI-powered #deepfake attacks" with fake call detection. [...] Fake call detection requires that both parties are on Android and use the Phone by Google app, while #GoogleMessages and #GoogleContacts also have to be installed. When a contact calls, their phone "sends a silent confirmation signal in real time to your device to verify the call is legitimate and truly coming from the contact's device." This digital handshake uses end-to-end #encrypted RCS (Rich Communication Services).
    #encryption #e2ee #privacy #security

    tech.slashdot.org/story/26/06/

  2. #Android Gets Fake Call Detection That Uses #RCS

    #Phone by #Google wants to combat the "growing threat of #impersonation #scams " and protect Android users against "sophisticated, AI-powered #deepfake attacks" with fake call detection. [...] Fake call detection requires that both parties are on Android and use the Phone by Google app, while #GoogleMessages and #GoogleContacts also have to be installed. When a contact calls, their phone "sends a silent confirmation signal in real time to your device to verify the call is legitimate and truly coming from the contact's device." This digital handshake uses end-to-end #encrypted RCS (Rich Communication Services).
    #encryption #e2ee #privacy #security

    tech.slashdot.org/story/26/06/

  3. Solved, see comment

    Any idea on how to fix google contact sync for a android device?

    The sync is starting but never completes, no error is shown and nothing happens. Only the Contact app is having those issues. Every other google app is syncing normally.

    I do use an old OnePlus Nord and just noticed that issue as it read "last sync 45 weeks ago"

    Already tried the default troubleshooting steps, like re adding the account, cache clear ...

    #Google #Android #GoogleHelp #GoogleContacts #Solved

  4. Solved, see comment

    Any idea on how to fix google contact sync for a android device?

    The sync is starting but never completes, no error is shown and nothing happens. Only the Contact app is having those issues. Every other google app is syncing normally.

    I do use an old OnePlus Nord and just noticed that issue as it read "last sync 45 weeks ago"

    Already tried the default troubleshooting steps, like re adding the account, cache clear ...

    #Google #Android #GoogleHelp #GoogleContacts #Solved

  5. Lifehacker: Use Google’s New ‘Recovery Contacts’ to Let a Friend Help You Get Back Into Your Account. “From the Recovery Contacts page, click the button to add a contact, then enter someone you trust (you’ll see several suggestions) and send them a request to be a Recovery Contact for you. Once they accept it, they’ll be able to help you get your account back if you ever find yourself […]

    https://rbfirehose.com/2025/10/19/lifehacker-use-googles-new-recovery-contacts-to-let-a-friend-help-you-get-back-into-your-account/

  6. Dus je hebt een #Android telefoon en je wilt van #Google af.

    #Mail kan van een ander
    #Agenda kan van een ander

    Alles kan anders behalve de #telefoondailer om te bellen dat gaat niet. Want die haalt de gegevens toch weer online vanuit #GoogleContacts.

    Iemand een oplossing?

  7. Dus je hebt een #Android telefoon en je wilt van #Google af.

    #Mail kan van een ander
    #Agenda kan van een ander

    Alles kan anders behalve de #telefoondailer om te bellen dat gaat niet. Want die haalt de gegevens toch weer online vanuit #GoogleContacts.

    Iemand een oplossing?

  8. For those of you who use Google Contacts but not Gmail and don't want Contacts to open a Gmail compose window when you click on an email address for one of your contacts, I have a solution:
    blog.kamens.us/2025/02/02/tamp
    #FOSS #Google #GoogleContacts #Gmail #Tampermonkey

  9. For those of you who use Google Contacts but not Gmail and don't want Contacts to open a Gmail compose window when you click on an email address for one of your contacts, I have a solution:
    blog.kamens.us/2025/02/02/tamp
    #FOSS #Google #GoogleContacts #Gmail #Tampermonkey

  10. Tampermonkey script to un-Gmail Google Contacts

    When you click on a contact’s email address in the Google Contacts web app, instead of opening a new draft in your default email app with the “To” field populated with that email address, which is what it should do, Google Contacts opens a Gmail compose window.

    I hate this behavior. While I do have a Gmail account, it is not my default email account, and I hardly ever use it. I want email addresses in Google Contacts to do what they do on every other web page: open a new draft in my default email app.

    So I wrote a Tampermonkey script to implement that behavior. You can find it here. And the code is also below, in case you prefer to just copy and paste it from here.

    Share and enjoy!

    // ==UserScript==// @name         un-Gmail Google Contacts// @copyright    Copyright 2025 Jonathan Kamens// @license      GPL// @namespace    http://tampermonkey.net/// @version      2025-02-03// @description  change gmail links in Google Contacts to mailto: links// @author       Jonathan Kamens <[email protected]>// @match        https://contacts.google.com/*// @icon         https://www.google.com/s2/favicons?sz=64&domain=google.com// @grant        none// ==/UserScript==// Instead of displaying email addresses as mailto: links as it rightfully// should, the Google Contacts web app sends you to Gmail when you click on// them. This script changes the email addresses back into mailto: links so// that when you click on them they open in your configured email app.//// Uses a mutation observer because the Contacts app dynamically inserts content// into the page after the browser thinks the page is finished loading.(function() {    'use strict';    let callback = (mutationList, observer) => {        let addresses = document.evaluate(            "//span[starts-with(@href,'mailto:') or " +            "starts-with(@data-href,'mailto:')]", document);        let addressElement;        while (addressElement = addresses.iterateNext()) {            let href = addressElement.getAttribute("href") ||                addressElement.getAttribute("data-href");            let addressString = href.substring(7);            let anchor = document.createElement("a")            anchor.setAttribute("href", `mailto:${addressString}`);            anchor.innerText = addressString;            addressElement.replaceWith(anchor);        }    };    let observer = new MutationObserver(callback);    observer.observe(document, {subtree: true, childList: true});})();

    #Gmail #Google #GoogleContacts #Tampermonkey

  11. Tampermonkey script to un-Gmail Google Contacts

    When you click on a contact’s email address in the Google Contacts web app, instead of opening a new draft in your default email app with the “To” field populated with that email address, which is what it should do, Google Contacts opens a Gmail compose window.

    I hate this behavior. While I do have a Gmail account, it is not my default email account, and I hardly ever use it. I want email addresses in Google Contacts to do what they do on every other web page: open a new draft in my default email app.

    So I wrote a Tampermonkey script to implement that behavior. You can find it here. And the code is also below, in case you prefer to just copy and paste it from here.

    Share and enjoy!

    // ==UserScript==// @name         un-Gmail Google Contacts// @copyright    Copyright 2025 Jonathan Kamens// @license      GPL// @namespace    http://tampermonkey.net/// @version      2025-02-03// @description  change gmail links in Google Contacts to mailto: links// @author       Jonathan Kamens <[email protected]>// @match        https://contacts.google.com/*// @icon         https://www.google.com/s2/favicons?sz=64&domain=google.com// @grant        none// ==/UserScript==// Instead of displaying email addresses as mailto: links as it rightfully// should, the Google Contacts web app sends you to Gmail when you click on// them. This script changes the email addresses back into mailto: links so// that when you click on them they open in your configured email app.//// Uses a mutation observer because the Contacts app dynamically inserts content// into the page after the browser thinks the page is finished loading.(function() {    'use strict';    let callback = (mutationList, observer) => {        let addresses = document.evaluate(            "//span[starts-with(@href,'mailto:') or " +            "starts-with(@data-href,'mailto:')]", document);        let addressElement;        while (addressElement = addresses.iterateNext()) {            let href = addressElement.getAttribute("href") ||                addressElement.getAttribute("data-href");            let addressString = href.substring(7);            let anchor = document.createElement("a")            anchor.setAttribute("href", `mailto:${addressString}`);            anchor.innerText = addressString;            addressElement.replaceWith(anchor);        }    };    let observer = new MutationObserver(callback);    observer.observe(document, {subtree: true, childList: true});})();

    #Gmail #Google #GoogleContacts #Tampermonkey

  12. #GoogleContacts

    Google Contact tests Google Play Store style search bar

    📝 Read - thespandroid.blogspot.com/2024

    Enable on your rooted device -

    📦 Package -
    com.google.android.contacts#com.google.android.contacts

    🏳️ Flag - 45619663

    #Google #Android

  13. #GoogleContacts

    Google Contacts new and redesigned Organize tab

    This change is part of Google Contacts version 4.27 but not available for anyone. This re-arranges the whole settings UI with clear description of each setting. If you have root, it can be enabled with the flag.

    Thanks to nail sadykov for the flag.

    📦 Package -
    com.google.android.contacts#com.google.android.contacts

    🏳️ Flag - 45621130

    #google #android #tech # news

  14. #GoogleContacts

    Google Contacts new and redesigned Organize tab

    This change is part of Google Contacts version 4.27 but not available for anyone. This re-arranges the whole settings UI with clear description of each setting. If you have root, it can be enabled with the flag.

    Thanks to nail sadykov for the flag.

    📦 Package -
    com.google.android.contacts#com.google.android.contacts

    🏳️ Flag - 45621130

    #google #android #tech # news

  15. "Hey, why isn't this new contact appearing on my #Android phone? Oh, looks like #GoogleContacts sync broke down a month ago."🙄

    Contacts sync seems borked on my OnePlus 8T, even after I removed and re-added my #Gmail account. Funny, I had expected that this one area would "just work" when both the data and the OS are firmly in the hands of #Google.

  16. "Hey, why isn't this new contact appearing on my #Android phone? Oh, looks like #GoogleContacts sync broke down a month ago."🙄

    Contacts sync seems borked on my OnePlus 8T, even after I removed and re-added my #Gmail account. Funny, I had expected that this one area would "just work" when both the data and the OS are firmly in the hands of #Google.

  17. Cops and Republicans love this
    -
    on your can now show your friends' real-time location | TechRadar

    techradar.com/computing/softwa

    > Silent update adds a new feature

    *

    This is one example of why data protection and privacy have to be a community effort. Other people can leak your data even if you are trying to protect it


  18. Cops and Republicans love this
    -
    #GoogleContacts on your #Android can now show your friends' real-time location | TechRadar

    techradar.com/computing/softwa

    > Silent update adds a new feature

    *

    This is one example of why data protection and privacy have to be a community effort. Other people can leak your data even if you are trying to protect it

    #Google
    #dataPrivacy

  19. There does not seem to be a way to keep the iPhone contacts synced to my Google Contacts. This is a simple sync and pretty sure Apple hasn't enabled that feature to increase the friction of moving away from their ecosystem.

    The solution I could figure out was to export the iCloud contacts in the Contacts app to a .vcf file, then pull into Gmail or online drive, download that file on a computer and then import it into the Google Contacts website.

    #iPhone #iCloud #GoogleContacts #contacts

  20. There does not seem to be a way to keep the iPhone contacts synced to my Google Contacts. This is a simple sync and pretty sure Apple hasn't enabled that feature to increase the friction of moving away from their ecosystem.

    The solution I could figure out was to export the iCloud contacts in the Contacts app to a .vcf file, then pull into Gmail or online drive, download that file on a computer and then import it into the Google Contacts website.

    #iPhone #iCloud #GoogleContacts #contacts

  21. #iOS and #Google gurus, got a question. I’m moving back to #iPhone and am wondering if I can keep my contacts on #GoogleContacts or if I need to transfer them to #iCloud. Preferably, I’d like to configure my iPhone to save contacts to Google by default, however I am unsure if that is possible. Any thoughts appreciated. Thx for any help.

  22. #iOS and #Google gurus, got a question. I’m moving back to #iPhone and am wondering if I can keep my contacts on #GoogleContacts or if I need to transfer them to #iCloud. Preferably, I’d like to configure my iPhone to save contacts to Google by default, however I am unsure if that is possible. Any thoughts appreciated. Thx for any help.

  23. But when I consider moving to #Microsoft #Outlook, I realize that my #GoogleContacts won't sync automatically to Outlook, and my apatite for switching over decreases exponentially. #google

  24. But when I consider moving to #Microsoft #Outlook, I realize that my #GoogleContacts won't sync automatically to Outlook, and my apatite for switching over decreases exponentially. #google

  25. “Individual Contact” and “Favorite Contacts” are the new two widgets rolling out with the new version of Google Contacts. Take a look at them!
    alternativeto.net/news/2023/4/

    #Android #GoogleContacts #MaterialYou

  26. Picture this. You went to a #conference and met a lot of interesting people. Days later, you need to find one of the #contacts, but you don't remember the person's name.

    Sounds familiar?

    There's a new feature on #GoogleContacts that you'll love.
    👇
    youtube.com/shorts/-acHqEb4pis

  27. Picture this. You went to a #conference and met a lot of interesting people. Days later, you need to find one of the #contacts, but you don't remember the person's name.

    Sounds familiar?

    There's a new feature on #GoogleContacts that you'll love.
    👇
    youtube.com/shorts/-acHqEb4pis

  28. Bald ist es soweit: privat werde ich in Kürze ohne die „üblichen“ Google-Services leben können. #gmail #googlefotos #googlecalendar #googlecontacts #googlesearch
    Freue mich fast alles durch Opensource-Produkte wie #Nextcloud , #Piwigo etc. ersetzen zu können.