mirror of
				https://github.com/Maks1mS/userscripts.git
				synced 2025-11-04 07:01:24 +03:00 
			
		
		
		
	Compare commits
	
		
			4 Commits
		
	
	
		
			38b3fe10be
			...
			main
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| becff1ef68 | |||
| 5f002ba7f7 | |||
| 
						 | 
					9cad4d315b | ||
| 
						 | 
					cf8ed72d1a | 
@@ -1,7 +1,7 @@
 | 
				
			|||||||
// ==UserScript==
 | 
					// ==UserScript==
 | 
				
			||||||
// @name         БЕСПЛАТНЫЕ ПВЗ ОЗОН
 | 
					// @name         БЕСПЛАТНЫЕ ПВЗ ОЗОН
 | 
				
			||||||
// @namespace    https://github.com/Maks1mS/userscripts
 | 
					// @namespace    https://github.com/Maks1mS/userscripts
 | 
				
			||||||
// @version      0.2
 | 
					// @version      0.2.1
 | 
				
			||||||
// @description  Заменяет партнерские ПВЗ на понятные адреса
 | 
					// @description  Заменяет партнерские ПВЗ на понятные адреса
 | 
				
			||||||
// @author       Maxim Slipenko
 | 
					// @author       Maxim Slipenko
 | 
				
			||||||
// @match        https://www.ozon.ru/*
 | 
					// @match        https://www.ozon.ru/*
 | 
				
			||||||
@@ -107,8 +107,9 @@
 | 
				
			|||||||
            const headerAddress = qs('[data-widget="addressBookBarWeb"] .tsBody400Small');
 | 
					            const headerAddress = qs('[data-widget="addressBookBarWeb"] .tsBody400Small');
 | 
				
			||||||
            const commonAddressBook = qsa('[data-widget="commonAddressBook"] .tsBody500Medium');
 | 
					            const commonAddressBook = qsa('[data-widget="commonAddressBook"] .tsBody500Medium');
 | 
				
			||||||
            const delivery = qsa('[data-widget="orderDeliveryDetails"] .tsBody500Medium');
 | 
					            const delivery = qsa('[data-widget="orderDeliveryDetails"] .tsBody500Medium');
 | 
				
			||||||
 | 
					            const delivery2 = qsa('[data-widget="rfbsAddressInfo"] .tsBody500Medium');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            const elements = [headerAddress, ...commonAddressBook, ...delivery];
 | 
					            const elements = [headerAddress, ...commonAddressBook, ...delivery, ...delivery2];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            elements.forEach(handleElement);
 | 
					            elements.forEach(handleElement);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
// ==UserScript==
 | 
					// ==UserScript==
 | 
				
			||||||
// @name         VK Big Chat Stickers
 | 
					// @name         VK Big Chat Stickers
 | 
				
			||||||
// @namespace    https://github.com/Maks1mS/userscripts
 | 
					// @namespace    https://github.com/Maks1mS/userscripts
 | 
				
			||||||
// @version      0.2
 | 
					// @version      0.3
 | 
				
			||||||
// @description  Increases size of chat stickers
 | 
					// @description  Increases size of chat stickers
 | 
				
			||||||
// @author       Maxim Slipenko
 | 
					// @author       Maxim Slipenko
 | 
				
			||||||
// @match        https://vk.com/*
 | 
					// @match        https://vk.com/*
 | 
				
			||||||
@@ -13,10 +13,14 @@
 | 
				
			|||||||
    'use strict';
 | 
					    'use strict';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const style = `
 | 
					    const style = `
 | 
				
			||||||
    img.StickerUGC {
 | 
					    .sticker_img_wrapper:has(.StickerUGC) {
 | 
				
			||||||
        width: 256px;
 | 
					        width: 256px;
 | 
				
			||||||
        height: 256px;
 | 
					        height: 256px;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    img.StickerUGC {
 | 
				
			||||||
 | 
					        height: 100%;
 | 
				
			||||||
 | 
					        width: 100%;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    .StickersEmojiKeyboard-module__in--GCR5_:has(.StickersKeyboardGroupItem-module__in--CKjkC.StickersKeyboardGroupItem-module__inActive--iqstp > div[aria-label="Стикеры чата"]) .StickersKeyboard-module__keyboard--HhSGu.View-module__panel--WNKKi.View-module__panelSwitched--hg3jP {
 | 
					    .StickersEmojiKeyboard-module__in--GCR5_:has(.StickersKeyboardGroupItem-module__in--CKjkC.StickersKeyboardGroupItem-module__inActive--iqstp > div[aria-label="Стикеры чата"]) .StickersKeyboard-module__keyboard--HhSGu.View-module__panel--WNKKi.View-module__panelSwitched--hg3jP {
 | 
				
			||||||
        --stickers-columns: 2 !important;
 | 
					        --stickers-columns: 2 !important;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user