Addonews
  • News
    NewsShow More
    Chrome Extension Updated May 7, 2025: Why Your Extension Might Show a Security Warning
    March 29, 2026
    Chrome Extension Update News: Understanding the New “Featured” Badge Algorithm
    March 28, 2026
    Web Extension News 2026: The Final Sunset of Manifest V2 and What Comes Next
    March 27, 2026
    Chrome Extension Policy Changes News: Why Google is Purging “Repetitive Content”
    March 26, 2026
    Chrome Extension Monetization 2026: From Side Project to $10k MRR Without a Backend
    March 25, 2026
  • AI Agent
    AI AgentShow More
    ai agents
    AI Agents in the Browser: How They Outsmart Regular Extensions
    December 10, 2025
  • Business
    BusinessShow More
    Industry Insights & Pro-User Hacks
    April 4, 2026
    Opera Extensions Development Services: Building for the Sidebar-First Generation
    April 2, 2026
    WXT vs Plasmo 0.7: Why I Switched My Production Extension to the Web Extension Toolbox
    March 5, 2026
    Plasmo vs WXT 0.8: Which Framework Wins the Extension Developer War in 2026?
    March 4, 2026
    Framework Wars: Plasmo vs. WXT
    March 3, 2026
  • Guides
    GuidesShow More
    AI-Driven Extensions: Using Gemini Nano for On-Device Content Summarization
    April 14, 2026
    The Browser as an OS: Why Extension Development is the Most Underrated Skill in 2026
    April 13, 2026
    Tab Throttling Fix: Keeping Your Extension Alive When Chrome Tries to Kill It
    April 12, 2026
    Bypassing Cloudflare with Extensions: Can Logic Mimic Human Browser Behavior?
    April 11, 2026
    The Chrome Extension Apocalypse: Survival Tactics for Independent Developers
    April 10, 2026
Reading: Chrome 135 Extension Changes: What Developers Need to Know
Submit a post
Font ResizerAa
AddonewsAddonews
  • News
  • AI Agent
  • Business
  • Guides
Search
  • Categories
    • News
    • Business
    • AI Agent
    • Guides
  • Contact

Revolutionary Business on Browser Extensions: Why I Believe It’s More Profitable Than Real Estate

Juan Carlos
Juan Carlos
December 24, 2025
FacebookLike
InstagramFollow
YoutubeSubscribe
TiktokFollow
  • Privacy Policy
  • Terms of Use
2026 © Addon News. All Rights Reserved.
News

Chrome 135 Extension Changes: What Developers Need to Know

Juan Carlos
Last updated: December 2, 2025 5:43 pm
By Juan Carlos
4 Min Read
Share
chrome extension news
SHARE
Contents
  • What’s New in Chrome 135
  • What Firefox & Edge Are Doing

Chrome 135 introduces game-changing APIs for extension developers: userScripts.execute() for dynamic script injection, chrome.storage integration directly in DevTools, and trial tokens for Origin Trials. These updates accelerate the shift toward AI-powered agents and Manifest V3 compliance.

Key takeaway

AI agents can now inject scripts on-demand without static manifest rules. MV2 extensions face breaking changes.


What’s New in Chrome 135

  • userScripts.execute() — Dynamic Injection

Chrome finally delivers runtime script injection without pre-declaring in manifest.json:

JavaScript
chrome.userScripts.execute({
  target: { tabId: 123 },
  files: ['agent.js'],
  runAt: 'document_idle'
});

Impact: AI agents can now adapt to page content without reloads — perfect for form-filling, price scraping, dynamic analysis.

  • chrome.storage in DevTools

No more console.log debugging — inspect extension storage directly:

DevTools → Application → Storage → Extension Storage
→ Live view of chrome.storage.local/sync
→ Edit values on-the-fly

Impact on Extension Categories

Extension TypeChrome 134Chrome 135Action Required
AI AgentsStatic injectionDynamic userScripts.execute()✅ Update to new API
ProductivityConsole storage debugDevTools integrationNo action
MV2 LegacyBackground pages workService worker enforcement❌ Migrate NOW
Content ScriptsManifest-onlyRuntime injection✅ Hybrid approach

86% of extensions still use MV2 — Chrome 135 accelerates the June 2025 killswitch.


What Firefox & Edge Are Doing

Firefox: Mandatory Data Disclosure

Starting November 3, 2025, Firefox enforces a new mandatory data disclosure policy for all new browser extensions submitted to their Add-ons Marketplace. This policy requires developers to explicitly declare if and how their extension collects user data directly within the extension’s manifest file. It aims to increase transparency and user trust by providing clear, upfront information about data collection practices before installation.

Extensions must specify what types of personal or usage data they collect, how that data will be used, and whether it is shared with third parties. Failure to comply with these requirements will result in the rejection of the extension during the review process. This move aligns Firefox with global privacy trends and regulatory frameworks, ensuring users have better control and awareness over their data while using extensions. Developers planning releases or updates must prepare to update their manifests accordingly and clearly communicate data practices to avoid delays or denials in publishing.

Manifest:

JSON
{
  "browser_specific_settings": {
    "gecko": {
      "data_collection_permissions": {
        "collects_data": true,
        "data_types": ["browsing_history"]
      }
    }
  }
}

Deadline: Q1 2026 for existing extensions.​

Edge: Copilot Integration

Microsoft Edge has integrated Copilot, an AI-powered assistant designed to enhance productivity for enterprise users. Copilot is accessible through a native sidebar within Edge, allowing users to perform context-aware tasks like searching, summarizing pages, or managing tabs without leaving their browsing session.

This integration emphasizes seamless AI assistance inside the browser, focusing primarily on enterprise scenarios with IT administrator controls. Microsoft officially announced Copilot Mode as part of Edge’s AI-driven browsing experience in July 2025, highlighting natural voice navigation, multitasking support, and privacy-first design.


Subscribe to Stay Updated

Get notified about the latest browser extension news and updates. No spam, just important announcements. Join thousands of developers already in the know. Enter your email below to stay informed.

TAGGED:ChromeDevelopmentEdgeFeaturedFirefox
SOURCES:developer.chrome.comblog.mozilla.orgmicrosoft.com
Share This Article
Reddit Telegram Copy Link

Turning Websites into APIs: Building a Headless Scraper Inside a Browser Tab

Juan Carlos
Juan Carlos
April 9, 2026
FacebookLike
InstagramFollow
YoutubeSubscribe
TiktokFollow

Trending

Chrome Extension Updated May 7, 2025 Software Brand: Why Naming Convention Matters

Manual data scraping implodes in a mess of DOM trees

April 7, 2026

Chrome Extension Update News: Understanding the New “Featured” Badge Algorithm

Chrome Extension Update chaos

March 28, 2026

WXT vs Plasmo 0.7: Why I Switched My Production Extension to the Web Extension Toolbox

Shadow DOM shattered, 3 AM debugging hell

March 5, 2026
Guides

AI-Driven Extensions: Using Gemini Nano for On-Device Content Summarization

Burning out on manual content summarization

Juan Carlos
April 14, 2026

Your may also like!

Guides

AI-Driven Extensions: Using Gemini Nano for On-Device Content Summarization

Juan Carlos
April 14, 2026
Guides

The Browser as an OS: Why Extension Development is the Most Underrated Skill in 2026

Juan Carlos
April 13, 2026
Guides

Tab Throttling Fix: Keeping Your Extension Alive When Chrome Tries to Kill It

Juan Carlos
April 12, 2026
Guides

Bypassing Cloudflare with Extensions: Can Logic Mimic Human Browser Behavior?

Juan Carlos
April 11, 2026

© 2025 Addonews. All Rights Reserved. The content on this site may not be reproduced, republished, distributed, transmitted, or otherwise used without the express prior written permission of Addonews. Addonews may earn a commission from products, services, or extensions linked through our site as part of our Affiliate Partnerships. By using this website, you agree to our Privacy Policy and Terms of Use.

Quick Links

  • Privacy Policy
  • Terms of Use
Contact
Follow me on socials!
Get the latest news on browser extension security and updates. Discuss guides and receive notifications about top new releases directly in your feed.