manifest.json now contains update URL. uw.js contains half-finished code for adding buttons
BIN
.manifest.json.kate-swp
Normal file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
49
js/uw.js
@ -7,11 +7,15 @@ var zoomStep = 0.05;
|
|||||||
var whatdo_persistence = true;
|
var whatdo_persistence = true;
|
||||||
var last_whatdo = "reset";
|
var last_whatdo = "reset";
|
||||||
|
|
||||||
var debugmsg = false;
|
var debugmsg = true;
|
||||||
|
|
||||||
|
var ctlbar_classnames = ["ytp-chrome-controls"];
|
||||||
|
var serviceArray = [".video-stream" ]; //Youtube
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
console.log("==========================================================================================");
|
||||||
// console.log("uw::document.ready | document is ready");
|
// console.log("uw::document.ready | document is ready");
|
||||||
var serviceArray = [".video-stream" ]; //Youtube
|
|
||||||
|
|
||||||
// To bo naš dinamičen css
|
// To bo naš dinamičen css
|
||||||
// this will be our dynamic css sheet
|
// this will be our dynamic css sheet
|
||||||
@ -46,20 +50,48 @@ $(document).ready(function() {
|
|||||||
changeCSS(3);
|
changeCSS(3);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// console.log("uw::document.ready | loaded shortcuts");
|
|
||||||
|
|
||||||
document.addEventListener("mozfullscreenchange", function( event ) {
|
document.addEventListener("mozfullscreenchange", function( event ) {
|
||||||
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();
|
||||||
});
|
});
|
||||||
|
|
||||||
// $("<style>")
|
// Dodajmo gumbe na video
|
||||||
// .prop("type", "text/css")
|
// let's add buttons to the video
|
||||||
// .html(".neueVideo{ display: block !important; margin: 0px auto !important; position: relative !important; transform: none !important; left: 0px !important; }").appendTo("head");
|
|
||||||
//
|
addCtlButtons(0);
|
||||||
// console.log("uw::document.ready | created new CSS class");
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function addCtlButtons(provider_id){
|
||||||
|
|
||||||
|
return;
|
||||||
|
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("uw::addCtlButtons | trying to add buttons");
|
||||||
|
|
||||||
|
var ctl_class;
|
||||||
|
var button_panel;
|
||||||
|
var buttons = [];
|
||||||
|
if(provider_id == 0){
|
||||||
|
ctl_class = document.getElementsByClassName("ytp-chrome-controls")[0];
|
||||||
|
|
||||||
|
button_panel = document.createElement('div');
|
||||||
|
ctl_class.appendChild(button_panel);
|
||||||
|
|
||||||
|
for( var i = 0; i < 5; i++){
|
||||||
|
buttons[i] = document.createElement('div');
|
||||||
|
buttons[i].innerHTML = "test button " + i;
|
||||||
|
buttons[i].addEventListener("click", function(){ changeCSS("fitw") }, false);
|
||||||
|
button_panel.appendChild(buttons[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if(debugmsg)
|
||||||
|
console.log("uw::addCtlButtons | buttons added");
|
||||||
|
}
|
||||||
|
|
||||||
function onFullscreenOn(){
|
function onFullscreenOn(){
|
||||||
|
|
||||||
// TODO: show buttons
|
// TODO: show buttons
|
||||||
@ -90,6 +122,7 @@ function onFullscreenOff(){
|
|||||||
|
|
||||||
function changeCSS(what_do){
|
function changeCSS(what_do){
|
||||||
|
|
||||||
|
|
||||||
var e_video = document.getElementsByClassName("video-stream")[0];
|
var e_video = document.getElementsByClassName("video-stream")[0];
|
||||||
var video = { "width": e_video.scrollWidth, "height": e_video.scrollHeight }
|
var video = { "width": e_video.scrollWidth, "height": e_video.scrollHeight }
|
||||||
var e_player;
|
var e_player;
|
||||||
|
@ -25,5 +25,10 @@
|
|||||||
"img/fitw.png",
|
"img/fitw.png",
|
||||||
"img/fith.png",
|
"img/fith.png",
|
||||||
"img/reset.png"
|
"img/reset.png"
|
||||||
]
|
],
|
||||||
|
"applications": {
|
||||||
|
"gecko": {
|
||||||
|
"update_url": "http://tamius.net/ultrawidify/updates/updates.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|