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
| {"protocol-version":"2.0","general-settings":{"allow-acceptable-ads":false,"show-blocked-ads-count":true,"autodetect-filters":true,"safebrowsing-enabled":true,"filters-update-period":43200000,"appearance-theme":"system"},"extension-specific-settings":{"use-optimized-filters":true,"collect-hits-count":true,"show-context-menu":true,"show-info-about-adguard":true,"show-app-updated-info":true,"hide-rate-adguard":false,"user-rules-editor-wrap":false},"filters":{"enabled-filters":[2,3,4,17,122,208,253],"enabled-groups":[1,2,3,4,5,6,7],"custom-filters":[],"user-filter":{"enabled":true,"rules":"","disabled-rules":""},"allowlist":{"enabled":true,"inverted":false,"domains":[],"inverted-domains":[]}},"stealth":{"stealth-disable-stealth-mode":false,"stealth-hide-referrer":true,"stealth-hide-search-queries":true,"stealth-send-do-not-track":true,"stealth-block-webrtc":true,"stealth-remove-x-client":false,"stealth-block-third-party-cookies":true,"stealth-block-third-party-cookies-time":2880,"stealth-block-first-party-cookie |
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
| {"audioFx":{"delay":0,"eq":{"enabled":false,"factor":1,"values":[0,0,0,0,0,0,0,0,0,0]},"pitch":0,"volume":1},"darkTheme":true,"enabled":true,"firstUse":1660212151659,"ghostMode":true,"gptWebsiteCounter":5,"hideBadge":false,"indicatorInit":{"duration":1,"offset":0.83,"rounding":1.19,"scaling":1.01,"static":false},"initialContext":2,"keybinds":[{"command":"state","enabled":true,"greedy":true,"id":"1177791252","key":{"code":"KeyQ","shiftKey":true},"spacing":0,"valueState":"toggle"},{"command":"pin","enabled":true,"greedy":true,"id":"5995863115","key":"KeyQ","spacing":2,"valueState":"toggle"},{"adjustMode":2,"command":"speed","enabled":true,"greedy":true,"id":"3893216778","key":"KeyA","valueNumber":-0.1},{"adjustMode":2,"command":"speed","enabled":true,"greedy":true,"id":"5527832638","key":{"altKey":false,"code":"KeyA","ctrlKey":false,"metaKey":false,"shiftKey":true},"valueNumber":-0.01},{"adjustMode":1,"command":"speed","enabled":true,"greedy":true,"id":"5280688322","key":{"altKey":false,"code":"KeyS","ctrlKey": |
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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": "find", | |
| "id": "User.find" | |
| }, | |
| { |
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
| # A 'using' statement must appear before any other statements in a script. | |
| using namespace System.Management.Automation | |
| using namespace System.Management.Automation.Language | |
| # following lines add "ctrl+backspace" key inside vs-code powershell terminal instead of "ctel+w". | |
| <# | |
| if ($env:TERM_PROGRAM -eq "vscode") { | |
| Set-PSReadLineKeyHandler -Chord 'Ctrl+w' -Function BackwardKillWord | |
| } | |
| #> |