Skip to content

Instantly share code, notes, and snippets.

@rampfox
Last active November 7, 2022 07:56
Show Gist options
  • Select an option

  • Save rampfox/a2b27e0ea72c45b92a7abfe1e5c707bb to your computer and use it in GitHub Desktop.

Select an option

Save rampfox/a2b27e0ea72c45b92a7abfe1e5c707bb to your computer and use it in GitHub Desktop.

Revisions

  1. rampfox revised this gist Nov 7, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion prevent-chromium-extension-to-auto-update.md
    Original file line number Diff line number Diff line change
    @@ -18,7 +18,7 @@ cd ~/.config/chromium/Profile\ 3/
    nano Preferences
    ```

    In this file, set the **"update_url"** property to something invalid like **"https://localhost"** for example. For the given url, it makes auto-updating that extension as simply impossible.
    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.

    ---

  2. rampfox revised this gist Oct 31, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion prevent-chromium-extension-to-auto-update.md
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@

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

    ##### You can do this by editing the extension's manifest.json file:
    ##### You can do this by editing chromium profile preferences file:

    1. On Terminal: ${HOME}/.config/chromium/Profile 3/Preferences

  3. rampfox created this gist Oct 31, 2022.
    26 changes: 26 additions & 0 deletions prevent-chromium-extension-to-auto-update.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,26 @@
    # 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 the extension's manifest.json 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*

    2. 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"** for example. For the given url, it makes auto-updating that extension as simply impossible.

    ---

    ##### Source
    [Mr-IDE from stackoverflow](https://stackoverflow.com/questions/27657617/how-to-disable-google-chrome-extension-autoupdate)