updated attributes
This commit is contained in:
parent
7d15cf00b4
commit
ec46bd5302
|
@ -12,8 +12,8 @@ Better YouTube + works to improve the YouTube experience by providing quick acce
|
||||||
* It shows volume level as you scroll.
|
* It shows volume level as you scroll.
|
||||||
* It lets Unix, Linux, and MacOS systems have the ability to download the video using native app calls.
|
* It lets Unix, Linux, and MacOS systems have the ability to download the video using native app calls.
|
||||||
|
|
||||||
# Version: 1.5.7
|
# Version: 1.5.8
|
||||||
* Added injection script to default to 1080p playback
|
* Updated attribute search
|
||||||
|
|
||||||
# Download
|
# Download
|
||||||
https://addons.mozilla.org/en-US/firefox/addon/better-youtube-plus/
|
https://addons.mozilla.org/en-US/firefox/addon/better-youtube-plus/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Better Youtube +",
|
"name": "Better Youtube +",
|
||||||
"version": "1.5.7",
|
"version": "1.5.8",
|
||||||
"description": "Enhancements for Youtube to have a better experience.",
|
"description": "Enhancements for Youtube to have a better experience.",
|
||||||
|
|
||||||
"applications": {
|
"applications": {
|
||||||
|
|
|
@ -220,7 +220,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
const controlsShowHideToggle = (elm) => {
|
const controlsShowHideToggle = (elm) => {
|
||||||
attrib = elm.getAttribute('masthead-hidden_');
|
attrib = elm.getAttribute('masthead-hidden');
|
||||||
if (attrib == null) { // if out of fullscreen
|
if (attrib == null) { // if out of fullscreen
|
||||||
ytEnhancerMenu.style.display = "block";
|
ytEnhancerMenu.style.display = "block";
|
||||||
ytEnhancerMenu2.style.display = "block";
|
ytEnhancerMenu2.style.display = "block";
|
||||||
|
|
Loading…
Reference in New Issue