How do I make the Google Chrome flag "--allow-file-access-from-files" permanent?
If you want to allow a local file to access a local file in google chrome you go to the terminal and run
$ google-chrome --allow-file-access-from-files 0 3 Answers
Navigate to the desktop launcher / menu entry, open the launcher properties dialog for google chrome.
It should look like this:
/usr/bin/google-chrome %UTo make the flags that you want permanent, modify it to something like:
/usr/bin/google-chrome --allow-file-access-from-filesYou may also need to delete and re-pin your icon launchers after modifying it. Chrome should launch with the specified flags enabled after the modification.
Alternatively, you can simply create a new launcher with the above and use it to start chrome.
To check if the flags that you modified are being loaded:
$ cat ~/.config/google-chrome/Local\ Stateand scroll up to the block entitled
"session_restore"
Your flags should be listed in the block, before
--flag-switches-begin --flag-switches-end.
Opening chrome and navigating to the URL
chrome://version/should also list enabled flags in the
Command Line block
This is a list of the google-chrome / chromium flags:
3The different modes like --allow-file-access-from-files are flags/switches and not meant for general users. So you can't change it permanently with regular builds. The purpose of these switches/argument is to provide choice. These flags are neither supported nor recommended and must be used as temporary.
Since you don't want to use .desktop file or changing any shortcut. The only thing you can do is to look into code of open source chorimium .
Customize the code and build it. Then only it will open with your desired mode.
1Google-chrome and Chromium should function the same, the differences are pretty minor except for multimedia (especially Flash) and some file/folder locations (chromium instead of google-chrome) see
You should check out especially:
Making it all persistent
You can export your flags from ~/.profile:
export CHROMIUM_USER_FLAGS="--disk-cache-dir=/tmp --disk-cache-size=50000000"
Or add them to /etc/chromium/default:
# Default settings for chromium. This file is sourced by /usr/bin/chromium
#
# Options to pass to chromium
CHROMIUM_FLAGS="--scroll-pixels=200"
Chromium will prefer the user defined flags in CHROMIUM_USER_FLAGS to those defined in
/etc/chromium/default. 1