Urgent.News

What's breaking now, across thousands of outlets.

Tech

Meta agrees to sweeping changes to restrict kids’ access to its apps as part of settlement with states

One of the most notable changes is that Meta plans to implement a daily two-hour time limit for teens that can only be disabled with parental permission.

Meta has agreed to a settlement with 29 U.S. states over concerns about children's safety on its platforms, Instagram and Facebook. The social media giant will implement a series of changes aimed at restricting minors' access to the apps. These measures include a daily time limit of two hours, which can only be disabled with parental permission, and a default "Night Mode" that blocks teenagers from accessing the platforms between midnight and 6 a.m. Meta will also introduce prompts to remind teens of their usage after every 15 minutes and hide like counts by default.

Additionally, the company will make non-algorithmic feeds the default experience for teenagers, as well as allow parents to set a non-personalized feed as the default for their adolescent children. Meta plans to hide extreme makeup filters and remove autoplay prompts, requiring users to take deliberate action to view more content. The new policies will be enforced across Facebook and Instagram, counting time spent on both applications toward the two-hour limit.

Meta's $18 billion settlement will be distributed over a decade, with 30% reserved for YouTube and TikTok if they adopt the same restrictions. The company hopes this move will encourage other platforms to prioritize children's safety and parental control.

Written by urgent.news from TechCrunch's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

This story

This is one outlet's version. Read the fullest account.

Read the original at techcrunch.com →

More in Tech

Environment Variables Done Right (and Safe)

The Problem with Hardcoding We've all been there: you need an API key, a database URL, or a secret token. The quickest fix is to paste it right into the code. It works, but it's a ticking time bomb.

  • Environment variables store configuration values outside source code
  • Access via process.env in Node.js, os.environ in Python, os.Getenv in Go
  • Never commit .env files to version control

More from Wednesday 26 August →