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 chat-gpt-cleaner | |
// @version 1.0.0.0 | |
// | |
// @author cfHxqA | |
// @copyright 2024 - 2025 (C) cfHxqA | |
// | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js | |
// @require https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.30.1/moment.min.js | |
// |
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 System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
/** | |
* @author cfHxqA |
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 System.Collections.Concurrent; | |
using System.Threading.Channels; | |
using System.Threading.Tasks.Dataflow; | |
/** | |
* @author cfHxqA | |
* @copyright 2019-2022 (C) by cfHxqA | |
* | |
* @package System.Collections.Generic | |
* @category Utilities | |
* |
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 PostSharp.Extensibility; | |
using System; | |
using System.Linq; | |
using System.Reflection; | |
/** | |
* @author cfHxqA | |
* @copyright 2013 - 2020 (C) by cfHxqA | |
* | |
* @package PostSharp |
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 PostSharp.Patterns.Model; | |
using PostSharp.Patterns.Threading; | |
using System.Collections.Generic; | |
using System.Collections.Specialized; | |
using System.Linq; | |
using System.Linq.Expressions; | |
/** | |
* @author cfHxqA | |
* @copyright 2019-2020 (C) by cfHxqA |
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 PostSharp.Extensibility; | |
using System; | |
using System.Text.RegularExpressions; | |
/** | |
* @author cfHxqA | |
* @copyright 2013 - 2020 (C) by cfHxqA | |
* | |
* @package PostSharp | |
* @category PostSharp.Constraints |
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 System.Collections.Concurrent; | |
using System.Collections.Generic; | |
namespace Hello { | |
class World : IPropertyIndexed<string, object> { | |
#region Public | |
#region Methods | |
public void Sample() { | |
Console.WriteLine($"Is 'hello' null? Result: {(this["hello"] is null)}"); | |
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 PostSharp; | |
using PostSharp.Patterns.Model; | |
using System; | |
using System.ComponentModel; | |
/** | |
* @author cfHxqA | |
* @copyright 2019 (C) by cfHxqA | |
* | |
* @package 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
using Newtonsoft.Json.Linq; | |
using Newtonsoft.Json.Serialization; | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Linq; | |
using System.Reflection; | |
using System.Text.RegularExpressions; | |
/** |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration> | |
<startup> | |
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" /> | |
</startup> | |
<runtime> | |
<loadFromRemoteSources enabled="true" /> | |
<relativeBindForResources enabled="true" /> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<probing privatePath="FolderA;FolderB" /> |
NewerOlder