#language ko ~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: [[Chromium|English]] - [[fr/Chromium|Français]] - [[it/Chromium|Italiano]] - 한국어 - [[zh_CN/Chromium|简体中文]] - [[ru/Chromium|Русский]]- [[es/Chromium|Español]]~~ ---- Chromium is an open source web browser that strives for a secure, fast and stable web browsing experience for its users. It is the open source project behind Google Chrome. <> == 설치 == How to install Chromium: {{{ apt-get update apt-get install chromium chromium-l10n }}} (chromium-l10n is only used for localization and is optional) == 확장 == External extensions are [[https://anonscm.debian.org/cgit/pkg-chromium/pkg-chromium.git/tree/debian/NEWS|disabled by default]]. See [[https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=856183|here]] for why. You can enable them adding a file in `/etc/chromium.d/` that sets the flags: `--load-extension=/extension_fullpath` for each one, or enables all with `--enable-remote-extensions`. An example of a `/etc/chromium.d/enable-remote-extensions` file: {{{ # Enable the extensions export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --enable-remote-extensions" }}} Or simply copy-paste this into your terminal to create the file: {{{ echo '# Enable the extensions export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --enable-remote-extensions"' \ | sudo tee /etc/chromium.d/enable-remote-extensions }}} == PDF 보기 == Chromium can view PDFs without any additional extensions (internally using [[https://pdfium.googlesource.com/pdfium/|PDFium]] software library) == 다른 브라우저 == * [[Iceweasel]] * [[http://www.gnome.org/projects/epiphany/|Epiphany]] * [[Opera]] * [[Konqueror]] == 외부 링크 == * [[http://www.chromium.org/]] - Chromium homepage. * [[http://www.google.com/chrome]] - Google Chrome homepage. * [[http://superuser.com/questions/523852]] - how to install Chrome Web Store extensions on old Chrome versions such as 6.0. == 더 볼 것 == * [[Chromium/Debugging]] * [[WebBrowsers]] under Debian. * [[FlashPlayer]] ---- CategorySoftware