www.solvusoft.com

Browser plugins - ArchWiki

There are two types of browser plugins, based on the plugin API they use:

Most plugins on this page are NPAPI-only, unless noted otherwise.

Flash Player

Adobe Flash Player

Installation

The package you will need to install depends on the browser you use.

Note:
Upgrade

If you are using Firefox, please make sure to follow this instruction first.

Configuration

To change the preferences (privacy settings, resource usage, etc.) of Flash Player, right click on any embedded Flash content (for instance adobe's flash home) and choose Settings from the menu.

You can also use the Flash settings file /etc/adobe/mms.cfg. Gentoo has an extensively commented example mms.cfg.

To enable video decoding with hardware video acceleration, add/uncomment the following line:

EnableLinuxHWVideoDecode = 1

It might also be required to add/uncomment the following line:

OverrideGPUValidation = 1
Multiple monitor full-screen fix

When using a multiple monitor setup, or swapping between virtual desktops, it is possible to lose focus on a fullscreen flash window. In such a case, the adobe flash-plugin will automatically exit full-screen mode. This may not be to your liking.

Unfortunately, this behavior is hard coded into the binary. In order to change this behavior it is necessary to alter the binary.

Fixing this issue only works for the NPAPI plugin and this issue can be fixed via 2 ways.

After the package has been installed, backup libflashplayer.so: # cp /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/mozilla/plugins/libflashplayer.so.backupThen, you will need to alter that file using a hex editor like ghex. You must open it with root privileges obviously. # ghex /usr/lib/mozilla/plugins/libflashplayer.soUsing the hex editor find the string _NET_ACTIVE_WINDOW. In ghex the readable string is on the right hand side of the window, and the hex is on the left, you are trying to locate the readable string. It should be easy to find using a search function.Upon finding _NET_ACTIVE_WINDOW rewrite the line, but do not change the length of the line, for example _NET_ACTIVE_WINDOW becomes _XET_ACTIVE_WINDOW.Save the binary, and restart any processes using the plugin (as this will crash any instance of the plugin in use.)
Playing DRM-protected content

See Flash DRM content.

Shumway

Shumway is a discontinued HTML5 technology experiment that explores building a faithful and efficient renderer for the SWF file format without native code assistance. The plugin may be installed directly from Mozilla's github.io site.

Gnash

Gnash is a free (libre) alternative to Adobe Flash Player. It is available both as a standalone player for desktop computers and embedded devices, as well as a browser plugin, and supports the SWF format up to version 7 (with versions 8 and 9 under development) and about 80% of ActionScript 2.0.

There is a packages available: gnash-gitAUR.

Lightspark

Lightspark is another attempt to provide a free alternative to Adobe Flash aimed at supporting newer Flash formats. Lightspark has the ability to fall back on Gnash for old content, which enables users to install both and enjoy wider coverage. Although it is still very much in development, it supports some popular sites.

Lightspark can be installed with the lightspark-gitAUR package.

PDF viewer

PDF.js

PDF.js is a PDF renderer created by Mozilla and built using HTML5 technologies.

It is included in Firefox.

For Chromium and Google Chrome it is available as extension in the Chrome Web Store.

External PDF viewers

To use an external PDF viewer you need #MozPlugger.

If you want to use MozPlugger with Evince, for example, you have to find the lines containing pdf in the /etc/mozpluggerrc file and modify the corresponding line after GV() as below:

repeat noisy swallow(evince) fill: evince "$file"

(replace evince with something else if it is not your viewer of choice).

When using Firefox, you may need to change 2 values in about:config:

Restart and it should work like a charm!

UnionPay Online Pay

Note: This plugin is NPAPI only. It should work in the palemoonAUR browser.

Install upeditorAUR package for the "security plugin" used by UnionPay Online Pay (银联在线支付).

Citrix

See Citrix.

Java (IcedTea)

Note: Both Java plugins are NPAPI-only and thus do not work in Chromium, Opera and Firefox. They still work in Firefox ESR 52, which is supported until August 2018.

To enable Java support in your browser, you have two options: the open-source OpenJDK (recommended) or Oracle's proprietary version. For details about why OpenJDK is recommended see [1].

To use OpenJDK, you have to install the IcedTea browser plugin, icedtea-web.

If you want to use Oracle's JRE, install the jreAUR package.

Pipelight

See Pipelight.

Multimedia playback

Many browsers support the GStreamer framework to play multimedia inside HTML5 <audio> and <video> elements. Check the optional dependencies of the browser package (or of the web engine, e.g. webkit2gtk or qt5-webkit) to see if GStreamer is supported. See GStreamer#Installation for the description of each plugin.

For media formats that are not natively supported by your browser (e.g. most browsers don't play .mkv files), the following plugins are available:

https://abf.rosalinux.ru/uxteam/ROSA_Media_Player || rosa-media-player-pluginAURhttps://code.videolan.org/videolan/npapi-vlc || npapi-vlcAUR

Google Hangouts

Note: This plugin is not required when using Chromium or Firefox

Hangouts plugin can be installed with the google-talkpluginAUR package. Hangouts is a messenger by Google, that allows you to make video call between 15 people simultaneously, or share your screen with others.

MozPlugger

MozPlugger can be installed with the mozpluggerAUR package.

MozPlugger is a Mozilla plugin which can show many types of multimedia inside your browser. To accomplish this, it uses external programs such as MPlayer, xine, Evince, OpenOffice, TiMidity, etc. To modify or add applications to be used by MozPlugger just modify the /etc/mozpluggerrc file.

For example, MozPlugger uses OpenOffice by default to open doc files. To change it to use LibreOffice instead, look for the OpenOffice section:

/etc/mozpluggerrc ... ### OpenOffice define([OO],[swallow(VCLSalFrame) fill: ooffice2.0 -nologo -norestore -view $1 "$file" swallow(VCLSalFrame) fill: ooffice -nologo -norestore -view $1 "$file" swallow(VCLSalFrame) fill: soffice -nologo $1 "$file"]) ...

and add LibreOffice at the beginning of the list:

/etc/mozpluggerrc ... ### LibreOffice/OpenOffice define([OO],[swallow(VCLSalFrame) fill: libreoffice --nologo --norestore --view $1 "$file" swallow(VCLSalFrame) fill: ooffice2.0 -nologo -norestore -view $1 "$file" swallow(VCLSalFrame) fill: ooffice -nologo -norestore -view $1 "$file" swallow(VCLSalFrame) fill: soffice -nologo $1 "$file"]) ...

Note: Be sure to also choose LibreOffice as your preferred application to open doc files.

As another simple example, if you want to open cpp files with your favorite text editor (we will use Kate) to get syntax highlighting, just add a new section to your mozpluggerrc file:

/etc/mozpluggerrc text/x-c++:cpp:C++ Source File text/x-c++:hpp:C++ Header File repeat noisy swallow(kate) fill: kate -b "$file"

To change the default of MPlayer so that mpv is used instead, change the appropriate lines such that:

/etc/mozpluggerrc ... ### MPlayer #define(MP_CMD,[mplayer -really-quiet -nojoystick -nofs -zoom -vo xv,x11 -ao esd,alsa,oss,arts,null -osdlevel 0 $1 </dev/null]) define(MP_CMD,[mpv -really-quiet $1 </dev/null]) #define(MP_EMBED,[embed noisy ignore_errors: MP_CMD(-xy $width -wid $window $1)]) define(MP_EMBED,[embed noisy ignore_errors: MP_CMD(--autofit=$width -wid $window $1)]) #define(MP_NOEMBED,[noembed noisy ignore_errors maxaspect swallow(MPlayer): MP_CMD($1)]) define(MP_NOEMBED,[noembed noisy ignore_errors maxaspect swallow(mpv): MP_CMD($1)]) ... #define(MP_AUDIO,[mplayer -quiet -nojoystick $1 </dev/null]) define(MP_AUDIO,[mpv -really-quiet $1 </dev/null]) #define(MP_AUDIO_STREAM,[controls stream noisy ignore_errors: mplayer -quiet -nojoystick $1 "$file" </dev/null]) define(MP_AUDIO_STREAM,[controls stream noisy ignore_errors: mpv -really-quiet $1 "$file" </dev/null]) ...

For a more complete list of MozPlugger options see mozplugger(7).

Troubleshooting

Flash Player: no sound

Flash Player outputs its sound only through the default ALSA device, which is number 0. If you have multiple sound devices (a very common example is having a sound card and HDMI output in the video card), then your preferred device may have a different number.

For a list of available devices with their respective numbers, run:

$ aplay -l **** List of PLAYBACK Hardware Devices **** card 0: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: DX [Xonar DX], device 0: Multichannel [Multichannel] Subdevices: 0/1 Subdevice #0: subdevice #0 card 1: DX [Xonar DX], device 1: Digital [Digital] Subdevices: 1/1 Subdevice #0: subdevice #0

In this case, the HDMI output is card 0 and the sound card is card 1. To make your sound card the default for ALSA, create the file .asoundrc in your home directory, with the following content:

~/.asoundrc pcm.!default { type hw card 1 } ctl.!default { type hw card 1 }

Flash Player: blocking sound for other applications or delayed playback

If sound is delayed within Flash videos or Flash stops sound from any other application, then make sure you do not have snd_pcm_oss module loaded:

$ lsmod | grep snd_pcm_oss

You can unload it:

# rmmod snd_pcm_oss

and restart the browser to see if it helps.

Flash Player: performance

Adobe's Flash plugin has some serious performance issues, especially when CPU frequency scaling is used. There seems to be a policy not to use the whole CPU workload, so the frequency scaling governor does not clock the CPU any higher. To work around this issue, see CPU frequency scaling#Switching threshold

Flash Player: no webcam, or low webcam resolution

If Flash doesn't detect your webcam at all, or it has low resolution (the image looks very pixelated), you can try starting your browser with this:

$ LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so <browser>

This is because Flash still uses the V4L1 camera API, long deprecated, and via the above we give it a compatibility layer which it needs.

Flash Player: black bars in full screen playback on multi-headed setups

The Flash plugin has a known bug where the full screen mode does not really work when you have a multi-monitor setup. Apparently, it incorrectly determines the full screen resolution, so the full screen Flash Player fills the correct monitor but gets scaled as if the monitor had the resolution of the total display area.

To fix this, you can use the "hack" described here. Simply download the source from the link given on the page, and follow the instructions in the README.

Note: While the author mentions using NVDIA's TwinView, the hack should work for any multi-monitor setup.

Firefox: old Flash Player version shown after upgrade

Solution for Firefox: delete file "pluginreg.dat" in user's profile directory.

Firefox will automatically rebuild this file once it is started again. Make sure to substitute <username> and <profile_folder> with the appropriate information.

Firefox: plugins are installed but not working

A common problem is that the plugin path is unset. This typically occurs on a new install, when the user has not re-logged in before running Firefox after the installation. Test if the path is unset:

$ printenv MOZ_PLUGIN_PATH

If unset, then either re-login, or source /etc/profile.d/mozilla-common.sh and start Firefox from the same shell:

$ source /etc/profile.d/mozilla-common.sh && firefox

wiki.archlinux.org

What is a browser plugin and how to remove it

A browser plugin (or a browser plug-in) is a computer program that expands web browser’s functionality by adding extra features to it. A browser plugin works together with a related web browser and, if it is not installed on the system, it becomes practically useless. The most of browser plugins can install additional toolbars, marketing, and search assistants.

Also, the victim can notice new buttons, links or functions, such as a pop-up blocking, added to their browser. Some plugins are invisible to a user, as they run in the background and do not have any graphical interface. However, the most of them cannot be missed. Some of their functions can be malicious.

Browser plugins are divided into two categories: harmful parasites and fully legitimate applications. Malicious versions of browser plugins are very similar to spyware, adware and browser hijackers, and often have some of their functions. They can be installed without user's consent and then fail to provide an uninstall feature. Some versions of malicious browser plugins are integrated into legitimate toolbars and other additional tools, which often help them to trick PC users into ignoring their existence and leaving them in the system.

Legitimate browser plugins are not only harmless but also very useful. The perfect examples of legitimate browser plugins are such popular programs as Google Toolbar, MSN Search Toolbar, Macromedia Flash plugin or Adobe Acrobat Reader.

Differences between legitimate and malicious browser plugins

Legitimate browser plugins act as they should and can help people by adding specific features to an existing computer program (web browser). However, installing a malicious browser plugin can cause these unwanted and dangerous activities:

To sum up, the most examples of malicious web browser plugins complicate users' web surfing activity. They can redirect them to undesirable websites, display a large amount of annoying commercial advertisements, block the access to certain Internet resources and so on. Although such behavior is not harmful, the user may be unable to find required information.

Besides, some versions of malicious browser plugins affect the system and software that is installed on it. They cause web browser instability issues, frequent errors, and overall performance problems. Some reputable applications and legitimate browser add-ons may be also affected by such activity. Malicious browser plugins can affect Internet Explorer, Google Chrome, Mozilla Firefox, Safari and other known web browsers.

Installing a malicious version of browser plugin on computer

Malicious versions of browser plugins do not spread like regular viruses. They do not rely on Trojan horses and similar malware when they seek to infiltrate the system. However, they can also appear on your computer out of nowhere. This can be implemented with the help of four major ways:

The most popular examples of malicious browser plugins

There are lots of different browser plugins that are considered malicious. The following examples illustrate how harmful these threats can be.

Total Dating Guide is one of the trickiest browser plugins that claims to be capable of improving people's browsing sessions. It can easily appear on your computer without downloading it as it has been actively spreading in a bundle with freeware and shareware. Once this toolbar enters the system, it offers a web search service and “useful” navigation buttons to such pages as Weather, Entertainment or News. However, its ad-supported version can also modify your search results and display undesirable commercial advertisements.

Boggles.co is a third-party web browser plugin that is compatible with Internet Explorer, Google Chrome, Mozilla Firefox and other web browsers. The program claims to be a reliable search site, but all that it does is recording the most visited websites, logging victim's search sessions and collecting information about his/hers computer, and installed software. Gathered data is sent to a remote web server. Boggles.co can update itself via the Internet without user's permission asked. The threat runs on every Windows startup.

Istbar is a parasitic browser plugin that was designed to redirect people to unwanted and sometimes even dangerous websites. This web browser plugin has been actively used to promote Internet sites that are filled with adult-oriented content and similar dangerous content. In most of the cases, it spreads around as an optional component of third-party software, so it can be installed without noticing that. It does not have the uninstall feature.

Removing the malicious browser plugin from the system

Malicious versions of browser plugins are quite similar to malware and similar threats. They can infiltrate computer without user's approval, they can install related software, collect various information and cause unwanted activity on it. In most of the cases, the malicious browser plugin cannot be removed with the help of manual removal option.

To remove suspicious versions of browser plugins, we recommend using reputable anti-spyware tools. These programs scan the system in similar way as antivirus software does, and then report about malicious files. However, they have special parasite signature databases, that allow them to detect and eliminate the most of security and privacy risks. In addition, they include the real-time monitors that prevent the installation of additional viruses. The most reliable anti-spyware programs are Reimage, Malwarebytes Anti Malware. 

In some cases even a spyware remover can fail to get rid of a particular parasite because of its updated database. Such trick has been actively used by the most of malware developers. In this case, manual removal is recommended. 

www.2-spyware.com

 

Начальная

Windows Commander

Far
WinNavigator
Frigate
Norton Commander
WinNC
Dos Navigator
Servant Salamander
Turbo Browser

Winamp, Skins, Plugins
Необходимые Утилиты
Текстовые редакторы
Юмор

File managers and best utilites

How to remove browser plugins. Плагины браузера


Browser.plugin nedir ve nasıl düzeltilir? Virüs mü Güvenli mi?

Open
Adım 1: Third-Party Application ile İlişkili Kayıt Defteri Girdilerini Onar

Bazen, browser.plugin ve diğer PLUGIN sistem hataları, Windows kayıt defterindeki sorunlarla ilişkili olabilir. Birkaç program, aynı browser.plugin dosyasını paylaşabilir; ancak bu programlar kaldırıldığında ya da değiştirildiğinde, bazen "artık" (geçersiz) PLUGIN kayıt defteri girdileri geride kalabilir.

Basitçe bu, gerçek dosya yolu değişmiş olsa bile, önceki hatalı konumun Windows Kayıt Defterine kaydedilmiş olması anlamına gelmektedir. Windows bu hatalı dosya başvurularını ararken (bilgisayarınızdaki dosya konumları), browser.plugin hataları oluşabilir. Ayrıca, kötü amaçlı yazılım bulaşması, Third-Party Application ile ilgili kayıt defteri girdilerini bozmuş olabilir. Bu nedenle, bu geçersiz PLUGIN kayıt defteri girdileri, sorunun asıl nedenini çözümlemek için onarılmalıdır.

Geçersiz browser.plugin anahtarlarını kaldırmak için Windows kayıt defterini el ile düzenlemeniz, bilgisayar servis profesyoneli olmadığınız sürece önerilmez. Kayıt defterinizi hatalı düzenlemek, bilgisayarınızı işlemez hale getirebilir ve işletim sisteminize geri dönüşü olmayacak şekilde zarar verebilir. Aslında, hatalı konulan bir virgül, bilgisayarınızın baştılmasını tamamen engelleyebilir!

Risk nedeniyle, browser.plugin ile ilgili kayıt defteri sorunlarında, WinThruster (Bir Microsoft Gold Certified Partner'ı tarafından geliştirilmiştir) benzeri güvenilir bir kayıt defteri temizleme programını, tarama ve onarma için kullanmanızı şiddetle öneririz. Kayıt defteri temizleyicisi kullanmak, geçersiz kayıt defteri girdilerini, eksik dosya başvurularını (browser.plugin hatanıza neden olan gibi) ve kayıt defterindeki bozuk bağlantıları bulma işlemini otomatikleştirir. Her tarama öncesinde otomatik olarak bir yedek oluşturulur; tüm değişiklikleri bir tıkla geri alma imkanı, sizi bilgisayar hasarına karşı korur. Tüm bunların en iyi yanı da, kayıt defteri hatalarını onarmanın, sistem hızı ve performansını büyük ölçüde arttırabilmesidir.

Uyarı: İleri seviyede bir bilgisayar kullanıcısı değilseniz, Windows kayıt defterini el ile düzenlemenizi tavsiye ETMİYORUZ. Kayıt Defteri Düzenleyicisinin hatalı kullanımı, Windows'u tekrar yüklemenizi gerektirecek ciddi sorunlara yol açabilir. Kayıt Defteri Düzenleyicisinin hatalı kullanımından kaynaklanan sorunların çözümlenebileceğinin garantisini veremeyiz. Kayıt Defteri Düzenleyicisi kullanımının riski size aittir.

Windos kayıt defterinizi el ile onarmak isterseniz, önce kayıt defterinin browser.plugin (örn. Third-Party Application) ile ilişkili olan kısmını dışarı aktarmak suretiyle yedek oluşturmanız gerekir:

  1. Başlat düğmesini tıklatın.
  2. Arama kutusuna "command" yazın. Henüz ENTER tuşuna BASMAYIN!
  3. Klavyenizdeki CTRL-Shift tuşlarını basılı tutarken, ENTER tuşuna basın.
  4. Bir izin iletişim kutusu ile sizden izin istenecektir.
  5. Evet'i Tıklatın.
  6. Yanıp sönen imlecin bulunduğu bir kara kutu açılacak.
  7. "regedit" yazın ve ENTER tuşuna basın.
  8. Kayıt Defteri Düzenleyicisinde, yedeklemek istediğiniz browser.plugin ile ilişkili anahtarı seçin (örn. Third-Party Application).
  9. Dosya menüsünden, Dışarı Aktar'ı seçin.
  10. Kaydet listesinde, Third-Party Application yedek anahtarını kaydetmek istediğiniz klasörü seçin.
  11. Dosya Adı kutusunda, "Third-Party Application Yedeği" gibi bir yedekleme dosyası adı yazın.
  12. Verme Aralığı kutusunda, "Seçili Dal"ın seçildiğinden emin olun.
  13. Kaydet'i Tıklatın.
  14. Daha sonra dosya, .reg dosya uzantısı ile kaydedilir.
  15. Artık, browser.plugin ile ilişkili kayıt defteri girdisinin yedeğine sahipsiniz.

Sisteminize zarar verme riski çok fazla olduğu için, bu makalede kayıt defterinizin el ile düzenlenmesiyle ilgili diğer adımlardan bahsedilmeyecektir. El ile kayıt defteri düzenlemeyle ilgili daha fazla bilgi için, lütfen aşağıdaki bağlantılara bakın.

Aşağıdaki içerikle alakalı yapılan eylemlerin sonuçlarıyla ilgili herhangi bir sorumluluğumuz bulunmamaktadır - bu görevleri tamamlama riski size aittir.

Windows XPhttp://www.theeldergeek.com/windows_xp_registry.htm

Windows 7http://www.theeldergeek.com/windows_7/registry_edits_for_win7.htm

Windows Vistahttp://support.microsoft.com/kb/2688326 - LetMeFixItMyselfAlways

Open
Adım 2: Bilgisayarınızda Kötü Amaçlı Yazılımlara Karşı Tam Tarama Yapın

browser.plugin hatasının bilgisayarınıza kötü amaçlı yazılım bulaşmış olmasından kaynaklanma ihtimali de vardır. Bu kötü niyetli davetsiz misafirler, PLUGIN ile ilişkili dosyalara zarar verebilir, onları bozabilir ve hatta silebilir. Ayrıca, yaşadığınız browser.plugin hatasının kötü niyetli yazılım programının bir bileşeni olma ihtimali de vardır.

İpucu: Henüz kötü amaçlı yazılımlardan koruma programı kurmadıysanız, Emsisoft Anti-Malware (buradan indirin) kullanmanızı şiddetle öneririz.

Open
Adım 3: Disk Temizleme (cleanmgr) ile Sisteminizdeki Gereksiz Şeyleri (Geçici Dosyalar ve Klasörler) Temizleyin

Zamanla, gündelik bilgisayar kullanımının ve internette sörfün sonucunda, bilgisayarınızda gereksiz dosyalar toplanır. Bu gereksiz dosyalar zaman zaman temizlenmezse, Third-Party Application yazılımının yavaş yanıt vermesine neden olabilir ve muhtemelen dosya çakışmaları ya da aşırı yüklenmiş sabit sürücü nedeniyle browser.plugin hataları üretir. Bu geçici dosyaların Disk Temizleme ile temizlenmesi browser.plugin hatasını belki çözemez, ama bilgisayarınızın performansını büyük ölçüden hızlandırabilir.

İpucu: Her ne kadar Disk Temizleme mükemmel bir yerleşik araç olsa da, bilgisayarınızdaki geçici dosyaları tamamen temizlemeyecektir. Sıklıkla kullandığınız Microsoft Office, Firefox, Chrome, Live Messenger ve diğer yüzlerce program, Disk Temizleme ile temizlenmez (Windows Software Developer programlarının bazıları da dahil).

Windows Disk Temizleme (cleanmgr) aracının yetersizlikleri nedeniyle, bilgisayarın tamamını temizlemek için WinSweeper (Bir Microsoft Gold Partner tarafından geliştirilmiştir) gibi özel bir sabit sürücü temizleme / gizlilik koruması yazılımı kullanmanızı şiddetle tavsiye ederiz. WinSweeper'ı günde bir kez çalıştırmak (otomatik tarama özelliğini kullanarak), bilgisayarınızın daima temiz, hızlı çalışan ve geçici dosyalarla alakalı browser.plugin hatalarından arınmış bir durumda olmasını sağlar.

Disk Temizleme (cleanmgr) (Windows XP, Vista, 7, 8 ve 10):

  1. Başlat düğmesini tıklatın.
  2. Arama kutusuna "command" yazın. Henüz ENTER tuşuna BASMAYIN!
  3. Klavyenizdeki CTRL-Shift tuşlarını basılı tutarken, ENTER tuşuna basın.
  4. Bir izin iletişim kutusu ile sizden izin istenecektir.
  5. Evet'i Tıklatın.
  6. Yanıp sönen imlecin bulunduğu bir kara kutu açılacak.
  7. "cleanmgr" yazın ve ENTER tuşuna basın.
  8. Disk Temizleme, kullanılan disk alanının ne kadarının geri kazanılabileceğini hesaplamaya başlayacak.
  9. Seçim yapabileceğiniz bir dizi onay kutusunun yer aldığı Disk Temizleme iletişim kutusu belirecektir. Birçok durumda, "Geçici Dosyalar", disk alanının çoğunu kaplıyor olacaktır.
  10. Temizlemek istediğiniz kategorilerin kutularını işaretleyin ve OK'e tıklatın.
Open
Adım 4: Bilgisayarınızdaki Aygıt Sürücülerini Güncelleyin

Browser.plugin hataları, bozuk ya da güncel olmayan aygıt sürücüleriyle ilgili olabilir. Sürücüler, birçok nedenden ötürü bir gün çalışırken diğer gün bir anda çalışmayı durdurabilir. İyi haber, PLUGIN sorunlarını sadece aygıt sürücünüzü güncelleyerek onarabilecek olmanızdır.

Sürücü güncellemelerinin zaman gerektirmesi ve karmaşık oluşu nedeniyle, işlemi DriverDoc (Microsoft Gold Partner tarafından geliştirilmiştir) benzeri bir sürücü güncelleme aracı kullanmanızı öneririz.

Open
Adım 5: En Son Sistem Değişikliklerini "Geri Almak" için Windows Sistem Geri Yüklemeyi Kullanın

Windows Sistem Geri Yükleme, browser.plugin sorunlarınızı çözmeye yardımcı olmak için bilgisayarınızla "zamanda geriye yolculuk" yapmanızı sağlar. Sistem Geri Yükleme, bilgisayarınızın sistem dosyalarını ve programlarını, her şeyin düzgün çalıştığı bir zamana geri döndürebilir. Bu muhtemelen, PLUGIN hatalarıyla ilişkili olarak saatlerce sorun giderme derdinden kurtulmanızı sağlar.

Lütfen Dikkat:Sistem Geri Yükleme, belgelerinizi, resimlerinizi ve diğer verilerinizi etkilemez.

Sistem Geri Yükleme'yi (Windows XP, Vista, 7, 8 ve 10) kullanma:

  1. Başlat düğmesini tıklatın.
  2. Arama kutusuna ""Sistem Geri Yükleme" yazın ve ENTER tuşuna basın.
  3. Sonuçlarda, Sistem Geri Yükleme'yi tıklatın.
  4. Yönetici parolalarını girin (istenirse).
  5. Geri yükleme noktasını seçmek için, Sihirbaz'daki adımları takip edin.
  6. Bilgisayarınızı geri yükleyin.
Open
Adım 6: Browser.plugin ile alakalı Third-Party Application Programını Kaldırın ve Tekrar Yükleyin

Windows 7 ve Windows Vista için talimatlar:

  1. Başlat butonuna tıklayarak Programlar ve Özellikler'i açın.
  2. Sağ kenar menüsünden Denetim Masası'natıklayın.
  3. Programlara tıklayın.
  4. Programlar ve Özellikler'e tıklayın.
  5. Third-Party Application'ı İsim sütunu altına yerleştirin.
  6. Third-Party Application girdisine tıklayın.
  7. Üst menü şeridindeki Kaldır butonuna tıklayın.
  8. Third-Party Application programını kaldırma işlemini tamamlamak için ekrandaki talimatları takip edin.

Windows XP için talimatlar:

  1. Başlat butonuna tıklayarak Programlar ve Özellikler'i açın.
  2. Denetim Masası'na tıklayın.
  3. Programları Ekle veya Kaldır'a tıklayın.
  4. Third-Party Application'ı Güncel Kurulu Programlar listesi altına yerleştirin.
  5. Third-Party Application girdisine tıklayın.
  6. Sağ kenardaki Kaldır butonuna tıklayın.
  7. Third-Party Application programını kaldırma işlemini tamamlamak için ekrandaki talimatları takip edin.

Windows 8 için talimatlar:

  1. Başlat Menüsü resmini oluşturmak için imleci ekranın sol alt kısmında gezdirin.
  2. Başlat İçerik Menüsü'nü açmak için Sağ Tıklayın.
  3. Programlar ve Özellikler'e tıklayın.
  4. Third-Party Application'ı İsim sütunu altına yerleştirin.
  5. Third-Party Application girdisine tıklayın.
  6. Üst menü şeridindeki Kaldır/Değiştir'e tıklayın.
  7. Third-Party Application programını kaldırma işlemini tamamlamak için ekrandaki talimatları takip edin.

browser.plugin ile ilişkili programınızı (örn. browser.plugin) başarıyla kaldırdıktan sonra, Windows Software Developer talimatlarına göre programı tekrar yükleyin.

İpucu: PLUGIN hatanızın belirli bir Windows Software Developer programıyla ilişkili olduğu konusunda pozitifseniz, browser.plugin ile ilişkili programı kaldırıp tekrar yüklemek büyük ihtimalle sorununuzun çözümüdür.

Open
Adım 7: Windows Sistem Dosyası Denetleyicisini Çalıştır ("sfc /scannow")

Sistem Dosyası Denetleyicisi, Windows sistem dosyalarındaki (browser.plugin ile ilişkili olanlar da dahil) bozuklukları aramanızı ve geri yüklemenizi sağlayan, Windows'ta bulunan kullanışlı bir araçtır. Sistem Dosyası Denetleyicisi, PLUGIN veya diğer bir kritik sistem dosyasında bir sorun bulursa, sorunlu dosyayı otomatik olarak değiştirmeye çalışır.

Sistem Dosyası Denetleyicisini çalıştırmak (Windows XP, Vista, 7, 8 ve 10):

  1. Başlat düğmesini tıklatın.
  2. Arama kutusuna "command" yazın. Henüz ENTER tuşuna BASMAYIN!
  3. Klavyenizdeki CTRL-Shift tuşlarını basılı tutarken, ENTER tuşuna basın.
  4. Bir izin iletişim kutusu ile sizden izin istenecektir.
  5. Evet'i Tıklatın.
  6. Yanıp sönen imlecin bulunduğu bir kara kutu açılacak.
  7. "sfc /scannow yazın ve ENTER tuşuna basın.
  8. Sistem Dosyası Denetleyicisi, browser.plugin ve diğer sistem dosyası sorunlarını tarayacaktır (sabırlı olun - sistem tarama zaman alabilir).
  9. Ekrandaki komutları takip edin.
Open
Adım 8: Kullanılabilir Windows Güncellemelerinin Tümünü Yükle

Microsoft, devamlı olarak browser.plugin ile ilişkili olabilecek Windows sistem dosyalarını güncelliyor ve iyileştiriyor. Bazen, PLUGIN sorunlarının çözümü, sadece Windows'u son hizmet paketiyle ya da Microsoft'un devamlı yayınladığı diğer yamalarla güncellemek kadar basittir.

Windows Updates'i (Windows XP, Vista, 7, 8 ve 10):

  1. Başlat düğmesini tıklatın.
  2. Arama kutusuna "güncelleme" yazın ve ENTER tuşuna basın.
  3. Windows Update iletişim kutusu belirecektir.
  4. Güncellemeler mevcutsa, Güncelleştirmeleri Yükle düğmesini tıklatın.
Open
Adım 9: Temiz Windows Yüklemesi Gerçekleştirin

Uyarı: browser.plugin sorunlarını çözmek için Windows'u tekrar yüklemenin son derece zaman alıcı ve ileri düzeyde bir görev olduğunu vurgulamamız gerekiz. Veri kaybını önlemek için, işleme başlamadan önce, tüm önemli belgelerinizi, resimlerinizi, yazılım yükleyicilerinizi ve diğer kişisel verilerinizi yedeklediğinizden emin olmalısınız. Kalıcı veri kaybından korunmak için, eğer henüz yapmıyorsanız hemen verilerinizi yedeklemeye başlayın (çokça önerilen bir yedekleme çözümünü indirin).

Lütfen Dikkat:Windows'un temiz yüklemesinden sonra hala browser.plugin hataları devam ediyorsa, PLUGIN sorununuz MUTLAKA donanımla alakalıdır. Bu durumda, muhtemelen browser.plugin hatasına yola açan ilgili donanımı değiştirmeniz gerekecektir.


Смотрите также

 

..:::Новинки:::..

Windows Commander 5.11 Свежая версия.

Новая версия
IrfanView 3.75 (рус)

Обновление текстового редактора TextEd, уже 1.75a

System mechanic 3.7f
Новая версия

Обновление плагинов для WC, смотрим :-)

Весь Winamp
Посетите новый сайт.

WinRaR 3.00
Релиз уже здесь

PowerDesk 4.0 free
Просто - напросто сильный upgrade проводника.

..:::Счетчики:::..