Skip to content

Instantly share code, notes, and snippets.

View Kenya-West's full-sized avatar
💻
Windows

Innokenty Ivanov Kenya-West

💻
Windows
View GitHub Profile

Description

A js file for Tampermonkey to make Aliexpress.com website redirect to the new item page. This project is a script for Aliexpress website.

How to contribute

Clone this project on GitHub and start your changes. If you want to use the script from source code, then create new script in Tampermonkey extension and put source code in opened window.

How to use this script?

@Kenya-West
Kenya-West / README.md
Created June 26, 2020 12:43
Aliexpress-link-fixier

Description

A js file for Tampermonkey to make Aliexpress.com website redirect to the new item page. This project is a script for Aliexpress website.

How to contribute

Clone this project on GitHub and start your changes. If you want to use the script from source code, then create new script in Tampermonkey extension and put source code in opened window.

How to use this script?

@Kenya-West
Kenya-West / README.md
Last active February 4, 2021 12:44
office-online-viewer

View office documents in your browser with Microsoft Office Online. Previously made by ogzergin

@Kenya-West
Kenya-West / README.md
Created June 26, 2020 12:46
instagram-native-player

Instagram native player

Description

This little script replaces Instagram's player with the native one built in browser. Using this script, you are able to save the video, disable/enable sound and do as many stuff as your browser can.

Requirements

The scripts requires Tampermonkey or any other script runner.

@Kenya-West
Kenya-West / README.md
Created June 26, 2020 12:48
MS-Edge-Ad-Blocker

Microsoft Edge Ad Blocker

Description

This is blocker for Edge ads on Microsoft websites.

How to download

  1. You should have Tampermonkey
  2. Go to GreasyFork and click Install
@Kenya-West
Kenya-West / BeefTextCombosGenerator.ps1
Created February 23, 2022 12:30
BeefText combos generator that exports them to CSV file. After running script, you can import resulting CSV file to BeefText app - https://github.com/xmichelo/Beeftext
$baseKey = '!mr'
$baseName = 'MR'
$text = @'
Lorem ipsum
Lorem ipsum
Lorem ipsum
'@
@Kenya-West
Kenya-West / check-files-from-txt.ps1
Last active March 30, 2022 12:41
[Poweshell] Check files existing by names defined in txt file and save non-existent to new txt file
$urls = Get-Content "List of links - all.txt"
$dir = ".\"
[array] $arr = @();
foreach ($i in ($urls.Count - 1)..0) {
$filename = "$dir$(Split-Path -Leaf $urls[$i]).mp4";
if ((Test-Path -Path $filename -PathType Leaf) -eq $False) {
$arr += $urls[$i];
@Kenya-West
Kenya-West / find-VK-messages.js
Created March 30, 2022 12:42
Find messages with links pattern on VK IM page
const config = {
filterBySender: "Вы",
regex: /coub\.com\/view\/[a-z0-9]+/,
timeToLoad: 750,
};
const dialogsRoot = document.querySelector("#im_dialogs");
const dialogScrollableArea = document.querySelector(
"#im_dialogs .ui_scroll_inner.tt_noappend"
@Kenya-West
Kenya-West / VK-get-videos-links-im.js
Created March 30, 2022 14:49
Get links of external videos you have in chat (on VK Messenger web)
@Kenya-West
Kenya-West / FindSmallVerticalVideos.ps1
Created March 31, 2022 13:08
Find vertical videos MP4 that has resolution smaller than 400 by height. This script uses TagLibSharp. Get it here first: https://www.nuget.org/packages/TagLibSharp
Import-Module "Path\To\TagLibSharp.dll";
$dir = ".\";
$files = Get-ChildItem -Path $dir -Filter "*.mp4";
[array] $arr = @();
function Format-CoubName {
param (
[string]$Name
)