Added quick access to the Youtube video slug.
This commit is contained in:
parent
186b3cf5b1
commit
2d4710070b
|
@ -7,9 +7,10 @@ Better Youtube + works to improve the Youtube experience by providing quick acce
|
|||
* It allows the video to be toggled to fixed or floating with drag functionality.
|
||||
* It allows volume control through the mouse-wheel when hovering over the player.
|
||||
* It changes the background color to light grey for easier viewing of the pages.
|
||||
* It allows for quick quick access to the Youtube video slug.
|
||||
|
||||
# Download
|
||||
https://addons.mozilla.org/en-US/firefox/addon/better-youtube-plus/
|
||||
|
||||
# Version: 1.2.2
|
||||
Added more thumbnail options and changed control positions plus added on hovwr titles.
|
||||
# Version: 1.2.5
|
||||
Added quick access to the Youtube video slug.
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Better Youtube +",
|
||||
"version": "1.2.2",
|
||||
"version": "1.2.5",
|
||||
"description": "Enhancements for Youtube to have a better experience.",
|
||||
|
||||
"applications": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// Declare variables
|
||||
var ytThumbImgMenu, ytEnhancerMenu; // Menu systems
|
||||
var slugInputTag, ytThumbImgMenu, ytEnhancerMenu; // Menu systems
|
||||
var ytThumbnailBttn, ytMaxDefaultImg, ytHqDefaultImg, // Buttons & Images
|
||||
ytLoopBttn, ytFloatBttn, ytAMaxDefaultImg, ytAHqDefaultImg;
|
||||
|
||||
|
@ -10,6 +10,26 @@ var part, videoSlug, temp; // Image part
|
|||
var count = 0;
|
||||
|
||||
function preSetupProc() {
|
||||
console.log("Weee");
|
||||
video = document.getElementsByTagName("video")[0]; // Video Controler
|
||||
slugInputTag = document.createElement("INPUT");
|
||||
slugInputTag.id = "slugCopyZone";
|
||||
slugInputTag.type = "text";
|
||||
|
||||
if (!document.getElementById("slugCopyZone")) {
|
||||
document.body.appendChild(slugInputTag);
|
||||
} else {
|
||||
slugInputTag = document.getElementById("slugCopyZone");
|
||||
}
|
||||
|
||||
vdoPlyrAtts = video.baseURI; // Used for setting up thumbnails
|
||||
vdoPlyrAtts = vdoPlyrAtts.slice(32, 32+11);
|
||||
slugInputTag.value = vdoPlyrAtts;
|
||||
|
||||
|
||||
}
|
||||
|
||||
function setupProc() {
|
||||
poppedContainer = document.createElement("DIV");
|
||||
ytThumbImgMenu = document.createElement("DIV");
|
||||
ytEnhancerMenu = document.createElement("DIV");
|
||||
|
@ -31,7 +51,6 @@ function preSetupProc() {
|
|||
mainContentArea = document.getElementsByTagName("ytd-watch")[0]; // BT control insert area and bg color setup
|
||||
|
||||
containerOfPlyrWndow = document.getElementById("top").children[0]; // Container of actual player - Used for floating window
|
||||
video = document.getElementsByTagName("video")[0]; // Video Controler
|
||||
part = "https://img.youtube.com/vi/";
|
||||
|
||||
// Append to nodes as required
|
||||
|
@ -94,9 +113,6 @@ function preSetupProc() {
|
|||
|
||||
// Functions
|
||||
function showThumbImageVew(e) {
|
||||
vdoPlyrAtts = video.baseURI; // Used for setting up thumbnails
|
||||
vdoPlyrAtts = vdoPlyrAtts.slice(32, 32+11);
|
||||
|
||||
videoSlug = vdoPlyrAtts;
|
||||
if (ytThumbImgMenu.style.display == "block") {
|
||||
ytThumbImgMenu.style.display = "none";
|
||||
|
@ -210,16 +226,19 @@ function checkPg() {
|
|||
if (document.getElementById("masthead-container")) {
|
||||
clearInterval(existCondition);
|
||||
preSetupProc();
|
||||
setupProc();
|
||||
count = 0;
|
||||
} else {
|
||||
if (count == 12) { // ~ 6 sec through half sec loops
|
||||
clearInterval(existCondition);
|
||||
count = 0;
|
||||
clearInterval(existCondition);
|
||||
} else {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
}, 500); // check every 500ms
|
||||
} else {
|
||||
preSetupProc();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.ytThumbMenuStyle, .ytMenuStyle {
|
||||
#slugCopyZone, .ytThumbMenuStyle, .ytMenuStyle {
|
||||
z-index: 100;
|
||||
position: fixed;
|
||||
background: rgba(0,0,0,0.64);
|
||||
|
@ -6,6 +6,13 @@
|
|||
overflow: auto;
|
||||
}
|
||||
|
||||
#slugCopyZone {
|
||||
bottom: 0%;
|
||||
left: 35%;
|
||||
width: 10em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ytThumbMenuStyle {
|
||||
display: none;
|
||||
bottom: 20px;
|
||||
|
|
Loading…
Reference in New Issue