Skip to content

Instantly share code, notes, and snippets.

@rampfox
Last active November 7, 2022 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rampfox/a2b27e0ea72c45b92a7abfe1e5c707bb to your computer and use it in GitHub Desktop.
Save rampfox/a2b27e0ea72c45b92a7abfe1e5c707bb to your computer and use it in GitHub Desktop.
How to prevent / stop Chromium Extension to Auto Update on raspberry pi

How to prevent / stop Chromium Extension to auto update

Im Using Raspberry Pi 3B+ with Raspbian Buster (Debian version: 10)

You can do this by editing chromium profile preferences file:
  1. On Terminal: ${HOME}/.config/chromium/Profile 3/Preferences
cd ~/.config/chromium/Profile\ 3/

in my case, Profile 3 appeared. please check your own folder

  1. then do nano on Preferences file to edit file
nano Preferences

In this file, set the "update_url" property to something invalid like "https://localhost" or 127.0.0.1 for example. For the given url, it makes auto-updating that extension as simply impossible.


Source

Mr-IDE from stackoverflow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment