I just want to use copy/paste with my mouse.
Why can't you make it just a toggle in Firefox?
Why do I have to enter someone else's resume in my user.js file??
That makes … (閱讀更多)
I just want to use copy/paste with my mouse.
Why can't you make it just a toggle in Firefox?
Why do I have to enter someone else's resume in my user.js file??
That makes even LESS sense.
For Firefox:
Quit Firefox. If you have Quick Launch running (in Windows, an icon in the toolbar), quit that too.
Find your Firefox profile directory.
Open the user.js file from that directory in a text editor. If there's no user.js file, create one.
Add these lines to user.js:
[edit: removed personal information]
Note: The preference is site as well as protocol specific. For example:
user_pref("capability.policy.allowclipboard.sites", "http://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 http://www.mozilla.org/projects/security/components/ConfigPolicy.html.