mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 09:07:45 +01:00
1192 lines
38 KiB
JavaScript
1192 lines
38 KiB
JavaScript
//was sponsor data found when doing SponsorsLookup
|
|
var sponsorDataFound = false;
|
|
|
|
//the actual sponsorTimes if loaded and UUIDs associated with them
|
|
var sponsorTimes = null;
|
|
var UUIDs = null;
|
|
//what video id are these sponsors for
|
|
var sponsorVideoID = null;
|
|
|
|
//the time this video is starting at when first played, if not zero
|
|
var youtubeVideoStartTime = null;
|
|
|
|
if(id = getYouTubeVideoID(document.URL)){ // Direct Links
|
|
videoIDChange(id);
|
|
}
|
|
|
|
//the video
|
|
var v;
|
|
|
|
//the channel this video is about
|
|
var channelURL;
|
|
|
|
//is this channel whitelised from getting sponsors skipped
|
|
var channelWhitelisted = false;
|
|
|
|
//the last time looked at (used to see if this time is in the interval)
|
|
var lastTime = -1;
|
|
|
|
//the actual time (not video time) that the last skip happened
|
|
var lastUnixTimeSkipped = -1;
|
|
|
|
//the last time in the video a sponsor was skipped
|
|
//used for the go back button
|
|
var lastSponsorTimeSkipped = null;
|
|
//used for ratings
|
|
var lastSponsorTimeSkippedUUID = null;
|
|
|
|
//if showing the start sponsor button or the end sponsor button on the player
|
|
var showingStartSponsor = true;
|
|
|
|
//should the video controls buttons be added
|
|
var hideVideoPlayerControls = false;
|
|
var hideInfoButtonPlayerControls = false;
|
|
var hideDeleteButtonPlayerControls = false;
|
|
|
|
//the downloaded sponsor times
|
|
var sponsorTimes = [];
|
|
var UUIDs = [];
|
|
|
|
//the sponsor times being prepared to be submitted
|
|
var sponsorTimesSubmitting = [];
|
|
|
|
//becomes true when isInfoFound is called
|
|
//this is used to close the popup on YouTube when the other popup opens
|
|
var popupInitialised = false;
|
|
|
|
//should view counts be tracked
|
|
var trackViewCount = false;
|
|
chrome.storage.sync.get(["trackViewCount"], function(result) {
|
|
let trackViewCountStorage = result.trackViewCount;
|
|
if (trackViewCountStorage != undefined) {
|
|
trackViewCount = trackViewCountStorage;
|
|
} else {
|
|
trackViewCount = true;
|
|
}
|
|
});
|
|
|
|
//if the notice should not be shown
|
|
//happens when the user click's the "Don't show notice again" button
|
|
var dontShowNotice = false;
|
|
chrome.storage.sync.get(["dontShowNoticeAgain"], function(result) {
|
|
let dontShowNoticeAgain = result.dontShowNoticeAgain;
|
|
if (dontShowNoticeAgain != undefined) {
|
|
dontShowNotice = dontShowNoticeAgain;
|
|
}
|
|
});
|
|
|
|
//get messages from the background script and the popup
|
|
chrome.runtime.onMessage.addListener(messageListener);
|
|
|
|
window.addEventListener("hashchange", function(event){
|
|
if(id = getYouTubeVideoID(document.URL)) videoIDChange(id);
|
|
});
|
|
|
|
function messageListener(request, sender, sendResponse) {
|
|
//messages from popup script
|
|
if (request.message == "sponsorStart") {
|
|
sponsorMessageStarted(sendResponse);
|
|
}
|
|
|
|
if (request.message == "sponsorDataChanged") {
|
|
updateSponsorTimesSubmitting();
|
|
}
|
|
|
|
if (request.message == "isInfoFound") {
|
|
//send the sponsor times along with if it's found
|
|
sendResponse({
|
|
found: sponsorDataFound,
|
|
sponsorTimes: sponsorTimes,
|
|
UUIDs: UUIDs
|
|
});
|
|
|
|
if (popupInitialised && document.getElementById("sponsorBlockPopupContainer") != null) {
|
|
//the popup should be closed now that another is opening
|
|
closeInfoMenu();
|
|
}
|
|
|
|
popupInitialised = true;
|
|
}
|
|
|
|
if (request.message == "getVideoID") {
|
|
sendResponse({
|
|
videoID: getYouTubeVideoID(document.URL)
|
|
})
|
|
}
|
|
|
|
if (request.message == "getChannelURL") {
|
|
sendResponse({
|
|
channelURL: channelURL
|
|
})
|
|
}
|
|
|
|
if (request.message == "isChannelWhitelisted") {
|
|
sendResponse({
|
|
value: channelWhitelisted
|
|
})
|
|
}
|
|
|
|
if (request.message == "whitelistChange") {
|
|
channelWhitelisted = request.value;
|
|
sponsorsLookup(getYouTubeVideoID(document.URL));
|
|
}
|
|
|
|
if (request.message == "showNoticeAgain") {
|
|
dontShowNotice = false;
|
|
}
|
|
|
|
if (request.message == "changeStartSponsorButton") {
|
|
changeStartSponsorButton(request.showStartSponsor, request.uploadButtonVisible);
|
|
}
|
|
|
|
if (request.message == "changeVideoPlayerControlsVisibility") {
|
|
hideVideoPlayerControls = request.value;
|
|
|
|
updateVisibilityOfPlayerControlsButton();
|
|
} else if (request.message == "changeInfoButtonPlayerControlsVisibility") {
|
|
hideInfoButtonPlayerControls = request.value;
|
|
|
|
updateVisibilityOfPlayerControlsButton();
|
|
} else if (request.message == "changeDeleteButtonPlayerControlsVisibility") {
|
|
hideDeleteButtonPlayerControls = request.value;
|
|
|
|
updateVisibilityOfPlayerControlsButton();
|
|
}
|
|
|
|
if (request.message == "trackViewCount") {
|
|
trackViewCount = request.value;
|
|
}
|
|
}
|
|
|
|
//check for hotkey pressed
|
|
document.onkeydown = function(e){
|
|
e = e || window.event;
|
|
var key = e.which || e.keyCode;
|
|
|
|
let video = document.getElementById("movie_player");
|
|
|
|
//is the video in focus, otherwise they could be typing a comment
|
|
if (document.activeElement === video) {
|
|
if(key == 186){
|
|
//semicolon
|
|
startSponsorClicked();
|
|
} else if (key == 222) {
|
|
//single quote
|
|
submitSponsorTimes();
|
|
}
|
|
}
|
|
}
|
|
|
|
function videoIDChange(id) {
|
|
|
|
//not a url change
|
|
if (sponsorVideoID == id) return;
|
|
|
|
chrome.storage.sync.set({videoid: id});
|
|
|
|
//warn them if they had unsubmitted times
|
|
if (previousVideoID != null) {
|
|
//get the sponsor times from storage
|
|
let sponsorTimeKey = 'sponsorTimes' + previousVideoID;
|
|
chrome.storage.sync.get([sponsorTimeKey], function(result) {
|
|
let sponsorTimes = result[sponsorTimeKey];
|
|
|
|
if (sponsorTimes != undefined && sponsorTimes.length > 0) {
|
|
//warn them that they have unsubmitted sponsor times
|
|
chrome.notifications.create("stillThere" + Math.random(), {
|
|
type: "basic",
|
|
title: "Do you want to submit the sponsor times for watch?v=" + previousVideoID + "?",
|
|
message: "You seem to have left some sponsor times unsubmitted. Go back to that page to submit them (they are not deleted).",
|
|
iconUrl: "./icons/LogoSponsorBlocker256px.png"
|
|
});
|
|
}
|
|
|
|
//set the previous video id to the currentID
|
|
previousVideoID = id;
|
|
});
|
|
} else {
|
|
previousVideoID = id;
|
|
}
|
|
|
|
//close popup
|
|
closeInfoMenu();
|
|
|
|
//reset last sponsor times
|
|
lastTime = -1;
|
|
lastUnixTimeSkipped = -1;
|
|
|
|
//reset sponsor times
|
|
sponsorTimes = null;
|
|
UUIDs = null;
|
|
sponsorVideoID = id;
|
|
|
|
//see if there is a video start time
|
|
youtubeVideoStartTime = getYouTubeVideoStartTime(document.URL);
|
|
|
|
//reset sponsor data found check
|
|
sponsorDataFound = false;
|
|
sponsorsLookup(id);
|
|
|
|
//make sure everything is properly added
|
|
updateVisibilityOfPlayerControlsButton(true);
|
|
|
|
//reset sponsor times submitting
|
|
sponsorTimesSubmitting = [];
|
|
|
|
//see if the onvideo control image needs to be changed
|
|
chrome.runtime.sendMessage({
|
|
message: "getSponsorTimes",
|
|
videoID: id
|
|
}, function(response) {
|
|
if (response != undefined) {
|
|
let sponsorTimes = response.sponsorTimes;
|
|
if (sponsorTimes != null && sponsorTimes.length > 0 && sponsorTimes[sponsorTimes.length - 1].length >= 2) {
|
|
changeStartSponsorButton(true, true);
|
|
} else if (sponsorTimes != null && sponsorTimes.length > 0 && sponsorTimes[sponsorTimes.length - 1].length < 2) {
|
|
changeStartSponsorButton(false, true);
|
|
} else {
|
|
changeStartSponsorButton(true, false);
|
|
}
|
|
|
|
//see if this data should be saved in the sponsorTimesSubmitting variable
|
|
if (sponsorTimes != undefined && sponsorTimes.length > 0) {
|
|
sponsorTimesSubmitting = sponsorTimes;
|
|
}
|
|
}
|
|
});
|
|
|
|
//see if video controls buttons should be added
|
|
chrome.storage.sync.get(["hideVideoPlayerControls"], function(result) {
|
|
if (result.hideVideoPlayerControls != undefined) {
|
|
hideVideoPlayerControls = result.hideVideoPlayerControls;
|
|
}
|
|
|
|
updateVisibilityOfPlayerControlsButton();
|
|
});
|
|
chrome.storage.sync.get(["hideInfoButtonPlayerControls"], function(result) {
|
|
if (result.hideInfoButtonPlayerControls != undefined) {
|
|
hideInfoButtonPlayerControls = result.hideInfoButtonPlayerControls;
|
|
}
|
|
|
|
updateVisibilityOfPlayerControlsButton();
|
|
});
|
|
chrome.storage.sync.get(["hideDeleteButtonPlayerControls"], function(result) {
|
|
if (result.hideDeleteButtonPlayerControls != undefined) {
|
|
hideDeleteButtonPlayerControls = result.hideDeleteButtonPlayerControls;
|
|
}
|
|
|
|
updateVisibilityOfPlayerControlsButton(false);
|
|
});
|
|
|
|
}
|
|
|
|
function sponsorsLookup(id) {
|
|
v = document.querySelector('video') // Youtube video player
|
|
|
|
//there is no video here
|
|
if (v == null) {
|
|
setTimeout(() => sponsorsLookup(id), 100);
|
|
return;
|
|
}
|
|
|
|
//check database for sponsor times
|
|
sendRequestToServer('GET', "/api/getVideoSponsorTimes?videoID=" + id, function(xmlhttp) {
|
|
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
|
|
sponsorDataFound = true;
|
|
|
|
sponsorTimes = JSON.parse(xmlhttp.responseText).sponsorTimes;
|
|
UUIDs = JSON.parse(xmlhttp.responseText).UUIDs;
|
|
|
|
getChannelID();
|
|
|
|
} else if (xmlhttp.readyState == 4) {
|
|
sponsorDataFound = false;
|
|
|
|
//check if this video was uploaded recently
|
|
//use the invidious api to get the time published
|
|
sendRequestToCustomServer('GET', "https://invidio.us/api/v1/videos/" + id, function(xmlhttp, error) {
|
|
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
|
|
let unixTimePublished = JSON.parse(xmlhttp.responseText).published;
|
|
|
|
//if less than 3 days old
|
|
if ((Date.now() / 1000) - unixTimePublished < 259200) {
|
|
setTimeout(() => sponsorsLookup(id), 10000);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
//add the event to run on the videos "ontimeupdate"
|
|
v.ontimeupdate = function () {
|
|
sponsorCheck();
|
|
};
|
|
}
|
|
|
|
function getChannelID() {
|
|
//get channel id
|
|
let channelContainers = document.querySelectorAll("#owner-name");
|
|
let channelURLContainer = null;
|
|
|
|
for (let i = 0; i < channelContainers.length; i++) {
|
|
if (channelContainers[i].firstElementChild != null) {
|
|
channelURLContainer = channelContainers[i].firstElementChild;
|
|
}
|
|
}
|
|
|
|
if (channelContainers.length == 0) {
|
|
//old YouTube theme
|
|
channelContainers = document.getElementsByClassName("yt-user-info");
|
|
if (channelContainers.length != 0) {
|
|
channelURLContainer = channelContainers[0].firstElementChild;
|
|
}
|
|
}
|
|
|
|
if (channelURLContainer == null) {
|
|
//try later
|
|
setTimeout(getChannelID, 100);
|
|
return;
|
|
}
|
|
|
|
channelURL = channelURLContainer.getAttribute("href");
|
|
|
|
//see if this is a whitelisted channel
|
|
chrome.storage.sync.get(["whitelistedChannels"], function(result) {
|
|
let whitelistedChannels = result.whitelistedChannels;
|
|
|
|
if (whitelistedChannels != undefined && whitelistedChannels.includes(channelURL)) {
|
|
//reset sponsor times to nothing
|
|
sponsorTimes = [];
|
|
UUIDs = [];
|
|
|
|
channelWhitelisted = true;
|
|
}
|
|
});
|
|
}
|
|
|
|
//video skipping
|
|
function sponsorCheck() {
|
|
let skipHappened = false;
|
|
|
|
if (sponsorTimes != null) {
|
|
//see if any sponsor start time was just passed
|
|
for (let i = 0; i < sponsorTimes.length; i++) {
|
|
//if something was skipped
|
|
if (checkSponsorTime(sponsorTimes, i, true)) {
|
|
skipHappened = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!skipHappened) {
|
|
//check for the "preview" sponsors (currently edited by this user)
|
|
for (let i = 0; i < sponsorTimesSubmitting.length; i++) {
|
|
//must be a finished sponsor and be valid
|
|
if (sponsorTimesSubmitting[i].length > 1 && sponsorTimesSubmitting[i][1] > sponsorTimesSubmitting[i][0]) {
|
|
checkSponsorTime(sponsorTimesSubmitting, i, false);
|
|
}
|
|
}
|
|
}
|
|
|
|
//don't keep track until they are loaded in
|
|
if (sponsorTimes != null || sponsorTimesSubmitting.length > 0) {
|
|
lastTime = v.currentTime;
|
|
}
|
|
}
|
|
|
|
function checkSponsorTime(sponsorTimes, index, openNotice) {
|
|
//this means part of the video was just skipped
|
|
if (Math.abs(v.currentTime - lastTime) > 1 && lastTime != -1) {
|
|
//make lastTime as if the video was playing normally
|
|
lastTime = v.currentTime - 0.0001;
|
|
}
|
|
|
|
if (checkIfTimeToSkip(v.currentTime, sponsorTimes[index][0])) {
|
|
//skip it
|
|
skipToTime(v, index, sponsorTimes, openNotice);
|
|
|
|
//something was skipped
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
function checkIfTimeToSkip(currentVideoTime, startTime) {
|
|
let currentTime = Date.now();
|
|
|
|
//If the sponsor time is in between these times, skip it
|
|
//Checks if the last time skipped to is not too close to now, to make sure not to get too many
|
|
// sponsor times in a row (from one troll)
|
|
//the last term makes 0 second start times possible only if the video is not setup to start at a different time from zero
|
|
return (Math.abs(currentVideoTime - startTime) < 0.3 && startTime >= lastTime && startTime <= currentVideoTime &&
|
|
(lastUnixTimeSkipped == -1 || currentTime - lastUnixTimeSkipped > 500)) || (lastTime == -1 && startTime == 0 && youtubeVideoStartTime == null)
|
|
}
|
|
|
|
//skip fromt he start time to the end time for a certain index sponsor time
|
|
function skipToTime(v, index, sponsorTimes, openNotice) {
|
|
v.currentTime = sponsorTimes[index][1];
|
|
|
|
lastSponsorTimeSkipped = sponsorTimes[index][0];
|
|
|
|
let currentUUID = UUIDs[index];
|
|
lastSponsorTimeSkippedUUID = currentUUID;
|
|
|
|
if (openNotice) {
|
|
//send out the message saying that a sponsor message was skipped
|
|
openSkipNotice(currentUUID);
|
|
|
|
setTimeout(() => closeSkipNotice(currentUUID), 7000);
|
|
|
|
//send telemetry that a this sponsor was skipped happened
|
|
if (trackViewCount) {
|
|
sendRequestToServer("GET", "/api/viewedVideoSponsorTime?UUID=" + currentUUID);
|
|
}
|
|
}
|
|
}
|
|
|
|
function goBackToPreviousTime(UUID) {
|
|
if (sponsorTimes != null) {
|
|
//add a tiny bit of time to make sure it is not skipped again
|
|
v.currentTime = sponsorTimes[UUIDs.indexOf(UUID)][0] + 0.001;
|
|
|
|
closeSkipNotice(UUID);
|
|
}
|
|
}
|
|
|
|
//Adds a sponsorship starts button to the player controls
|
|
function addPlayerControlsButton() {
|
|
if (document.getElementById("startSponsorButton") != null) {
|
|
//it's already added
|
|
return;
|
|
}
|
|
|
|
let startSponsorButton = document.createElement("button");
|
|
startSponsorButton.id = "startSponsorButton";
|
|
startSponsorButton.className = "ytp-button playerButton";
|
|
startSponsorButton.setAttribute("title", "Sponsor Starts Now");
|
|
startSponsorButton.addEventListener("click", startSponsorClicked);
|
|
|
|
let startSponsorImage = document.createElement("img");
|
|
startSponsorImage.id = "startSponsorImage";
|
|
startSponsorImage.className = "playerButtonImage";
|
|
startSponsorImage.src = chrome.extension.getURL("icons/PlayerStartIconSponsorBlocker256px.png");
|
|
|
|
//add the image to the button
|
|
startSponsorButton.appendChild(startSponsorImage);
|
|
|
|
let controls = document.getElementsByClassName("ytp-right-controls");
|
|
let referenceNode = controls[controls.length - 1];
|
|
|
|
if (referenceNode == undefined) {
|
|
//page not loaded yet
|
|
setTimeout(addPlayerControlsButton, 100);
|
|
return;
|
|
}
|
|
|
|
referenceNode.prepend(startSponsorButton);
|
|
}
|
|
|
|
function removePlayerControlsButton() {
|
|
document.getElementById("startSponsorButton").style.display = "none";
|
|
document.getElementById("submitButton").style.display = "none";
|
|
}
|
|
|
|
//adds or removes the player controls button to what it should be
|
|
function updateVisibilityOfPlayerControlsButton() {
|
|
//not on a proper video yet
|
|
if (!getYouTubeVideoID(document.URL)) return;
|
|
|
|
addPlayerControlsButton();
|
|
addInfoButton();
|
|
addDeleteButton();
|
|
addSubmitButton();
|
|
if (hideVideoPlayerControls) {
|
|
removePlayerControlsButton();
|
|
}
|
|
if (hideInfoButtonPlayerControls) {
|
|
document.getElementById("infoButton").style.display = "none";
|
|
}
|
|
if (hideDeleteButtonPlayerControls) {
|
|
document.getElementById("deleteButton").style.display = "none";
|
|
}
|
|
}
|
|
|
|
function startSponsorClicked() {
|
|
//it can't update to this info yet
|
|
closeInfoMenu();
|
|
|
|
toggleStartSponsorButton();
|
|
|
|
//send back current time with message
|
|
chrome.runtime.sendMessage({
|
|
message: "addSponsorTime",
|
|
time: v.currentTime,
|
|
videoID: getYouTubeVideoID(document.URL)
|
|
}, function(response) {
|
|
//see if the sponsorTimesSubmitting needs to be updated
|
|
updateSponsorTimesSubmitting();
|
|
});
|
|
}
|
|
|
|
function updateSponsorTimesSubmitting() {
|
|
chrome.runtime.sendMessage({
|
|
message: "getSponsorTimes",
|
|
videoID: getYouTubeVideoID(document.URL)
|
|
}, function(response) {
|
|
if (response != undefined) {
|
|
let sponsorTimes = response.sponsorTimes;
|
|
|
|
//see if this data should be saved in the sponsorTimesSubmitting variable
|
|
if (sponsorTimes != undefined) {
|
|
sponsorTimesSubmitting = sponsorTimes;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function changeStartSponsorButton(showStartSponsor, uploadButtonVisible) {
|
|
//if it isn't visible, there is no data
|
|
if (uploadButtonVisible && !hideDeleteButtonPlayerControls) {
|
|
document.getElementById("deleteButton").style.display = "unset";
|
|
} else {
|
|
document.getElementById("deleteButton").style.display = "none";
|
|
}
|
|
|
|
if (showStartSponsor) {
|
|
showingStartSponsor = true;
|
|
document.getElementById("startSponsorImage").src = chrome.extension.getURL("icons/PlayerStartIconSponsorBlocker256px.png");
|
|
document.getElementById("startSponsorButton").setAttribute("title", "Sponsor Starts Now");
|
|
|
|
if (document.getElementById("startSponsorImage").style.display != "none" && uploadButtonVisible && !hideInfoButtonPlayerControls) {
|
|
document.getElementById("submitButton").style.display = "unset";
|
|
} else if (!uploadButtonVisible) {
|
|
//disable submit button
|
|
document.getElementById("submitButton").style.display = "none";
|
|
}
|
|
} else {
|
|
showingStartSponsor = false;
|
|
document.getElementById("startSponsorImage").src = chrome.extension.getURL("icons/PlayerStopIconSponsorBlocker256px.png");
|
|
document.getElementById("startSponsorButton").setAttribute("title", "Sponsor Ends Now");
|
|
|
|
//disable submit button
|
|
document.getElementById("submitButton").style.display = "none";
|
|
}
|
|
}
|
|
|
|
function toggleStartSponsorButton() {
|
|
changeStartSponsorButton(!showingStartSponsor, true);
|
|
}
|
|
|
|
//shows the info button on the video player
|
|
function addInfoButton() {
|
|
if (document.getElementById("infoButton") != null) {
|
|
//it's already added
|
|
return;
|
|
}
|
|
|
|
//make a submit button
|
|
let infoButton = document.createElement("button");
|
|
infoButton.id = "infoButton";
|
|
infoButton.className = "ytp-button playerButton";
|
|
infoButton.setAttribute("title", "Open SponsorBlock Popup");
|
|
infoButton.addEventListener("click", openInfoMenu);
|
|
|
|
let infoImage = document.createElement("img");
|
|
infoImage.id = "infoButtonImage";
|
|
infoImage.className = "playerButtonImage";
|
|
infoImage.src = chrome.extension.getURL("icons/PlayerInfoIconSponsorBlocker256px.png");
|
|
|
|
//add the image to the button
|
|
infoButton.appendChild(infoImage);
|
|
|
|
let controls = document.getElementsByClassName("ytp-right-controls");
|
|
let referenceNode = controls[controls.length - 1];
|
|
|
|
if (referenceNode == undefined) {
|
|
//page not loaded yet
|
|
setTimeout(addInfoButton, 100);
|
|
return;
|
|
}
|
|
|
|
referenceNode.prepend(infoButton);
|
|
}
|
|
|
|
//shows the delete button on the video player
|
|
function addDeleteButton() {
|
|
if (document.getElementById("deleteButton") != null) {
|
|
//it's already added
|
|
return;
|
|
}
|
|
|
|
//make a submit button
|
|
let deleteButton = document.createElement("button");
|
|
deleteButton.id = "deleteButton";
|
|
deleteButton.className = "ytp-button playerButton";
|
|
deleteButton.setAttribute("title", "Clear Sponsor Times");
|
|
deleteButton.addEventListener("click", clearSponsorTimes);
|
|
//hide it at the start
|
|
deleteButton.style.display = "none";
|
|
|
|
let deleteImage = document.createElement("img");
|
|
deleteImage.id = "deleteButtonImage";
|
|
deleteImage.className = "playerButtonImage";
|
|
deleteImage.src = chrome.extension.getURL("icons/PlayerDeleteIconSponsorBlocker256px.png");
|
|
|
|
//add the image to the button
|
|
deleteButton.appendChild(deleteImage);
|
|
|
|
let controls = document.getElementsByClassName("ytp-right-controls");
|
|
let referenceNode = controls[controls.length - 1];
|
|
|
|
if (referenceNode == undefined) {
|
|
//page not loaded yet
|
|
setTimeout(addDeleteButton, 100);
|
|
return;
|
|
}
|
|
|
|
referenceNode.prepend(deleteButton);
|
|
}
|
|
|
|
//shows the submit button on the video player
|
|
function addSubmitButton() {
|
|
if (document.getElementById("submitButton") != null) {
|
|
//it's already added
|
|
return;
|
|
}
|
|
|
|
//make a submit button
|
|
let submitButton = document.createElement("button");
|
|
submitButton.id = "submitButton";
|
|
submitButton.className = "ytp-button playerButton";
|
|
submitButton.setAttribute("title", "Submit Sponsor Times");
|
|
submitButton.addEventListener("click", submitSponsorTimes);
|
|
//hide it at the start
|
|
submitButton.style.display = "none";
|
|
|
|
let submitImage = document.createElement("img");
|
|
submitImage.id = "submitButtonImage";
|
|
submitImage.className = "playerButtonImage";
|
|
submitImage.src = chrome.extension.getURL("icons/PlayerUploadIconSponsorBlocker256px.png");
|
|
|
|
//add the image to the button
|
|
submitButton.appendChild(submitImage);
|
|
|
|
let controls = document.getElementsByClassName("ytp-right-controls");
|
|
let referenceNode = controls[controls.length - 1];
|
|
|
|
if (referenceNode == undefined) {
|
|
//page not loaded yet
|
|
setTimeout(addSubmitButton, 100);
|
|
return;
|
|
}
|
|
|
|
referenceNode.prepend(submitButton);
|
|
}
|
|
|
|
function openInfoMenu() {
|
|
if (document.getElementById("sponsorBlockPopupContainer") != null) {
|
|
//it's already added
|
|
return;
|
|
}
|
|
|
|
popupInitialised = false;
|
|
|
|
//hide info button
|
|
document.getElementById("infoButton").style.display = "none";
|
|
|
|
sendRequestToCustomServer('GET', chrome.extension.getURL("popup.html"), function(xmlhttp) {
|
|
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
|
|
var popup = document.createElement("div");
|
|
popup.id = "sponsorBlockPopupContainer";
|
|
popup.innerHTML = xmlhttp.responseText
|
|
|
|
//close button
|
|
let closeButton = document.createElement("div");
|
|
closeButton.innerText = "Close Popup";
|
|
closeButton.classList = "smallLink";
|
|
closeButton.setAttribute("align", "center");
|
|
closeButton.addEventListener("click", closeInfoMenu);
|
|
|
|
//add the close button
|
|
popup.prepend(closeButton);
|
|
|
|
let parentNode = document.getElementById("secondary");
|
|
if (parentNode == null) {
|
|
//old youtube theme
|
|
parentNode = document.getElementById("watch7-sidebar-contents");
|
|
}
|
|
|
|
//make the logo source not 404
|
|
//query selector must be used since getElementByID doesn't work on a node and this isn't added to the document yet
|
|
let logo = popup.querySelector("#sponsorBlockPopupLogo");
|
|
logo.src = chrome.extension.getURL("icons/LogoSponsorBlocker256px.png");
|
|
|
|
//remove the style sheet and font that are not necessary
|
|
popup.querySelector("#sponorBlockPopupFont").remove();
|
|
popup.querySelector("#sponorBlockStyleSheet").remove();
|
|
|
|
parentNode.insertBefore(popup, parentNode.firstChild);
|
|
|
|
//run the popup init script
|
|
runThePopup();
|
|
}
|
|
});
|
|
}
|
|
|
|
function closeInfoMenu() {
|
|
let popup = document.getElementById("sponsorBlockPopupContainer");
|
|
if (popup != null) {
|
|
popup.remove();
|
|
|
|
//show info button
|
|
document.getElementById("infoButton").style.display = "unset";
|
|
}
|
|
}
|
|
|
|
function clearSponsorTimes() {
|
|
//it can't update to this info yet
|
|
closeInfoMenu();
|
|
|
|
let currentVideoID = getYouTubeVideoID(document.URL);
|
|
|
|
let sponsorTimeKey = 'sponsorTimes' + currentVideoID;
|
|
chrome.storage.sync.get([sponsorTimeKey], function(result) {
|
|
let sponsorTimes = result[sponsorTimeKey];
|
|
|
|
if (sponsorTimes != undefined && sponsorTimes.length > 0) {
|
|
let confirmMessage = "Are you sure you want to clear this?\n\n" + getSponsorTimesMessage(sponsorTimes);
|
|
confirmMessage += "\n\nTo edit or delete individual values, click the info button or open the extension popup by clicking the extension icon in the top right corner."
|
|
if(!confirm(confirmMessage)) return;
|
|
|
|
//clear the sponsor times
|
|
let sponsorTimeKey = "sponsorTimes" + currentVideoID;
|
|
chrome.storage.sync.set({[sponsorTimeKey]: []});
|
|
|
|
//clear sponsor times submitting
|
|
sponsorTimesSubmitting = [];
|
|
|
|
//set buttons to be correct
|
|
changeStartSponsorButton(true, false);
|
|
}
|
|
});
|
|
}
|
|
|
|
//Opens the notice that tells the user that a sponsor was just skipped
|
|
function openSkipNotice(UUID){
|
|
if (dontShowNotice) {
|
|
//don't show, return
|
|
return;
|
|
}
|
|
|
|
let amountOfPreviousNotices = document.getElementsByClassName("sponsorSkipNotice").length;
|
|
|
|
if (amountOfPreviousNotices > 0) {
|
|
//already exists
|
|
|
|
let previousNotice = document.getElementsByClassName("sponsorSkipNotice")[0];
|
|
previousNotice.classList.add("secondSkipNotice")
|
|
}
|
|
|
|
let noticeElement = document.createElement("div");
|
|
//what sponsor time this is about
|
|
noticeElement.id = "sponsorSkipNotice" + UUID;
|
|
noticeElement.classList.add("sponsorSkipObject");
|
|
noticeElement.classList.add("sponsorSkipNotice");
|
|
noticeElement.style.zIndex = 50 + amountOfPreviousNotices;
|
|
|
|
let logoElement = document.createElement("img");
|
|
logoElement.id = "sponsorSkipLogo" + UUID;
|
|
logoElement.className = "sponsorSkipLogo";
|
|
logoElement.src = chrome.extension.getURL("icons/LogoSponsorBlocker256px.png");
|
|
|
|
let noticeMessage = document.createElement("div");
|
|
noticeMessage.id = "sponsorSkipMessage" + UUID;
|
|
noticeMessage.classList.add("sponsorSkipMessage");
|
|
noticeMessage.classList.add("sponsorSkipObject");
|
|
noticeMessage.innerText = "Hey, you just skipped a sponsor!";
|
|
|
|
let noticeInfo = document.createElement("p");
|
|
noticeInfo.id = "sponsorSkipInfo" + UUID;
|
|
noticeInfo.classList.add("sponsorSkipInfo");
|
|
noticeInfo.classList.add("sponsorSkipObject");
|
|
noticeInfo.innerText = "This message will disapear in 7 seconds";
|
|
|
|
//thumbs up and down buttons
|
|
let voteButtonsContainer = document.createElement("div");
|
|
voteButtonsContainer.id = "sponsorTimesVoteButtonsContainer" + UUID;
|
|
voteButtonsContainer.setAttribute("align", "center");
|
|
|
|
let upvoteButton = document.createElement("img");
|
|
upvoteButton.id = "sponsorTimesUpvoteButtonsContainer" + UUID;
|
|
upvoteButton.className = "sponsorSkipObject voteButton";
|
|
upvoteButton.src = chrome.extension.getURL("icons/upvote.png");
|
|
upvoteButton.addEventListener("click", () => vote(1, UUID));
|
|
|
|
let downvoteButton = document.createElement("img");
|
|
downvoteButton.id = "sponsorTimesDownvoteButtonsContainer" + UUID;
|
|
downvoteButton.className = "sponsorSkipObject voteButton";
|
|
downvoteButton.src = chrome.extension.getURL("icons/downvote.png");
|
|
downvoteButton.addEventListener("click", () => vote(0, UUID));
|
|
|
|
//add thumbs up and down buttons to the container
|
|
voteButtonsContainer.appendChild(upvoteButton);
|
|
voteButtonsContainer.appendChild(downvoteButton);
|
|
|
|
let buttonContainer = document.createElement("div");
|
|
buttonContainer.setAttribute("align", "center");
|
|
|
|
let goBackButton = document.createElement("button");
|
|
goBackButton.innerText = "Go back";
|
|
goBackButton.className = "sponsorSkipButton";
|
|
goBackButton.addEventListener("click", () => goBackToPreviousTime(UUID));
|
|
|
|
let hideButton = document.createElement("button");
|
|
hideButton.innerText = "Dismiss";
|
|
hideButton.className = "sponsorSkipButton";
|
|
hideButton.addEventListener("click", () => closeSkipNotice(UUID));
|
|
|
|
let dontShowAgainButton = document.createElement("button");
|
|
dontShowAgainButton.innerText = "Don't Show This Again";
|
|
dontShowAgainButton.className = "sponsorSkipDontShowButton";
|
|
dontShowAgainButton.addEventListener("click", dontShowNoticeAgain);
|
|
|
|
buttonContainer.appendChild(goBackButton);
|
|
buttonContainer.appendChild(hideButton);
|
|
buttonContainer.appendChild(document.createElement("br"));
|
|
buttonContainer.appendChild(document.createElement("br"));
|
|
buttonContainer.appendChild(dontShowAgainButton);
|
|
|
|
noticeElement.appendChild(logoElement);
|
|
noticeElement.appendChild(noticeMessage);
|
|
noticeElement.appendChild(noticeInfo);
|
|
noticeElement.appendChild(voteButtonsContainer);
|
|
noticeElement.appendChild(buttonContainer);
|
|
|
|
let referenceNode = document.getElementById("movie_player");
|
|
if (referenceNode == null) {
|
|
//for embeds
|
|
let player = document.getElementById("player");
|
|
referenceNode = player.firstChild;
|
|
let index = 1;
|
|
|
|
//find the child that is the video player (sometimes it is not the first)
|
|
while (!referenceNode.classList.contains("html5-video-player") || !referenceNode.classList.contains("ytp-embed")) {
|
|
referenceNode = player.children[index];
|
|
|
|
index++;
|
|
}
|
|
}
|
|
|
|
referenceNode.prepend(noticeElement);
|
|
}
|
|
|
|
function afterDownvote(UUID) {
|
|
//change text to say thanks for voting
|
|
//remove buttons
|
|
let upvoteButton = document.getElementById("sponsorTimesUpvoteButtonsContainer" + UUID);
|
|
let downvoteButton = document.getElementById("sponsorTimesDownvoteButtonsContainer" + UUID);
|
|
if (upvoteButton != null) {
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).removeChild(upvoteButton);
|
|
}
|
|
if (downvoteButton != null) {
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).removeChild(downvoteButton);
|
|
}
|
|
|
|
let previousInfoMessage = document.getElementById("sponsorTimesInfoMessage" + UUID);
|
|
if (previousInfoMessage != null) {
|
|
//remove it
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).removeChild(previousInfoMessage);
|
|
}
|
|
|
|
//add thanks for voting text
|
|
let thanksForVotingText = document.createElement("p");
|
|
thanksForVotingText.id = "sponsorTimesThanksForVotingText";
|
|
thanksForVotingText.innerText = "Thanks for voting!"
|
|
|
|
//add extra info for voting
|
|
let thanksForVotingInfoText = document.createElement("p");
|
|
thanksForVotingInfoText.id = "sponsorTimesThanksForVotingInfoText";
|
|
thanksForVotingInfoText.innerText = "Hit go back to get to where you came from."
|
|
|
|
//add element to div
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).appendChild(thanksForVotingText);
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).appendChild(thanksForVotingInfoText);
|
|
}
|
|
|
|
function addLoadingInfo(message, UUID) {
|
|
//change text to say thanks for message
|
|
//remove buttons
|
|
let upvoteButton = document.getElementById("sponsorTimesUpvoteButtonsContainer" + UUID);
|
|
let downvoteButton = document.getElementById("sponsorTimesDownvoteButtonsContainer" + UUID);
|
|
if (upvoteButton != null) {
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).removeChild(upvoteButton);
|
|
}
|
|
if (downvoteButton != null) {
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).removeChild(downvoteButton);
|
|
}
|
|
|
|
let previousInfoMessage = document.getElementById("sponsorTimesInfoMessage" + UUID);
|
|
if (previousInfoMessage != null) {
|
|
//remove it
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).removeChild(previousInfoMessage);
|
|
}
|
|
|
|
//add thanks for voting text
|
|
let thanksForVotingText = document.createElement("p");
|
|
thanksForVotingText.id = "sponsorTimesInfoMessage" + UUID;
|
|
thanksForVotingText.className = "sponsorTimesInfoMessage";
|
|
thanksForVotingText.innerText = message;
|
|
|
|
//add element to div
|
|
document.getElementById("sponsorTimesVoteButtonsContainer" + UUID).appendChild(thanksForVotingText);
|
|
}
|
|
|
|
function vote(type, UUID) {
|
|
//add loading info
|
|
addLoadingInfo("Loading...", UUID)
|
|
|
|
chrome.runtime.sendMessage({
|
|
message: "submitVote",
|
|
type: type,
|
|
UUID: UUID
|
|
}, function(response) {
|
|
if (response != undefined) {
|
|
//see if it was a success or failure
|
|
if (response.successType == 1) {
|
|
//success
|
|
if (type == 0) {
|
|
afterDownvote(UUID);
|
|
} else if (type == 1) {
|
|
closeSkipNotice(UUID);
|
|
}
|
|
} else if (response.successType == 0) {
|
|
//failure: duplicate vote
|
|
addLoadingInfo("It seems you've already voted before", UUID)
|
|
} else if (response.successType == -1) {
|
|
if (response.statusCode == 502) {
|
|
addLoadingInfo("It seems the sever is down. Contact the dev immediately.", UUID)
|
|
} else {
|
|
//failure: unknown error
|
|
addLoadingInfo("A connection error has occured. Error code: " + response.statusCode, UUID)
|
|
}
|
|
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
//Closes the notice that tells the user that a sponsor was just skipped for this UUID
|
|
function closeSkipNotice(UUID){
|
|
let notice = document.getElementById("sponsorSkipNotice" + UUID);
|
|
if (notice != null) {
|
|
notice.remove();
|
|
}
|
|
}
|
|
|
|
//Closes all notices that tell the user that a sponsor was just skipped
|
|
function closeAllSkipNotices(){
|
|
let notices = document.getElementsByClassName("sponsorSkipNotice");
|
|
for (let i = 0; i < notices.length; i++) {
|
|
notices[i].remove();
|
|
}
|
|
}
|
|
|
|
function dontShowNoticeAgain() {
|
|
chrome.storage.sync.set({"dontShowNoticeAgain": true});
|
|
|
|
dontShowNotice = true;
|
|
|
|
closeAllSkipNotices();
|
|
}
|
|
|
|
function sponsorMessageStarted(callback) {
|
|
v = document.querySelector('video');
|
|
|
|
//send back current time
|
|
callback({
|
|
time: v.currentTime
|
|
})
|
|
|
|
//update button
|
|
toggleStartSponsorButton();
|
|
}
|
|
|
|
function submitSponsorTimes() {
|
|
if (document.getElementById("submitButton").style.display == "none") {
|
|
//don't submit, not ready
|
|
return;
|
|
}
|
|
|
|
//it can't update to this info yet
|
|
closeInfoMenu();
|
|
|
|
let currentVideoID = getYouTubeVideoID(document.URL);
|
|
|
|
let sponsorTimeKey = 'sponsorTimes' + currentVideoID;
|
|
chrome.storage.sync.get([sponsorTimeKey], function(result) {
|
|
let sponsorTimes = result[sponsorTimeKey];
|
|
|
|
if (sponsorTimes != undefined && sponsorTimes.length > 0) {
|
|
let confirmMessage = "Are you sure you want to submit this?\n\n" + getSponsorTimesMessage(sponsorTimes);
|
|
confirmMessage += "\n\nTo edit or delete values, click the info button or open the extension popup by clicking the extension icon in the top right corner."
|
|
if(!confirm(confirmMessage)) return;
|
|
|
|
sendSubmitMessage();
|
|
}
|
|
});
|
|
|
|
}
|
|
|
|
//send the message to the background js
|
|
//called after all the checks have been made that it's okay to do so
|
|
function sendSubmitMessage(){
|
|
//add loading animation
|
|
document.getElementById("submitButtonImage").src = chrome.extension.getURL("icons/PlayerUploadIconSponsorBlocker256px.png");
|
|
document.getElementById("submitButton").style.animation = "rotate 1s 0s infinite";
|
|
|
|
let currentVideoID = getYouTubeVideoID(document.URL);
|
|
|
|
chrome.runtime.sendMessage({
|
|
message: "submitTimes",
|
|
videoID: currentVideoID
|
|
}, function(response) {
|
|
if (response != undefined) {
|
|
if (response.statusCode == 200) {
|
|
//hide loading message
|
|
let submitButton = document.getElementById("submitButton");
|
|
//finish this animation
|
|
submitButton.style.animation = "rotate 1s";
|
|
//when the animation is over, hide the button
|
|
let animationEndListener = function() {
|
|
changeStartSponsorButton(true, false);
|
|
|
|
submitButton.style.animation = "none";
|
|
|
|
submitButton.removeEventListener("animationend", animationEndListener);
|
|
};
|
|
|
|
submitButton.addEventListener("animationend", animationEndListener);
|
|
|
|
//clear the sponsor times
|
|
let sponsorTimeKey = "sponsorTimes" + currentVideoID;
|
|
chrome.storage.sync.set({[sponsorTimeKey]: []});
|
|
} else {
|
|
//for a more detailed error message, they should check the popup
|
|
//show that the upload failed
|
|
document.getElementById("submitButton").style.animation = "unset";
|
|
document.getElementById("submitButtonImage").src = chrome.extension.getURL("icons/PlayerUploadFailedIconSponsorBlocker256px.png");
|
|
|
|
if(response.statusCode == 400) {
|
|
alert("Server said this request was invalid");
|
|
} else if(response.statusCode == 429) {
|
|
alert("You have submitted too many sponsor times for this one video, are you sure there are this many?");
|
|
} else if(response.statusCode == 409) {
|
|
alert("This has already been submitted before");
|
|
} else if(response.statusCode == 502) {
|
|
alert("It seems the server is down. Contact the dev to inform them. Error code " + response.statusCode);
|
|
} else {
|
|
alert("There was an error submitting your sponsor times, please try again later. Error code " + response.statusCode);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
//get the message that visually displays the video times
|
|
function getSponsorTimesMessage(sponsorTimes) {
|
|
let sponsorTimesMessage = "";
|
|
|
|
for (let i = 0; i < sponsorTimes.length; i++) {
|
|
for (let s = 0; s < sponsorTimes[i].length; s++) {
|
|
let timeMessage = getFormattedTime(sponsorTimes[i][s]);
|
|
//if this is an end time
|
|
if (s == 1) {
|
|
timeMessage = " to " + timeMessage;
|
|
} else if (i > 0) {
|
|
//add commas if necessary
|
|
timeMessage = ", " + timeMessage;
|
|
}
|
|
|
|
sponsorTimesMessage += timeMessage;
|
|
}
|
|
}
|
|
|
|
return sponsorTimesMessage;
|
|
}
|
|
|
|
//converts time in seconds to minutes:seconds
|
|
function getFormattedTime(seconds) {
|
|
let minutes = Math.floor(seconds / 60);
|
|
let secondsDisplay = Math.round(seconds - minutes * 60);
|
|
if (secondsDisplay < 10) {
|
|
//add a zero
|
|
secondsDisplay = "0" + secondsDisplay;
|
|
}
|
|
|
|
let formatted = minutes+ ":" + secondsDisplay;
|
|
|
|
return formatted;
|
|
}
|
|
|
|
function sendRequestToServer(type, address, callback) {
|
|
let xmlhttp = new XMLHttpRequest();
|
|
|
|
xmlhttp.open(type, serverAddress + address, true);
|
|
|
|
if (callback != undefined) {
|
|
xmlhttp.onreadystatechange = function () {
|
|
callback(xmlhttp, false);
|
|
};
|
|
|
|
xmlhttp.onerror = function(ev) {
|
|
callback(xmlhttp, true);
|
|
};
|
|
}
|
|
|
|
//submit this request
|
|
xmlhttp.send();
|
|
}
|
|
|
|
function sendRequestToCustomServer(type, fullAddress, callback) {
|
|
let xmlhttp = new XMLHttpRequest();
|
|
|
|
xmlhttp.open(type, fullAddress, true);
|
|
|
|
if (callback != undefined) {
|
|
xmlhttp.onreadystatechange = function () {
|
|
callback(xmlhttp, false);
|
|
};
|
|
|
|
xmlhttp.onerror = function(ev) {
|
|
callback(xmlhttp, true);
|
|
};
|
|
}
|
|
|
|
//submit this request
|
|
xmlhttp.send();
|
|
}
|
|
|
|
function getYouTubeVideoID(url) { // Returns with video id else returns false
|
|
var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/;
|
|
var match = url.match(regExp);
|
|
var id = new URL(url).searchParams.get("v");
|
|
if (url.includes("/embed/")) {
|
|
//it is an embed, don't search for v
|
|
id = match[7];
|
|
}
|
|
|
|
return (match && match[7].length == 11) ? id : false;
|
|
}
|
|
|
|
//returns the start time of the video if there was one specified (ex. ?t=5s)
|
|
function getYouTubeVideoStartTime(url) {
|
|
let searchParams = new URL(url).searchParams;
|
|
var startTime = searchParams.get("t");
|
|
if (startTime == null) {
|
|
startTime = searchParams.get("time_continue");
|
|
}
|
|
|
|
return startTime;
|
|
}
|