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
[Rainmeter] | |
Update=1000 | |
LeftMouseUpAction=[!zPos "2"] | |
RightMouseUpAction=[!zPos "0"] | |
[Metadata] | |
Name=MiniBar | |
Author=Mill | |
Information= | |
Version=0.01 |
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
{ | |
"name": "Remove x-client-data header", | |
"version": "1.0", | |
"declarative_net_request": { | |
"rule_resources": [ | |
{ | |
"id": "ruleset_1", | |
"enabled": true, | |
"path": "rules1.json" | |
} |
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
const actualCode = ` | |
delete window.navigator.__proto__.brave; | |
Object.defineProperty(window.navigator, 'plugins', { | |
get: () => { | |
const plugins = { | |
length: 0, | |
__proto__: PluginArray.prototype, | |
}; | |
return plugins; | |
} |
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 Twitch - Mute ads | |
// @include https://www.twitch.tv/* | |
// @version 1.0 | |
// @license MIT | |
// @grant none | |
// ==/UserScript== | |
(() => { | |
window.setInterval(() => { | |
let ads = document.querySelector('div[data-test-selector="sad-overlay"]'); |
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
@echo off | |
powershell Get-Clipboard | "E:\youtube-dl\youtube-dl.exe" -a- -q -o - | "E:\MPC-HC\mpc-hc64.exe" - |
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 Advanced_Combat_Tracker; | |
using System.Reflection; | |
using System.Threading; | |
using System.Windows.Forms; | |
[assembly: AssemblyTitle("FFXIV_ACT_Plugin_V2_sample")] | |
[assembly: AssemblyVersion("2.0.0.0")] | |
namespace FFXIV_ACT_Plugin_V2_sample | |
{ |
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
## https://mpv.io/manual/stable/ | |
## window | |
title="mpv" | |
no-sub | |
no-border | |
no-taskbar-progress | |
force-window | |
snap-window | |
keep-open |
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 Advanced_Combat_Tracker; | |
using System.Windows.Forms; | |
// 戦闘開始カウントでEndEncounterするPlugin | |
namespace ACTv3Plugins | |
{ | |
public class EndEncounterByCountdown : IActPluginV1 | |
{ | |
// "00:0139:戦闘開始まで5秒! (xxx xxx)" | |
// "00:0039:戦闘開始まで5秒!" |
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 AbemaTV Tweak | |
// @include https://abema.tv/* | |
// @grant GM_addStyle | |
// @license MIT License | |
// @version 1.3.0 | |
// ==/UserScript== | |
(function(){ | |
GM_addStyle( |
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
javascript:(function(){var%20tageditor=document.querySelector('.tag-input-wrapper%20.editor-plaintext');if(!tageditor)return;var%20ret=window.prompt('input%20tags%20(a,b,c)%20:');if(ret===null)return;var%20tags=ret.split(',');for(var%20i=0;i<tags.length;i++){var%20span=document.createElement('span');var%20value=document.createTextNode(tags[i]);span.appendChild(value);tageditor.appendChild(span);tageditor.focus();tageditor.blur();}})(); |
NewerOlder