Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 1065186 of Security preferences

  • Enlace amigable (slug) de la revisión: Midas/Security_preferences
  • Título de la revisión: Security preferences
  • Id de la revisión: 1065186
  • Creada:
  • Creador: SphinxKnight
  • ¿Es la revisión actual? No
  • Comentario typo paste in last edit, not applying updates from en-US content
Etiquetas: 

Contenido de la revisión

To protect users' private information, unprivileged scripts cannot invoke the Cut, Copy, and Paste commands in the Mozilla rich text editor, so the corresponding buttons on the Mozilla Rich Text Editing demo page will not work. To enable these functions for purposes of the demo, you must modify your browser preferences.

For Firefox:

  1. Quit Firefox. If you have Quick Launch running (in Windows, an icon in the toolbar), quit that too.
  2. Find your Firefox profile directory.
  3. Open the user.js file from that directory in a text editor. If there's no user.js file, create one.
  4. Add these lines to user.js:
    user_pref("capability.policy.policynames", "allowclipboard");
    user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org");
    user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
    user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");
  5. Change the url https://www.mozilla.org to the site for which you want to enable this function.
  6. Save the file and restart Firefox. The Clipboard buttons should now function.
Note: The preference is site as well as protocol specific. For example:
user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org")

is not the same as:

user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org")

This is because the first uses HTTP while the second uses HTTPS.

If you want to allow multiple URLs to access the Paste operation, separate the URLs with a space. For example:

user_pref("capability.policy.allowclipboard.sites",
 "https://www.mozilla.org https://developer.mozilla.org")

For more information about security policies, see https://www.mozilla.org/projects/security/components/ConfigPolicy.html.Ctrl/Cmd+V

user_pref("capability.policy.policynames", "allowclipboard"); user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org"); user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess"); user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess"); user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org") user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org https://developer.mozilla.org") See also For more information about security policies, see this article about Configurable Security Policies. Etiquetas editor Security Gecko Midas Traducción en Español: Fuente HTML Estilo

Fuente de la revisión

<p>To protect users' private information, unprivileged scripts cannot invoke the Cut, Copy, and Paste commands in the Mozilla rich text editor, so the corresponding buttons on the Mozilla Rich Text Editing demo page will not work. To enable these functions for purposes of the demo, you must modify your browser preferences.</p>

<p>For Firefox:</p>

<ol>
 <li>Quit Firefox. If you have Quick Launch running (in Windows, an icon in the toolbar), quit that too.</li>
 <li><a class="external" href="https://support.mozilla.com/en-US/kb/Profiles">Find your Firefox profile directory</a>.</li>
 <li>Open the <code class="filename">user.js</code> file from that directory in a text editor. If there's no user.js file, create one.</li>
 <li>Add these lines to <code class="filename">user.js</code>:
  <pre class="code">
user_pref("capability.policy.policynames", "allowclipboard");
user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org");
user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");</pre>
 </li>
 <li>Change the url <span class="external"><code class="url">https://www.mozilla.org</code></span> to the site for which you want to enable this function.</li>
 <li>Save the file and restart Firefox. The Clipboard buttons should now function.</li>
</ol>

<div class="note"><strong>Note:</strong> The preference is site as well as protocol specific. For example:

<pre>
user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org")</pre>

<p>is not the same as:</p>

<pre>
user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org")</pre>

<p>This is because the first uses HTTP while the second uses HTTPS.</p>
</div>

<p>If you want to allow multiple URLs to access the Paste operation, separate the URLs with a space. For example:</p>

<pre>
user_pref("capability.policy.allowclipboard.sites",
 "https://www.mozilla.org https://developer.mozilla.org")
</pre>

<p>For more information about security policies, see <a class="external" href="https://www.mozilla.org/projects/security/components/ConfigPolicy.html">https://www.mozilla.org/projects/security/components/ConfigPolicy.html</a>.<strong>Ctrl/Cmd+V</strong></p>

<p>user_pref("capability.policy.policynames", "allowclipboard"); user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org"); user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess"); user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess"); user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org") user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org https://developer.mozilla.org") See also For more information about security policies, see this article about Configurable Security Policies. Etiquetas editor Security Gecko Midas Traducción en Español: Fuente HTML Estilo</p>

<div id="dc_vk_code" style="display: none;">&nbsp;</div>
Revertir a esta revisión