我没有在 var、opt 等中安装任何内容所需的权限,因此 Google Chrome 安装在我的用户文件夹中。
我想安装 Flash Debug,但是我找不到任何有权限放置 Chrome 可以找到的插件的地方。可以告诉它在哪里查找吗?我试过 $chrome_dir/opt/google/chrome/plugins,但它没有显示在 about:plugins 中。
答案1
请注意,如果您使用的是 32 位或 64 位操作系统,情况会有所不同。Linux 没有 64 位调试器(感谢 Adobe!!),因此要运行它,您必须执行类似以下脚本的操作。我从网上获取了此内容,因此我不确定原作者是谁。列出了一些致谢。我不承担任何责任
基本上,据我所知,Chrome 将使用 Firefox 的插件。此脚本将删除所有现有内容,安装依赖项,例如 nspluginwrapper(使 32 位插件在 64 位上运行)和 ia32-libs(这也是必需的),然后重新下载调试器插件并安装它
我认为现在 Chrome 捆绑了 Flash Player,您必须进入 about:plugins 并禁用集成调试器。有关更多信息,请参阅此处:http://kb2.adobe.com/cps/839/cpsid_83950.html
#!/bin/bash
# Script created by
# Romeo-Adrian Cioaba [email protected]
# Super minor updates by jason.melton[at]gmail[dot]com
# Released under GPL
echo "Stopping any Firefox that might be running"
sudo killall -9 firefox
echo "Removing any other flash plugin previously installed:"
sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper
sudo rm -f /usr/lib/mozilla/plugins/*flash*
sudo rm -f ~/.mozilla/plugins/*flash*
sudo rm -f /usr/lib/firefox/plugins/*flash*
sudo rm -f /usr/lib/firefox-addons/plugins/*flash*
sudo rm -rfd /usr/lib/nspluginwrapper
echo "Installing ia32-libs and nspluginwrapper"
sudo apt-get install ia32-libs nspluginwrapper
echo "Getting libs"
sudo getlibs -p libcurl3
sudo getlibs -p libnss3-1d
sudo getlibs -p libnspr4-0d
echo "Installing Flash Player 10"
cd /tmp
wget http://download.macromedia.com/pub/flashplayer/updaters/10/flashplayer_10_plugin_debug.tar.gz
tar zxvf flashplayer_10_plugin_debug.tar.gz
sudo cp libflashplayer.so /usr/lib/mozilla/plugins/
sudo chmod +rx /usr/lib/mozilla/plugins/libflashplayer.so
sudo nspluginwrapper -i /usr/lib/mozilla/plugins/libflashplayer.so
echo "Linking the libraries so Firefox can find it."
sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/mozilla/plugins/
sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/firefox-addons/plugins/
echo "Done :-)"
答案2
Chrome(我使用的是 chromium)从 ~/.mozilla/plugins 目录中获取插件,因此您只需在那里添加 libflashplayer.so 即可。
然后,您可以进入“首选项”->“后台”->“内容设置”->“插件”->“禁用单个插件”。您应该在 Flash 插件旁边看到“2 个文件”,如果您展开详细信息,则可以禁用非调试 Flash 播放器。