= Chromium =
Google Chromium is a browser that combines a minimal design with
sophisticated technology to make the web faster, safer, and easier.

== Slackbuild libevent ==
{{{#!highlight bash
su
cd /tmp
wget http://slackbuilds.org/slackbuilds/14.0/libraries/libevent.tar.gz
tar xvzf libevent.tar.gz
cd libevent
wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
./libevent.SlackBuild
installpkg /tmp/libevent-2.0.21-x86_64-1_SBo.tgz
}}}

Package 64 bit: [[attachment:libevent-2.0.21-x86_64-1_SBo.tgz]]

== Slackbuild Chrome ==
{{{#!highlight bash
su
cd /tmp
wget http://slackbuilds.org/slackbuilds/14.0/network/chromium.tar.gz
tar xvzf chromium.tar.gz
cd chromium
wget https://commondatastorage.googleapis.com/chromium-browser-official/chromium-24.0.1312.52.tar.bz2
./chromium.SlackBuild
installpkg /tmp/chromium-24.0.1312.52-x86_64-1_SBo.tgz
}}}
Package 64 bit: [[attachment:chromium-24.0.1312.52-x86_64-1_SBo.tgz]]

== Enable Java Plugin ==
Check plug-ins with about:plugins in URL text box
{{{#!highlight bash
ln -s /opt/java/jre/lib/amd64/libnpjp2.so /usr/lib64/mozilla/plugins/libnpjp2.so
ln -s /opt/jdk1.7.0_17/jre/lib/amd64/libnpjp2.so /usr/lib64/mozilla/plugins/libnpjp2.so
}}}

== Get latest binary of chromium ==
{{{#!highlight sh
cd /tmp
REVISION=$(curl -s -S https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2FLAST_CHANGE?alt=media)
echo $REVISION
ZIP_URL="https://www.googleapis.com/download/storage/v1/b/chromium-browser-snapshots/o/Linux_x64%2F$REVISION%2Fchrome-linux.zip?alt=media"
echo $ZIP_URL
wget $ZIP_URL 
unzip -t Linux_x64*chrome-linux.zip\?alt\=media 
mv Linux_x64*chrome-linux.zip\?alt\=media Linux_x64_chromium.zip 
unzip -t Linux_x64_chromium.zip 
unzip  Linux_x64_chromium.zip 
cd chrome-linux/
./chrome &
# Version 134.0.6961.0 (Developer Build) (64-bit)
}}}