Showing posts with label Firefox.developer. Show all posts
Showing posts with label Firefox.developer. Show all posts

Tuesday, April 16, 2024

Firefox open multiple private window

 

 

/opt/firefox/firefox-bin --profile $(mktemp -d) --private-window www.google.com www.bing.com
 

Wednesday, July 20, 2016

Web shot in Firefox


Open command window

shift+F2

Execute:

screentshot --fullpage [filename.png]





Monday, April 25, 2011

Enable/Disable Firefox Cookies

on url address put about:config and search next item.
network.cookie.alwaysAcceptSessionCookies //verify value is true


References:
http://support.mozilla.com/es/kb/Habilitar%20y%20deshabilitar%20cookies

Tuesday, June 15, 2010

Links necesarios

pagina blancas directo
http://paginasblancas.com.pe/resultados.asp?t=225151

guid
http://createguid.com/

firefox personal addon
http://foro.elhacker.net/programacion_general/howto_crear_extensiones_para_firefox-t127159.0.html

Firefox Developer

Addon make new addons
http://ted.mielczarek.org/code/mozilla/extensiondev/

How To Disable ‘will not be installed because it does not provide secure updates’ Warning in Firefox 3



By default, Firefox 3 prevents users from installing any extensions that do not offer a secure connection for automatic updates. This prevents users from being victims of hijacked update URLs.

But for developers or people installing extensions they know they can trust, it is a pain.

Luckily it is easily disabled by:

1. Enter ‘about:config’ into address bar, hit go
2. Right click somewhere in the list of keys below. Select New->Boolean
3. Enter ‘ extensions.checkUpdateSecurity ‘ as the name
4. Select false as the value
5. Reattempt installation of your plugin.

Ran into this problem when installing Extension Developer’s Extension while working on Read It Later.

Found the solution at MozillaZine (via Google)

Firefox open multiple private window

    /opt/firefox/firefox-bin --profile $(mktemp -d) --private-window www.google.com www.bing.com