We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#!/bin/bash
install_chrome_extension () { preferences_dir_path="/opt/google/chrome/extensions" pref_file_path="$preferences_dir_path/$1.json" upd_url="https://clients2.google.com/service/update2/crx" mkdir -p "$preferences_dir_path" echo "{" > "$pref_file_path" echo " "external_update_url": "$upd_url"" >> "$pref_file_path" echo "}" >> "$pref_file_path" echo Added ""$pref_file_path"" ["$2"] }
install_chrome_extension "lhobafahddgcelffkeicbaginigeejlf" "CORS"
This code allows to installe the CORS extension in Chrome. "lhobafahddgcelffkeicbaginigeejlf" is the id of CORS in Chrome Store.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
#!/bin/bash
install_chrome_extension () {
preferences_dir_path="/opt/google/chrome/extensions"
pref_file_path="$preferences_dir_path/$1.json"
upd_url="https://clients2.google.com/service/update2/crx"
mkdir -p "$preferences_dir_path"
echo "{" > "$pref_file_path"
echo " "external_update_url": "$upd_url"" >> "$pref_file_path"
echo "}" >> "$pref_file_path"
echo Added ""$pref_file_path"" ["$2"]
}
install_chrome_extension "lhobafahddgcelffkeicbaginigeejlf" "CORS"
This code allows to installe the CORS extension in Chrome.
"lhobafahddgcelffkeicbaginigeejlf" is the id of CORS in Chrome Store.
The text was updated successfully, but these errors were encountered: