Skip to content

Instantly share code, notes, and snippets.

@Tuurash
Tuurash / m3u8Copyr.user.js
Last active September 10, 2025 12:16
Enhancing greasyfork.org/scripts/536252. Automatically detect the m3u8 video of the page and download it completely. Once detected the m3u8 link, it will appear in the upper right corner of the page. Click download to jump to the m3u8 downloader.
// ==UserScript==
// @name m3u8Copyr
// @name:en m3u8Copyr
// @version 1.0.1
// @description Enhancing greasyfork.org/scripts/536252. Automatically detect the m3u8 video of the page and download it completely. Once detected the m3u8 link, it will appear in the upper right corner of the page. Click download to jump to the m3u8 downloader.
// @icon https://tools.thatwind.com/favicon.png
// @author tuurash
// @namespace https://tools.thatwind.com/
// @homepage https://tools.thatwind.com/tool/m3u8downloader
// @match *://*/*
@Tuurash
Tuurash / PWAny.user.js
Last active July 3, 2025 15:03
Turn any site into an app — impress no one but feel productive.
// ==UserScript==
// @name PWAny
// @namespace https://gist.github.com/Tuurash/0c23bcfba2a463b92ed90d8fed464029/raw/f2ffa5f8bc850dec75959dd39aa64704a356276e/PWAny.user.js
// @version 1.2
// @description Inject PWA capabilities into websites via context menu
// @author tuurash
// @match *://*/*
// @run-at document-idle
// @grant GM_notification
// @grant GM_registerMenuCommand
@Tuurash
Tuurash / EdgeCollectionExporterREADME.md
Created June 9, 2025 23:41 — forked from Blakeinstein/README.md
Move Microsoft EDGE collections to raindrop / csv

Move Microsoft edge collections to services like Raindrop (that can accept csv)

Get the sqlite db file

  1. You can find the db file in the following places
  • Windows: %LocalAppData%\Microsoft\Edge\User Data\Default\Collections
  • MacOS: ~/Library/Application Support/Microsoft Edge/Default/Collections
  • Linux: TBD
  1. Copy the files (esp. collectionsSQLite) to a seperate Folder.
@Tuurash
Tuurash / enhancer-for-yt_custom-theme.user.css
Last active September 30, 2024 20:29
Awesome sourced(verified & custom scripts)
/* ==UserStyle==
@name Youtube Enhancer Patch
@namespace koumaza
@version 1.0.0
@homepageURL https://gitlab.com/-/snippets/2078210
@updateURL https://gitlab.com/-/snippets/2078210/raw/master/enhancer-for-yt_custom-theme.user.css
@license WTFPL(PublicDomain)
@author koumaza
@preprocessor stylus
==/UserStyle== */
@Tuurash
Tuurash / Add turbolink to boot up speed loading pages.js
Created September 26, 2024 16:32 — forked from tranghaviet/Add turbolink to boot up speed loading pages.js
Some useful User script can install in Tampermonkey
@Tuurash
Tuurash / links
Created August 20, 2024 03:53 — forked from abodacs/links
links collection of interesting stuff -- be careful --don't be evil !!
@Tuurash
Tuurash / Windows Defender Exclusions VS 2022.ps1
Created August 8, 2024 22:01 — forked from Braytiner/Windows Defender Exclusions VS 2022.ps1
Adds Windows Defender exclusions for Visual Studio 2022
$userPath = $env:USERPROFILE
$pathExclusions = New-Object System.Collections.ArrayList
$processExclusions = New-Object System.Collections.ArrayList
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null
$pathExclusions.Add('C:\Windows\assembly') > $null
$pathExclusions.Add($userPath + '\Downloads\HeidiSQL_11.3_64_Portable') > $null
$pathExclusions.Add($userPath + '\.dotnet') > $null
@Tuurash
Tuurash / build4123.sublime4.key
Created January 15, 2024 19:40
Sublime Text 4 License Key
—– BEGIN LICENSE —–
Mifeng User
Single User License
EA7E-1184812
C0DAA9CD 6BE825B5 FF935692 1750523A
EDF59D3F A3BD6C96 F8D33866 3F1CCCEA
1C25BE4D 25B1C4CC 5110C20E 5246CC42
D232C83B C99CCC42 0E32890C B6CBF018
B1D4C178 2F9DDB16 ABAA74E5 95304BEF
9D0CCFA9 8AF8F8E2 1E0A955E 4771A576
Visual Studio 2022
Enterprise :
VHF9H-NXBBB-638P6-6JHCY-88JWH
Professional:
TD244-P4NB7-YQ6XK-Y8MMM-YWV2J
SQL Server 2017
----------------
Enterprise Core - 6GPYM-VHN83-PHDM2-Q9T2R-KBV83
@Tuurash
Tuurash / AccountController.FacebookCallback1.cs
Created December 8, 2023 19:27 — forked from sygn/AccountController.FacebookCallback1.cs
Facebook Authentication with the Facebook C# SDK and ASP.NET MVC 4
public ActionResult FacebookCallback(string code)
{
var fb = new FacebookClient();
dynamic result = fb.Post("oauth/access_token", new
{
client_id = "your_app_id_here",
client_secret = "your_app_secret_here",
redirect_uri = RedirectUri.AbsoluteUri,
code = code
});