Untitled

 avatar
unknown
javascript
a year ago
557 B
7
Indexable
// Disable session restore
user_pref("browser.sessionstore.resume_from_crash", false);
user_pref("browser.startup.page", 1); // 0 = blank, 1 = home, 2 = last visited page
user_pref("browser.sessionstore.max_resumed_crashes", 0);
// Add Proxy Settings
user_pref("network.proxy.type", 1);
user_pref("network.proxy.http", "proxy.example.com");
user_pref("network.proxy.http_port", 8080);
user_pref("network.proxy.ssl", "proxy.example.com");
user_pref("network.proxy.ssl_port", 8080);
user_pref("network.proxy.no_proxies_on_local", "localhost,127.0.0.1");
Editor is loading...
Leave a Comment