Last active
November 7, 2022 07:56
-
-
Save rampfox/a2b27e0ea72c45b92a7abfe1e5c707bb to your computer and use it in GitHub Desktop.
Revisions
-
rampfox revised this gist
Nov 7, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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"** or `127.0.0.1` for example. For the given url, it makes auto-updating that extension as simply impossible. --- -
rampfox revised this gist
Oct 31, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 chromium profile preferences file: 1. On Terminal: ${HOME}/.config/chromium/Profile 3/Preferences -
rampfox created this gist
Oct 31, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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)