From 1109132f09d75da9a28b649c7677bb6ce07c40c0 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:45 -0500 Subject: initial commit --- files/es/plugins/index.html | 52 ++++++++++++++++++++++ .../index.html | 10 +++++ 2 files changed, 62 insertions(+) create mode 100644 files/es/plugins/index.html create mode 100644 files/es/plugins/supporting_private_browsing_in_plugins/index.html (limited to 'files/es/plugins') diff --git a/files/es/plugins/index.html b/files/es/plugins/index.html new file mode 100644 index 0000000000..7f9e31e896 --- /dev/null +++ b/files/es/plugins/index.html @@ -0,0 +1,52 @@ +--- +title: Plugins +slug: Plugins +tags: + - Plugins + - Todas_las_Categorías +translation_of: Archive/Plugins +--- +

+

Los Plugins (o plug-ins) son pequeños fragmentos de software que interactúan con el navegador para proporcionar algunas funciones que en la mayoria de los casos son muy especificas. Ejemplos tipicos de plugins son los usados para mostrar los distintos formatos gráficos, o para reproducir ficheros multimedia. Los plugins son ligeramente diferentes de las Extensiones, que modifican o se añaden a funcionalidades ya existentes. +


+

+ +
+

Documentación

+
Usando el marcado correcto para llamar a los plugins +
Este artículo trata de como llamar a un plugin correctamente usando HTML. Habla sobre el elemento object y el elemento embed, asi como detalles sobre como llamar a aplicaciones Java con HTML en aplicaciones web. +
+
Usar XPInstall para instalar plugins +
XPInstall es un instalador basado en la tecnología JavaScript y que funciona en todas las plataformas en las que los navegadores basados en Mozilla y Netscape basados en Mozilla (como Netscape 7) estan presentes. +
+

Detectando Plugins (en) +

+
"Ya que hay situaciones donde esta claro que hay que usar plugins, la pregunta es, ¿que hacer con aquellos que no tienen el plugin requerido instalado?" +
+

Ver todos... +

+
+

Comunidad

+ +
  • View Mozilla forums... +
+

{{ DiscussionList("dev-tech-plugins", "mozilla.dev.tech.plugins") }} +

Ver todo +

+

Herramientas

+ +

Ver todo +

+

Temas relacionados

+
Gecko +
+
+

Categorías +

Interwiki Language Links +


+

+
+
+{{ languages( { "de": "de/Plugins", "en": "en/Plugins", "fr": "fr/Plugins", "ja": "ja/Plugins", "ko": "ko/Plugins", "pl": "pl/Wtyczki", "pt": "pt/Plugins" } ) }} diff --git a/files/es/plugins/supporting_private_browsing_in_plugins/index.html b/files/es/plugins/supporting_private_browsing_in_plugins/index.html new file mode 100644 index 0000000000..4448567bb4 --- /dev/null +++ b/files/es/plugins/supporting_private_browsing_in_plugins/index.html @@ -0,0 +1,10 @@ +--- +title: Supporting private browsing in plugins +slug: Plugins/Supporting_private_browsing_in_plugins +translation_of: Archive/Plugins/Supporting_private_browsing_in_plugins +--- +

{{ fx_minversion_header(3.5) }}

+

Firefox 3.5 introduced private browsing, a mode in which potentially private information is not recorded in any way.  It also introduced a mechanism by which plugins can determine whether or not private browsing mode is in effect.  Plugins should be updated to monitor the state of private browsing mode and only save private information when private browsing is disabled.

+

Potentially private information may include (but is not necessarily limited to) history information for downloaded data.  For example, if private browsing mode is in effect, video player plugins should not record the URLs of watched videos in their histories.

+

Detecting private browsing mode

+

Plug-ins can detect whether or not private browsing mode is in effect by using the NPN_GetValue() function to check the current value of the NPNVprivateModeBool variable.

-- cgit v1.2.3-54-g00ecf