diff options
Diffstat (limited to 'files/es/plugins')
-rw-r--r-- | files/es/plugins/index.html | 52 | ||||
-rw-r--r-- | files/es/plugins/supporting_private_browsing_in_plugins/index.html | 10 |
2 files changed, 62 insertions, 0 deletions
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 +--- +<p> +</p><p>Los <b>Plugins</b> (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 <a href="es/Extensiones">Extensiones</a>, que modifican o se añaden a funcionalidades ya existentes. +</p><p><br> +</p> +<table class="topicpage-table"> +<tbody><tr> <td> +<h4 id="Documentaci.C3.B3n" name="Documentaci.C3.B3n"> <a>Documentación</a> </h4> +<dl><dt> <a href="es/Usando_el_marcado_correcto_para_llamar_a_los_plugins">Usando el marcado correcto para llamar a los plugins</a> +</dt><dd> <small>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.</small> +</dd></dl> +<dl><dt> <a href="es/Usar_XPInstall_para_instalar_plugins">Usar XPInstall para instalar plugins</a> +</dt><dd> <small><a href="es/XPInstall">XPInstall</a> es un instalador basado en la tecnología JavaScript y que funciona en todas las plataformas en las que los navegadores basados en <a class="external" href="http://mozilla.org">Mozilla</a> y Netscape basados en Mozilla (como Netscape 7) estan presentes.</small> +</dd></dl> +<p><a class="external" href="http://developer.mozilla.org/en/docs/Detecting_Plugins_%28external%29">Detectando Plugins (en)</a> +</p> +<dl><dd> <small>"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?"</small> +</dd></dl> +<p><span class="alllinks"><a>Ver todos...</a></span> +</p> +</td> <td> +<h4 id="Comunidad" name="Comunidad"> Comunidad </h4> +<ul><li> <a class="external" href="http://www.mozillaes.org/index.php?option=com_forum&Itemid=122&page=viewforum&f=15">Desarrollo Mozilla</a> en los foros de Mozilla-ES. +</li></ul> +<ul><li> View Mozilla forums... +</li></ul> +<p>{{ DiscussionList("dev-tech-plugins", "mozilla.dev.tech.plugins") }} +</p><p><span class="alllinks"><a href="es/Plugins/Comunidad">Ver todo</a></span> +</p> +<h4 id="Herramientas" name="Herramientas"> Herramientas </h4> +<ul><li> <a class="external" href="http://plugindoc.mozdev.org/es-ES/">Plugindoc</a> +</li></ul> +<p><span class="alllinks"><a>Ver todo</a></span> +</p> +<h4 id="Temas_relacionados" name="Temas_relacionados"> Temas relacionados </h4> +<dl><dd> <a href="es/Gecko">Gecko</a> +</dd></dl> +</td> </tr> </tbody></table> +<p><span class="comment">Categorías</span> +</p><p><span class="comment">Interwiki Language Links</span> +</p><p><br> +</p> +<div class="noinclude"> +</div> +{{ 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 +--- +<p>{{ fx_minversion_header(3.5) }}</p> +<p>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.</p> +<p>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.</p> +<h2 id="Detecting_private_browsing_mode">Detecting private browsing mode</h2> +<p>Plug-ins can detect whether or not private browsing mode is in effect by using the <a class="internal" href="/en/NPN_GetValue" title="En/NPN GetValue"><code>NPN_GetValue()</code></a> function to check the current value of the <code>NPNVprivateModeBool</code> variable.</p> |