Pdf Support for Chromium

I didn’t have pdf format support in my Chromium Browser. So I tried the following commands for it.

1
2
$ sudo apt-get install acroread
$ sudo apt-get install mozplugger

Next, open the file /etc/mozpluggerrc as a superuser.

1
$ sudo gedit /etc/mozpluggerrc

Change the line which reads

1
define(ACROREAD, [repeat swallow(acroread) fill : acroread -openInNewWindow /a "$fragment" "$file"])

To

1
define(ACROREAD, [repeat needs_xembed swallow(acroread) fill : acroread -openInNewWindow /a "$fragment" "$file"])

Comments