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
| 01:27:21.3636+06:00 - INFO - App.RegisterExitEvents - Session Ending | |
| 05:38:16.7599+06:00 - INFO - Logger.SetLogLevel - Using log level: INFO. | |
| 05:38:16.7599+06:00 - INFO - App.OnStartup - Begin Flow Launcher startup ---------------------------------------------------- | |
| 05:38:16.7599+06:00 - INFO - App.OnStartup - Runtime info: | |
| Flow Launcher version: 1.20.2 | |
| OS Version: 26100.6899 | |
| IntPtr Length: 8 | |
| x64: True | |
| 05:38:18.3863+06:00 - INFO - CommunityPluginSource.FetchAsync - Loading plugins from https://fastly.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json | |
| 05:38:18.4213+06:00 - INFO - CommunityPluginSource.FetchAsync - Loading plugins from https://gcore.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.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
| // ==UserScript== | |
| // @name DeleteThing - Auto-fill Deletion Fields | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Auto-fills deletion confirmation fields on various platforms | |
| // @author You | |
| // @match https://vercel.com/*/*/settings* | |
| // @match https://app.netlify.com/projects/*/configuration/general* | |
| // @match https://dash.cloudflare.com/*/pages/view/*/settings/production* | |
| // @match https://dash.cloudflare.com/*/workers/services/view/*/production/settings* |
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
| // Paste these lines into website's console (Win/Linux: Ctrl + Shift + I / Mac: Cmd + Alt + I) | |
| if(!!window.React || | |
| !!document.querySelector('[data-reactroot], [data-reactid]') || | |
| Array.from(document.querySelectorAll('*')).some(e => e._reactRootContainer !== undefined || Object.keys(e).some(k => k.startsWith('__reactContainer'))) | |
| ) | |
| console.log('React.js'); | |
| if(!!document.querySelector('script[id=__NEXT_DATA__]')) | |
| console.log('Next.js'); |