Category Archives: Browser

Removes the youtube autoplay up next feature · GitHub

Source: Removes the autoplay up next feature · GitHub

// ==UserScript==
// @version 1.0.2
// @name Removes the autoplay up next feature
// @match *://www.youtube.com/*
// @run-at document-start
// @grant none
// @noframes
// ==/UserScript==
(function () {
use strict;
function removeAPUN() {
var autoplaybar = document.getElementsByClassName(autoplay-bar)[0];
if (autoplaybar) {
autoplaybar.removeAttribute(class);
document.getElementsByClassName(checkbox-on-off)[0].remove();
}
}
window.addEventListener(readystatechange, removeAPUN, true);
window.addEventListener(spfdone, removeAPUN);
}());

Command Line Options – Mozilla | MDN

Command line options are used to specify various startup options for Mozilla applications. For example, you can use command line configuration options to bypass the Profile Manager and open a specific profile (if you have multiple profiles). You can also control how Mozilla applications open, which components open initially, and what the components do when they open. This page describes the commonly used options and how to use them. You can open the Command Line Interface by pressing Shift + F2.

 

Source: Command Line Options – Mozilla | MDN