mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 09:07:45 +01:00
Added delayed startup after install.
This commit is contained in:
parent
6790952f86
commit
dfad1a5636
1 changed files with 16 additions and 14 deletions
|
@ -42,13 +42,14 @@ chrome.runtime.onMessage.addListener(function (request, sender, callback) {
|
|||
|
||||
//add help page on install
|
||||
chrome.runtime.onInstalled.addListener(function (object) {
|
||||
chrome.storage.sync.get(["userID", "shownInstallPage"], function(result) {
|
||||
setTimeout(function() {
|
||||
chrome.storage.sync.get(["userID"], function(result) {
|
||||
const userID = result.userID;
|
||||
|
||||
// If there is no userID, then it is the first install.
|
||||
if (!userID){
|
||||
//open up the install page
|
||||
chrome.tabs.create({url: chrome.extension.getURL("/help/"+chrome.i18n.getMessage("helpPage"))});
|
||||
chrome.tabs.create({url: chrome.extension.getURL("/help/index_en.html")});
|
||||
|
||||
//generate a userID
|
||||
const newUserID = generateUserID();
|
||||
|
@ -58,6 +59,7 @@ chrome.runtime.onInstalled.addListener(function (object) {
|
|||
});
|
||||
}
|
||||
});
|
||||
}, 1500);
|
||||
});
|
||||
|
||||
//gets the sponsor times from memory
|
||||
|
|
Loading…
Reference in a new issue