browserSettings.imageAnimationBehavior
A BrowserSetting
object that can be used to change the way the browser handles animated images, such as GIFs.
The underlying value is a string that can take one of three values:
- "normal": the default. Play animated images as normal.
- "none": don't animate images at all.
- "once": play the animation once.
Browser compatibility
Report problems with this compatibility data on GitHubwebextensions-desktop | webextensions-mobile | |||||
---|---|---|---|---|---|---|
imageAnimationBehavior | ChromeNo supportNo | EdgeNo supportNo | FirefoxFull support57 | OperaNo supportNo | SafariNo supportNo | Firefox for AndroidFull support57 |
Legend
- Full support
- Full support
- No support
- No support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Examples
Disable animated images:
browser.browserSettings.imageAnimationBehavior.set({value: "none"});