Wallpaper

wallpaper
Low RiskCategory: Browser UIView Official Docs

Technical Context

Provides access to the chrome.wallpaper API for setting the ChromeOS desktop wallpaper. This is a ChromeOS-specific permission with limited scope.

What This Means For You

On Chromebooks, the extension can change your desktop wallpaper. This is only available on Chrome OS.

Related APIs

This permission enables access to these Chrome APIs:

chrome.wallpaper

Common Use Cases

  • Wallpaper changers
  • Theming tools

How to Declare in manifest.json

Add the "wallpaper" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "wallpaper"
  ]
}

Related Permissions