Skip to main content

Warning: count(): Parameter must be an array or an object that implements Countable in C:\home\site\wwwroot\gs\plugins\i18n_navigation\frontend.class.php on line 219

Chromium

Don't track me Google

Removes the annoying link-conversion (on click) at Google Search. The Referrer is also hidden, to maintain your privacy. Designed for Firefox and Google Chrome.
Homepage

To install in Chromium/Chrome run with parameters: --enable-easy-off-store-extension-install

chrome.exe --enable-easy-off-store-extension-install
chromium-browser --enable-easy-off-store-extension-install

Enable WebGL

To check if WebGL is enabled, visit chrome://gpu/

To enable in Chromium/Chrome run with parameters: --ignore-gpu-blacklist

For more permanent results, edit Chromium shortcut.
sudo nano /usr/share/applications/chromium-browser.desktop
Replace every Exec=/usr/bin/chromium-browser instance with
Exec=/usr/bin/chromium-browser --ignore-gpu-blacklist

Replace default email application, with Gmail

Create a .sh script with the following content, and make it executable.

#!/bin/bash
if [ $1 | sed 's/mailto://' ]; then
    chromium-browser "https://mail.google.com/mail?view=cm&tf=0&to=`echo $1 | sed 's/mailto://'`"
else
    chromium-browser "https://mail.google.com/"
fi

Then, go to Settings >> Preferred Applications and insert as Mail Reader /home/your_user/open_mailto.sh "%s"