Roughly fixed the issue when extension wouldn't work in certain cases. Roughly fixed because the event that triggers UI redrawing fires all the time.
This commit is contained in:
parent
c6b3ac7723
commit
9e79048c64
19
js/uw-bg.js
Normal file
19
js/uw-bg.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
function gibActiveTab(){
|
||||||
|
return browser.tabs.query({active: true, currentWindow: true});
|
||||||
|
}
|
||||||
|
|
||||||
|
function notifyChange(){
|
||||||
|
return browser.tabs.query({active: true, currentWindow: true}, function(tabs){
|
||||||
|
browser.tabs.sendMessage(tabs[0].id, {message: "page-change"});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
browser.tabs.onUpdated.addListener(notifyChange);
|
||||||
|
|
||||||
|
browser.runtime.onMessage.addListener(function(request, sender, sendResponse) {
|
||||||
|
console.log("content script gibed: ", request.test);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
114
js/uw.js
114
js/uw.js
@ -1,4 +1,4 @@
|
|||||||
var debugmsg = false;
|
var debugmsg = true;
|
||||||
if(debugmsg){
|
if(debugmsg){
|
||||||
console.log(". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ");
|
console.log(". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ");
|
||||||
console.log("\nLoading ultrawidify (uw)\nIf you can see this, extension at least tried to load\n\nRandom number: ",Math.floor(Math.random() * 20) + 1,"\n");
|
console.log("\nLoading ultrawidify (uw)\nIf you can see this, extension at least tried to load\n\nRandom number: ",Math.floor(Math.random() * 20) + 1,"\n");
|
||||||
@ -116,6 +116,7 @@ var DEFAULT_KEYBINDINGS = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var last_location = "";
|
||||||
var KEYBINDS = {};
|
var KEYBINDS = {};
|
||||||
var ask4keybinds = browser.storage.local.get("ultrawidify_keybinds");
|
var ask4keybinds = browser.storage.local.get("ultrawidify_keybinds");
|
||||||
ask4keybinds.then( (res) => {
|
ask4keybinds.then( (res) => {
|
||||||
@ -132,13 +133,56 @@ ask4keybinds.then( (res) => {
|
|||||||
// console.log("res. ", res[0].ultrawidify_keybinds);
|
// console.log("res. ", res[0].ultrawidify_keybinds);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("uw | Setting up comms with background scripts");
|
||||||
|
|
||||||
|
browser.runtime.onMessage.addListener(function (message, sender, stuff ) {
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("uw::onMessage | message:", message.message, "sender:", sender);
|
||||||
|
|
||||||
|
if(message.message == "page-change"){
|
||||||
|
addCtlButtons(0);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// browser.runtime.onMessage.addListener(request => {
|
||||||
|
// console.log("Message from the background script:");
|
||||||
|
// console.log(request.greeting);
|
||||||
|
// return Promise.resolve({response: "Hi from content script"});
|
||||||
|
// });
|
||||||
|
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("uw | Comms with background scripts: done");
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
if(debugmsg)
|
if(debugmsg)
|
||||||
console.log("=============================================================================================");
|
console.log("uw::document.ready | document is ready. Starting extension setup ...");
|
||||||
|
extSetup();
|
||||||
|
});
|
||||||
|
|
||||||
|
//BEGIN EXTENSION SETUP
|
||||||
|
|
||||||
|
function extSetup(){
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("==============================================================================================");
|
||||||
|
|
||||||
|
last_location = window.location;
|
||||||
|
if(debugmsg){
|
||||||
|
console.log("uw::extSetup | our current location is:", last_location);
|
||||||
|
console.log("uw::extSetup | removing existing keydown event from document (useful if extension was previously loaded and we navigated to a different video)");
|
||||||
|
}
|
||||||
|
$(document).off("keydown");
|
||||||
|
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("uw::extSetup | setting up keyboard shortcuts");
|
||||||
|
keydownSetup();
|
||||||
|
addCtlButtons(0);
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("======================================[ setup finished ]======================================");
|
||||||
|
}
|
||||||
|
|
||||||
|
function keydownSetup(){
|
||||||
$(document).keydown(function (event) { // Tukaj ugotovimo, katero tipko smo pritisnili
|
$(document).keydown(function (event) { // Tukaj ugotovimo, katero tipko smo pritisnili
|
||||||
|
|
||||||
// Tipke upoštevamo samo, če smo v celozaslonskem načinu oz. če ne pišemo komentarja
|
// Tipke upoštevamo samo, če smo v celozaslonskem načinu oz. če ne pišemo komentarja
|
||||||
@ -153,12 +197,23 @@ $(document).ready(function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(debugmsg){
|
if(debugmsg){
|
||||||
console.log(KEYBINDS);
|
// console.log(KEYBINDS);
|
||||||
console.log("we pressed a key: ", event.key , " | keydown: ", event.keydown);
|
console.log("we pressed a key: ", event.key , " | keydown: ", event.keydown);
|
||||||
|
if(event.key == 'p'){
|
||||||
|
console.log("uw/keydown: attempting to send message")
|
||||||
|
var sending = browser.runtime.sendMessage({
|
||||||
|
test: "test message pls dont ignore"
|
||||||
|
});
|
||||||
|
sending.then( function(){}, function(){console.log("uw/keydown: there was an error while sending a message")} );
|
||||||
|
console.log("uw/keydown: test message sent! (probably)");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for(i in KEYBINDS){
|
for(i in KEYBINDS){
|
||||||
if(debugmsg)
|
if(debugmsg)
|
||||||
console.log("i: ", i, "keybinds[i]:", KEYBINDS[i]);
|
console.log("i: ", i, "keybinds[i]:", KEYBINDS[i]);
|
||||||
|
|
||||||
if(event.key == KEYBINDS[i].key){
|
if(event.key == KEYBINDS[i].key){
|
||||||
if(debugmsg)
|
if(debugmsg)
|
||||||
console.log("Key matches!");
|
console.log("Key matches!");
|
||||||
@ -176,6 +231,7 @@ $(document).ready(function() {
|
|||||||
if(debugmsg)
|
if(debugmsg)
|
||||||
console.log("we pressed a key: ", event.key , " | mods match?", mods, "keybinding: ", KEYBINDS[i]);
|
console.log("we pressed a key: ", event.key , " | mods match?", mods, "keybinding: ", KEYBINDS[i]);
|
||||||
if(mods){
|
if(mods){
|
||||||
|
console.log("uw::keydown | keys match. calling changeCSS()");
|
||||||
if(KEYBINDS[i].action == "char"){
|
if(KEYBINDS[i].action == "char"){
|
||||||
changeCSS("char", KEYBINDS[i].targetAR);
|
changeCSS("char", KEYBINDS[i].targetAR);
|
||||||
return;
|
return;
|
||||||
@ -192,29 +248,51 @@ $(document).ready(function() {
|
|||||||
inFullScreen = ( window.innerHeight == window.screen.height && window.innerWidth == window.screen.width);
|
inFullScreen = ( window.innerHeight == window.screen.height && window.innerWidth == window.screen.width);
|
||||||
inFullScreen ? onFullscreenOn() : onFullscreenOff();
|
inFullScreen ? onFullscreenOn() : onFullscreenOff();
|
||||||
});
|
});
|
||||||
|
}
|
||||||
// Dodajmo gumbe na video
|
|
||||||
// let's add buttons to the video
|
|
||||||
|
|
||||||
addCtlButtons(0);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
//UI helpers
|
|
||||||
// function saveKeybinds(){
|
|
||||||
// console.log($('uw_kbshortcuts_form').serializeArray());
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
//BEGIN UI
|
//BEGIN UI
|
||||||
|
|
||||||
|
function check4player(provider_id){
|
||||||
|
try{
|
||||||
|
var button_width = document.getElementsByClassName(buttonClass)[0].scrollWidth;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch(e){
|
||||||
|
// Zato, ker predvajalnik ni vselej prisoten. Če predvajalnik ni prisoten,
|
||||||
|
// potem tudi knofov ni. Kar pomeni problem.
|
||||||
|
//
|
||||||
|
// Because the player isn't always there, and when the player isn't there the buttons aren't, either.
|
||||||
|
// In that case, the above statement craps out, throws an exception and trashes the extension.
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("uw::addCtlButtons | seems there was a fuckup and no buttons were found on this page. No player (and therefore no buttons) found.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
function addCtlButtons(provider_id){
|
function addCtlButtons(provider_id){
|
||||||
|
|
||||||
var buttonClass = "ytp-button ytp-settings-button";
|
var buttonClass = "ytp-button ytp-settings-button";
|
||||||
|
|
||||||
|
console.log("\n\n\n\n\n\n1");
|
||||||
// Gumb za nastavitve je bolj kot ne vselej prisoten, zato širino tega gumba uporabimo kot širino naših gumbov
|
// Gumb za nastavitve je bolj kot ne vselej prisoten, zato širino tega gumba uporabimo kot širino naših gumbov
|
||||||
// Settings button is more or less always there, so we use its width as width of our buttons
|
// Settings button is more or less always there, so we use its width as width of our buttons
|
||||||
|
try{
|
||||||
|
console.log(2);
|
||||||
var button_width = document.getElementsByClassName(buttonClass)[0].scrollWidth;
|
var button_width = document.getElementsByClassName(buttonClass)[0].scrollWidth;
|
||||||
|
console.log(3);
|
||||||
|
}
|
||||||
|
catch(e){
|
||||||
|
// Zato, ker predvajalnik ni vselej prisoten. Če predvajalnik ni prisoten,
|
||||||
|
// potem tudi knofov ni. Kar pomeni problem.
|
||||||
|
//
|
||||||
|
// Because the player isn't always there, and when the player isn't there the buttons aren't, either.
|
||||||
|
// In that case, the above statement craps out, throws an exception and trashes the extension.
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("uw::addCtlButtons | seems there was a fuckup and no buttons were found on this page. No player (and therefore no buttons) found.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
console.log(4);
|
||||||
|
|
||||||
var button_def = [ "fitw", "fith", "reset", "zoom", "uzoom", "settings" ];
|
var button_def = [ "fitw", "fith", "reset", "zoom", "uzoom", "settings" ];
|
||||||
|
|
||||||
@ -446,9 +524,11 @@ function addCtlButtons(provider_id){
|
|||||||
|
|
||||||
if(debugmsg)
|
if(debugmsg)
|
||||||
console.log("uw::addCtlButtons | buttons added");
|
console.log("uw::addCtlButtons | buttons added");
|
||||||
}
|
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
//END UI
|
//END UI
|
||||||
|
//END EXTENSION SETUP
|
||||||
|
|
||||||
function onOpen(){
|
function onOpen(){
|
||||||
if(debugmsg)
|
if(debugmsg)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Ultrawidify-git",
|
"name": "Ultrawidify-git",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
|
|
||||||
"icons": {
|
"icons": {
|
||||||
"32":"res/icons/uw-32.png",
|
"32":"res/icons/uw-32.png",
|
||||||
@ -20,8 +20,12 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
|
"background": {
|
||||||
|
"scripts": ["js/uw-bg.js"]
|
||||||
|
},
|
||||||
|
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"storage", "tabs", "activeTab", "*://*.youtube.com/*", "*://youtube.com/*"
|
"tabs", "storage", "activeTab", "*://*.youtube.com/*", "*://youtube.com/*"
|
||||||
],
|
],
|
||||||
|
|
||||||
"web_accessible_resources": [
|
"web_accessible_resources": [
|
||||||
|
Loading…
Reference in New Issue
Block a user