Fixing click dead zones; changesd dl icon
This commit is contained in:
parent
5cf1ab851f
commit
9602ee3177
Binary file not shown.
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 11 KiB |
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Better Youtube +",
|
||||
"version": "1.6.0",
|
||||
"version": "1.6.1",
|
||||
"description": "Enhancements for Youtube to have a better experience.",
|
||||
|
||||
"applications": {
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "betterYoutube@itdominator.com"
|
||||
}
|
||||
|
|
|
@ -1,11 +1,20 @@
|
|||
(function() {
|
||||
const menuTemplate = `
|
||||
<div class="ytMenuStyle" id="enhancerMenuID" style="display: block;">
|
||||
<div id="ytThumbnailBttn" class="imageStyle" title="Video Thumbnails..."></div>
|
||||
<div id="ytLoopBttn" class="imageStyle" title="Start Loop..."/></div>
|
||||
<div id="ytFloatBttn" class="imageStyle" title="Float Video Container"/></div>
|
||||
<div id="ytDownloadBttn" class="imageStyle" title="Download Video..."/></div>
|
||||
</div>
|
||||
<ul class="ytMenuStyle" id="enhancerMenuID" style="display: block;">
|
||||
<li>
|
||||
<div id="ytThumbnailBttn" class="imageStyle" title="Video Thumbnails..."></div>
|
||||
</li>
|
||||
<li>
|
||||
<div id="ytLoopBttn" class="imageStyle" title="Start Loop..."/></div>
|
||||
</li>
|
||||
<li>
|
||||
<div id="ytFloatBttn" class="imageStyle" title="Float Video Container"/></div>
|
||||
</li>
|
||||
<li>
|
||||
<div id="ytDownloadBttn" class="imageStyle" title="Download Video..."/></div>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
`
|
||||
const slugTemplate = `
|
||||
<div id="enhancerMenuID2">
|
||||
|
@ -22,12 +31,20 @@
|
|||
</div>
|
||||
`
|
||||
const thumbnailTemplate = `
|
||||
<div id="ytThumbMenuID" class="ytThumbMenuStyle" style="display: none;">
|
||||
<a id="ytAMaxDefaultImgID" target="_blank" href=""><img id="ytMaxDefaultImgID" class="thumbImageStyle" src="" title="Max Resolution Default"/></a>
|
||||
<a id="ytAHqDefaultImgID" target="_blank" href=""><img id="ytHqDefaultImgID" class="thumbImageStyle" src="" title="High Quality Default"/></a>
|
||||
<a id="ytAMedDefaultImgID" target="_blank" href=""><img id="ytMqDefaultImgID" class="thumbImageStyle" src="" title="Medium Quality Default"></a>
|
||||
<a id="ytASdDefaultImgID" target="_blank" href=""><img id="ytSdDefaultImgID" class="thumbImageStyle" src="" title="Standard Quality Default"/></a>
|
||||
</div>
|
||||
<ul id="ytThumbMenuID" class="ytThumbMenuStyle" style="display: none;">
|
||||
<li>
|
||||
<a id="ytAMaxDefaultImgID" target="_blank" href=""><img id="ytMaxDefaultImgID" class="thumbImageStyle" src="" title="Max Resolution Default"/></a>
|
||||
</li>
|
||||
<li>
|
||||
<a id="ytAHqDefaultImgID" target="_blank" href=""><img id="ytHqDefaultImgID" class="thumbImageStyle" src="" title="High Quality Default"/></a>
|
||||
</li>
|
||||
<li>
|
||||
<a id="ytAMedDefaultImgID" target="_blank" href=""><img id="ytMqDefaultImgID" class="thumbImageStyle" src="" title="Medium Quality Default"></a>
|
||||
</li>
|
||||
<li>
|
||||
<a id="ytASdDefaultImgID" target="_blank" href=""><img id="ytSdDefaultImgID" class="thumbImageStyle" src="" title="Standard Quality Default"/></a>
|
||||
</li>
|
||||
</ul>
|
||||
`
|
||||
const popedContainerTemplate = `
|
||||
<div id="draggable" style="display:none; block; top: 114px; left: 408px;">
|
||||
|
@ -448,7 +465,8 @@
|
|||
if(e.preventDefault) e.preventDefault();
|
||||
e.cancelBubble = true;
|
||||
e.returnValue = false;
|
||||
return false;
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -11,11 +11,11 @@ yt-formatted-string > a:hover {
|
|||
|
||||
/* ID CSS */
|
||||
#enhancerMenuID2, .ytThumbMenuStyle, .ytMenuStyle {
|
||||
z-index: 100;
|
||||
position: fixed;
|
||||
background: rgba(0,0,0,0.64);
|
||||
margin: 0 auto;
|
||||
overflow: auto;
|
||||
z-index: 100;
|
||||
position: fixed;
|
||||
background: rgba(0,0,0,0.64);
|
||||
margin: 0 auto;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#enhancerMenuID2 {
|
||||
|
@ -26,7 +26,7 @@ yt-formatted-string > a:hover {
|
|||
}
|
||||
|
||||
#enhancerMenuID, #enhancerMenuID2 {
|
||||
z-index: 5;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
#volumeContainerID {
|
||||
|
@ -37,16 +37,16 @@ yt-formatted-string > a:hover {
|
|||
}
|
||||
|
||||
#draggable {
|
||||
z-index: 9999;
|
||||
position: fixed;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
width: 650px;
|
||||
height: 400px;
|
||||
padding-top: 50px;
|
||||
border-style: solid;
|
||||
border-color: rgba(0, 232, 255, 0.64);
|
||||
background: rgba(64, 64, 64, 0.64)
|
||||
z-index: 9999;
|
||||
position: fixed;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
width: 650px;
|
||||
height: 400px;
|
||||
padding-top: 50px;
|
||||
border-style: solid;
|
||||
border-color: rgba(0, 232, 255, 0.64);
|
||||
background: rgba(64, 64, 64, 0.64)
|
||||
}
|
||||
|
||||
#rangeEndID, #rangeStartID {
|
||||
|
@ -56,9 +56,9 @@ yt-formatted-string > a:hover {
|
|||
}
|
||||
|
||||
#slugCopyZone, #rangeEndID, #rangeStartID {
|
||||
text-align: center;
|
||||
text-align: center;
|
||||
background: rgba(0,0,0,0.0);
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
|
@ -66,34 +66,42 @@ yt-formatted-string > a:hover {
|
|||
.ytMenuStyle {
|
||||
top: 40%;
|
||||
width: 42px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.ytThumbMenuStyle {
|
||||
display: none;
|
||||
bottom: 20px;
|
||||
display: none;
|
||||
bottom: 20px;
|
||||
}
|
||||
|
||||
.ytThumbMenuStyle > ul,
|
||||
.ytThumbMenuStyle > li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.ytThumbMenuStyle > li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.imageStyle {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-color: rgba(0,0,0,.64);
|
||||
background-size: 42px 42px;
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-color: rgba(0,0,0,.64);
|
||||
background-size: 42px 42px;
|
||||
}
|
||||
|
||||
.imageStyle:hover {
|
||||
background: rgba(12,160,193,.64);
|
||||
cursor: pointer;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 28px 28px;
|
||||
background: rgba(12,160,193,.64);
|
||||
cursor: pointer;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 28px 28px;
|
||||
}
|
||||
|
||||
.thumbImageStyle {
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
margin: 0em 1em 0em 1em;
|
||||
float: left;
|
||||
width: 200px;
|
||||
height: 100px;
|
||||
margin: 0em 1em 0em 1em;
|
||||
float: left;
|
||||
}
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue