

Firefox 60 konfigurace homepage a dvou bookmarks
ahoj,
jsem tu opět s dalším dotazem :) tentokrát ohledně Firefoxu 60 kde je nový postup pro konfiguraci a mě nějak nefunguje. má někdo ověřené funkční řešení?
jde mi jen o to aby byla definována homepage a dvě záložky.
vytvořil jsem si konfigurační soubory v cílové složce Firefoxu:
C:\Program Files\Mozilla Firefox\firefox.cfg
C:\Program Files\Mozilla Firefox\defaults\pref\autoconfig.js
C:\Program Files\Mozilla Firefox\distribution\policies.json
ale nefunguje to, FF nastavení ignoruje.
Oficiální dokumentace: https://support.mozilla.org/cs/kb/prizpusobeni-firefoxu-pomoci-automaticke-konfigura
Máte někdo ověřené funkční řešení?
Díky moc.
obsah mozilla.cfg
----
// Any comment. You must start the file with a comment!
// Disable updater
lockPref("app.update.enabled", true);
// make absolutely sure it is really off
lockPref("app.update.auto", true);
lockPref("app.update.mode", 1);
lockPref("app.update.service.enabled", true);
// Disable Add-ons compatibility checking
clearPref("extensions.lastAppVersion");
// Dont show 'know your rights' on first run
pref("browser.rights.3.shown", true);
// Dont show WhatsNew on first run after every update
pref("browser.startup.homepage_override.mstone","ignore");
// Set default homepage - users can change
// Requires a complex preference
defaultPref("browser.startup.homepage","data:text/plain,browser.startup.homepage=https://xxx.xxx.cz");
// Disable the internal PDF viewer
pref("pdfjs.disabled", true);
// Disable the flash to javascript converter
pref("shumway.disabled", true);
// Dont ask to install the Flash plugin
pref("plugins.notifyMissingFlash", false);
// Disable all data upload (Telemetry and FHR)
lockPref("datareporting.policy.dataSubmissionEnabled", false);
----
obsah autoconfig.js
----
// Any comment. You must start the file with a single-line comment!
pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);
----
obsah policies.json
----
{
"policies": {
"Bookmarks": [
{
"Placement": "toolbar",
"Title": "Citrix hlavní",
"URL": "https://xxx.xxx.cz"
},
{
"Placement": "toolbar",
"Title": "Citrix záložní",
"URL": "https://xxx.xxx.cz"
}
]
}
}
----
MZ