Greasy Fork is available in English.

BetterNetflix

Improve Netflix

// ==UserScript==
// @name         BetterNetflix
// @namespace    https://pizidavi.altervista.org/
// @version      1.1
// @description  Improve Netflix
// @author       pizidavi
// @require      https://cdn.jsdelivr.net/gh/soufianesakhi/node-creation-observer-js@edabdee1caaee6af701333a527a0afd95240aa3b/release/node-creation-observer-latest.min.js
// @match        https://www.netflix.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
  'use strict';

  const PROFILE = 'YOUR_PROFILE_NAME';

  NodeCreationObserver
    .onCreation('#appMountPoint > div > div > div:nth-child(1) > div.bd.dark-background > div.profiles-gate-container > div > div > ul > li.profile', function (element) {
    const name = element.querySelector('.profile-name');
    if (name.textContent == PROFILE)
      name.click();
  });

  NodeCreationObserver.onCreation('div.watch-video--skip-content > button', function (element) {
    element.click();
  });

})();