diff options
Diffstat (limited to 'background.js')
-rw-r--r-- | background.js | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/background.js b/background.js index 7aaed64e..ae1f7e45 100644 --- a/background.js +++ b/background.js @@ -33,7 +33,7 @@ chrome.runtime.onMessage.addListener(function (request, sender, callback) { case "alertPrevious": chrome.notifications.create("stillThere" + Math.random(), { type: "basic", - title: chrome.i18n.getMessage("wantToSubmit") + request.previousVideoID + "?", + title: chrome.i18n.getMessage("wantToSubmit") + " " + request.previousVideoID + "?", message: chrome.i18n.getMessage("leftTimes"), iconUrl: "./icons/LogoSponsorBlocker256px.png" }); @@ -215,22 +215,4 @@ function sendRequestToServer(type, address, callback) { //submit this request xmlhttp.send(); -} - -function generateUserID(length = 36) { - let charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; - let result = ""; - if (window.crypto && window.crypto.getRandomValues) { - values = new Uint32Array(length); - window.crypto.getRandomValues(values); - for (i = 0; i < length; i++) { - result += charset[values[i] % charset.length]; - } - return result; - } else { - for (let i = 0; i < length; i++) { - result += charset[Math.floor(Math.random() * charset.length)]; - } - return result; - } -} +}
\ No newline at end of file |