Полезная информация

Список ответов на каверзные вопросы можно получить в FAQ-разделе форума.

№112-03-2013 14:01:42

FirePig
Участник
 
Группа: Members
Зарегистрирован: 12-03-2013
Сообщений: 1
UA: Firefox 19.0

Firefox portable.

При переходе по ссылке из программы (например ссылка в аське) запускается обычный ОгнеЛис. Как сделать так, что-бы запускался портабл?

Отсутствует

 

№212-03-2013 14:46:55

okkamas_knife
We are the Borg.       Resistance is futile.
 
Группа: Members
Зарегистрирован: 21-10-2009
Сообщений: 9558
UA: Seamonkey 2.14

Re: Firefox portable.


я помню те времена когда обновления программ убирали проблемы и исправляли баги, а не добавляли их.
toxID:05AB9B827D896AACEE7FF4573A02FB8F025F46ADC856B98F65BC1BA9BD21A81DC98BA9C36CE3

Отсутствует

 

№312-03-2013 16:25:14

Sid
Участник
 
Группа: Extensions
Зарегистрирован: 10-05-2007
Сообщений: 5676
UA: Firefox 22.0

Re: Firefox portable.

Только в этом случае он перестанет быть портабл.

Отсутствует

 

№412-03-2013 16:43:26

adidharma
 
 
Группа: Members
Зарегистрирован: 15-08-2011
Сообщений: 754
UA: Firefox 19.0

Re: Firefox portable.

Или чтобы портабл был постоянно запущен. Тогда ссылки будут в нём открываться (если не используется --no-remote или AllowMultipleInstances=true)

okkamas_knife пишет

как сделать FF Portable браузером по-умолчанию

Делал (точнее переделывал из сорцев под другой портабл) как-то, по просьбе, программку для назначения PortableApps'ного [firefox] браузером по умолчанию. Говорят, работает.

FF-SetDefaultU.nsi

Выделить код

Код:

Name "Portable Firefox"

SetCompressor /SOLID lzma
!include "Registry.nsh"
!include "MUI.nsh"
!define MUI_LANGDLL_ALLLANGUAGES
!insertmacro MUI_LANGUAGE "Russian"

OutFile FF-SetDefault.exe
CRCCheck off
SilentInstall silent
XPSTYLE on
Icon "appicon.ico"
RequestExecutionLevel highest


Section
GetFullPathName /SHORT "$8" "$EXEDIR\App\Firefox\firefox.exe"
GetFullPathName /SHORT "$9" "$EXEDIR\Data\profile"
 ${If} ${Cmd} `MessageBox MB_YESNO "Назначить браузером по умолчанию портативную версию Firefox из этой папки?" IDYES`

     ${registry::DeleteKey} "HKEY_CLASSES_ROOT\ftp\shell\open\ddeexec\ifExec" $R0
    ${registry::DeleteKey} "HKEY_LOCAL_MACHINE\Software\Classes\ftp\shell\open\ddeexec\ifExec" $R0

    ${registry::Write} 'HKEY_CLASSES_ROOT\.htm' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\.html' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\.shtml' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\.xht' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\.xhtml' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxHTML' '' 'Firefox Document' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxHTML' 'FriendlyTypeName' 'Firefox Document' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL' '' 'Firefox URL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL' 'FriendlyTypeName' 'Firefox URL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL' 'EditFlags' '0x00000002' 'REG_DWORD' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL' 'URL Protocol' '' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\.htm' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\.html' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\.shtml' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\.xht' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\.xhtml' '' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxHTML' '' 'Firefox Document' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxHTML' 'FriendlyTypeName' 'Firefox Document' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL' '' 'Firefox URL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL' 'FriendlyTypeName' 'Firefox URL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL' 'EditFlags' '0x00000002' 'REG_DWORD' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL' 'URL Protocol' '' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CLASSES_ROOT\ftp\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\http\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\https\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxHTML\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\ftp\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\http\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\https\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxHTML\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\ftp\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\HTTP\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\https\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\FirefoxHTML\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\FirefoxURL\DefaultIcon' '' '"$8",1' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CLASSES_ROOT\ftp\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\http\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\https\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxHTML\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\ftp\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\http\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\https\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxHTML\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\ftp\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\HTTP\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\https\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\FirefoxHTML\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\FirefoxURL\shell\open\command' '' '"$8" -profile "$9" -requestPending -url "%1"' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CLASSES_ROOT\ftp\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\http\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\https\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxHTML\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxHTML\shell\open\ddeexec' 'NoActivateHandler' '' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxHTML\shell\open\ddeexec\Topic' '' 'WWW_OpenURL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec' 'NoActivateHandler' '' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec\Topic' '' 'WWW_OpenURL' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\ftp\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\http\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\https\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxHTML\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxHTML\shell\open\ddeexec' 'NoActivateHandler' '' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxHTML\shell\open\ddeexec\Topic' '' 'WWW_OpenURL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL\shell\open\ddeexec' 'NoActivateHandler' '' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL\shell\open\ddeexec\Topic' '' 'WWW_OpenURL' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\ftp\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\HTTP\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\https\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\FirefoxHTML\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\FirefoxURL\shell\open\ddeexec' '' '"%1",,0,0,,,,' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CLASSES_ROOT\ftp\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\http\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\https\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxHTML\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\ftp\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\http\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\https\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxHTML\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Classes\FirefoxURL\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\ftp\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\HTTP\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\https\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\FirefoxHTML\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Classes\FirefoxURL\shell\open\ddeexec\Application' '' 'Firefox' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe' '' 'Mozilla Firefox' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities' 'ApplicationIcon' '"$8",0' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities' 'ApplicationName' 'Firefox' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\FileAssociations' '.htm' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\FileAssociations' '.html' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\FileAssociations' '.shtml' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\FileAssociations' '.xht' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\FileAssociations' '.xhtml' 'FirefoxHTML' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\StartMenu' 'StartMenuInternet' 'FIREFOX.EXE' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\URLAssociations' 'ftp' 'FirefoxURL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\URLAssociations' 'http' 'FirefoxURL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\Capabilities\URLAssociations' 'https' 'FirefoxURL' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\Clients\StartMenuInternet\firefox.exe\DefaultIcon' '' '"$8",0' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_LOCAL_MACHINE\Software\RegisteredApplications' 'Firefox' 'Software\Clients\StartMenuInternet\FIREFOX.EXE\Capabilities' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CURRENT_USER\SOFTWARE\Clients\StartMenuInternet' '' 'FIREFOX.EXE' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.htm\UserChoice' 'Progid' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.html\UserChoice' 'Progid' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.shtml\UserChoice' 'Progid' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xht\UserChoice' 'Progid' 'FirefoxHTML' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xhtml\UserChoice' 'Progid' 'FirefoxHTML' 'REG_SZ' $R0

    ${registry::Write} 'HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\ftp\UserChoice' 'Progid' 'FirefoxURL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice' 'Progid' 'FirefoxURL' 'REG_SZ' $R0
    ${registry::Write} 'HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\https\UserChoice' 'Progid' 'FirefoxURL' 'REG_SZ' $R0

    ${registry::Unload}
 ${EndIf}
 ${If} ${Cmd} `MessageBox MB_YESNO "Создать на рабочем столе ярлык для портативной версии Firefox из этой папки?" IDYES`
 SetOutPath "$EXEDIR\App\Firefox"
  CreateShortCut '$DESKTOP\Firefox Portable.lnk' '$EXEDIR\App\Firefox\firefox.exe' '-profile "$EXEDIR\Data\profile"' '$EXEDIR\FirefoxPortable.exe' 0
 ${EndIf}
SectionEnd


.


pcxFirefox - лучшая сборка Лисы!

Отсутствует

 

№512-03-2013 18:08:04

Sergeys
Administrator
 
Группа: Administrators
Откуда: Moscow, Russia
Зарегистрирован: 23-01-2005
Сообщений: 14009
UA: Firefox 20.0
Веб-сайт

Re: Firefox portable.

И поиск


Через сомнения приходим к истине. Цицерон

Отсутствует

 

Board footer

Powered by PunBB
Modified by Mozilla Russia
Copyright © 2004–2020 Mozilla Russia GitHub mark
Язык отображения форума: [Русский] [English]