This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name coub-fullscreen-key-f | |
// @version 0.1 | |
// @description Добавляет быструю клавишу F для переключения полноэкранного режима | |
// @author github.com/xeleoss | |
// @match *://coub.com* | |
// @match *://coub.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=coub.com | |
// @run-at document-end | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[dir] #pv_photo { | |
display: flex; | |
align-items: center; | |
} | |
[dir] #pv_photo img { | |
max-width: 100%; | |
max-height: 100%; | |
width: auto !important; | |
height: auto !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using VkNet.Abstractions; | |
using VkNet.Exception; | |
using VkNet.Model;using VkNet.Model.RequestParams; | |
namespace ProjectName |