您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fix YouTube uploaded date bug on small screens. Can be used on large screens too.
- // ==UserScript==
- // @name YouTube Date Display Fix
- // @name:pt-BR Correção de exibição de data de envio do YouTube
- // @namespace André Augusto
- // @version 1.1.11.05.2020
- // @icon https://i.imgur.com/DjnjsJX.png
- // @description Fix YouTube uploaded date bug on small screens. Can be used on large screens too.
- // @description:pt-BR Correção da data de envio do vídeo não sendo exibida corretamente em telas pequenas.
- // @author André Augusto
- // @match *://www.youtube.com/*
- // @run-at document-start
- // @grant none
- // @require http://code.jquery.com/jquery-3.4.1.min.js
- // ==/UserScript==
- // Method using jQuery and position after subscribers
- window.onload = function() {
- $('#date').remove().insertAfter($("#channel-name"));
- //$('#date').remove().insertAfter($("#owner-sub-count"));
- //$('#dot').remove()
- };
- /*function addGlobalStyle(css) {
- var head, style;
- head = document.getElementsByTagName('head')[0];
- if (!head) { return; }
- style = document.createElement('style');
- style.type = 'text/css';
- style.innerHTML = css;
- head.appendChild(style);
- }
- addGlobalStyle('.ytd-watch-flexy { --ytd-watch-flexy-max-player-width: auto; }');
- */