Custom browser startpage
Go to file
2020-04-23 12:16:21 +00:00
.vscode added build task to vscode 2020-04-22 16:25:09 +02:00
src fixed typo in quick url 2020-04-23 14:09:37 +02:00
.drone.yml fixed drone file 2020-04-23 00:14:38 +02:00
.eslintrc.json changed eslint config for return types 2020-04-22 15:12:21 +02:00
.gitattributes added lfs for png files 2020-04-22 15:12:37 +02:00
.gitignore initial commit 2020-04-19 23:31:59 +02:00
package-lock.json added file-loader 2020-04-22 15:13:13 +02:00
package.json changed webpack devserver config 2020-04-22 15:13:33 +02:00
README.md added README 2020-04-23 02:26:08 +02:00
tsconfig.json initial commit 2020-04-19 23:31:59 +02:00
webpack.config.js imporved webpack config with development flag 2020-04-22 16:24:58 +02:00

Build Status

How to set the new Tab

Firefox

Reddit thread

Create 2 files inside of the firefox install directory.

${installDir}/defaults/pref/autoconfig.js

pref("general.config.filename", "autoconfig.cfg");
pref("general.config.obscure_value", 0);
pref("general.config.sandbox_enabled", false);

${installDir}/autoconfig.cfg

// first line is a comment
var {classes:Cc,interfaces:Ci,utils:Cu} = Components;
var newTabURL = "http://localhost:8080";
aboutNewTabService = Cc["@mozilla.org/browser/aboutnewtab-service;1"].getService(Ci.nsIAboutNewTabService);
aboutNewTabService.newTabURL = newTabURL;

Replace the "localhost" line in autoconfig.cfg with your URL. Also you can set the homepage via your normal settings.

Alternatively you can use a extentions called New Tab override.

Chrome

Maybe this extention. Not tested yet.