Bien sûr, il est possible de faire de Conkeror le navigateur web par défaut ; il suffit de structurer correctement l'application Info.plist
fichier.
J'en ai créé un ici : http://www.markdouma.com/developer/ConkerorInfoPlist.zip
Il suffit de le télécharger, de le décompresser et de remplacer les éléments suivants Info.plist
avec celui qui est inclus dans le téléchargement :
/Applications/conkeror.mozdev.org/conkeror/Contents/Info.plist
Remarque : après avoir effectué cette opération, assurez-vous que vous touch
le paquet d'applications, ce qui obligera les services de lancement à réexaminer et à réenregistrer l'application et sa capacité nouvellement trouvée pour le paquet d'applications. http://
y https://
Types d'URL. En d'autres termes, les éléments suivants devraient être suffisants :
touch /Applications/conkeror.mozdev.org/conkeror.app
Ensuite, désélectionnez et re-sélectionnez l'icône de l'application dans le Finder.
Lancez Safari, et choisissez Conkeror dans le menu contextuel :
Pour info, j'ai modifié le fichier Info.plist comme suit :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleSignature</key>
<string>CONK</string>
<key>CFBundleIdentifier</key>
<string>org.mozdev.conkeror</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Web site URL</string>
<key>CFBundleURLSchemes</key>
<array>
<string>http</string>
<string>https</string>
</array>
</dict>
</array>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleExecutable</key>
<string>xulrunner</string>
<key>CFBundleName</key>
<string>conkeror</string>
<key>CFBundleVersion</key>
<string>93</string>
<key>NSHumanReadableCopyright</key>
<string>(c) 2007, Shawn Betts</string>
<key>NSAppleScriptEnabled</key>
<true/>
<key>CFBundleDisplayName</key>
<string>Conkeror</string>
<key>CFBundleShortVersionString</key>
<string>0.9.3</string>
<key>CFBundleGetInfoString</key>
<string>Conkeror 0.9.3, A 100% keyboard driven mozilla based web browser.</string>
</dict>
</plist>