This commit is contained in:
David Ralph
2019-01-18 22:36:08 +00:00
parent f43ad6bbd1
commit cce69892a3
43 changed files with 219 additions and 252 deletions

View File

@@ -0,0 +1,13 @@
// Original code sourced from https://forums.opera.com/topic/25046/how-to-disable-completely-the-speed-dial/14
chrome.tabs.onCreated.addListener((tab) => {
if (tab.status === "complete" && tab.url === "chrome://startpage/") {
chrome.tabs.update(tab.id, { url: chrome.extension.getURL("index.html") });
}
});
chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
if (changeInfo.status === "complete" && tab.url === "chrome://startpage/") {
chrome.tabs.update(tabId, { url: chrome.extension.getURL("index.html") });
}
});