2022-04-01 01:40:39 +00:00
|
|
|
/*
|
|
|
|
content script running on youtube.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
let browserType = getBrowser();
|
|
|
|
|
|
|
|
|
|
|
|
// boilerplate to dedect browser type api
|
|
|
|
function getBrowser() {
|
|
|
|
if (typeof chrome !== "undefined") {
|
|
|
|
if (typeof browser !== "undefined") {
|
|
|
|
console.log("detected firefox");
|
|
|
|
return browser;
|
|
|
|
} else {
|
|
|
|
console.log("detected chrome");
|
|
|
|
return chrome;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
console.log("failed to dedect browser");
|
|
|
|
throw "browser detection error"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function sendUrl() {
|
|
|
|
|
|
|
|
let payload = {
|
|
|
|
"youtube": {
|
|
|
|
"url": document.URL,
|
|
|
|
"title": document.title
|
|
|
|
}
|
|
|
|
}
|
2022-04-03 13:54:29 +00:00
|
|
|
console.log("youtube link: " + JSON.stringify(payload));
|
2022-04-01 01:40:39 +00:00
|
|
|
browserType.runtime.sendMessage(payload, function(response) {
|
|
|
|
console.log(response.farewell);
|
|
|
|
});
|
|
|
|
|
|
|
|
};
|
2022-04-01 07:44:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
document.addEventListener("yt-navigate-finish", function (event) {
|
|
|
|
setTimeout(function(){
|
|
|
|
sendUrl();
|
|
|
|
return false;
|
|
|
|
}, 2000);
|
|
|
|
});
|