├── .gitignore ├── .travis.yml ├── .vs └── config │ └── applicationhost.config ├── Makefile ├── Monkeyheader.js ├── README.md ├── SGPP-dev.user.js ├── SGPP.meta.js ├── SGPP.user.js ├── SGPP ├── Core.ts ├── LocalStorage.ts ├── ModuleDefinition.ts ├── Modules │ ├── CommentAndEnter.ts │ ├── EndlessScroll │ │ ├── EndlessScroll.ts │ │ ├── EndlessScrollDiscussion.ts │ │ ├── EndlessScrollDiscussionReplies.ts │ │ ├── EndlessScrollGiveawayComments.ts │ │ ├── EndlessScrollGiveaways.ts │ │ └── EndlessScrollLists.ts │ ├── EntryCommenters.ts │ ├── FixedFooter.ts │ ├── FixedNavbar.ts │ ├── GiveawaysFilter.ts │ ├── GridView.ts │ ├── LivePreview.ts │ ├── MarkComments.ts │ ├── MarkOwnedGames.ts │ ├── MessagesFilterTest.ts │ ├── PopupGiveaway.ts │ ├── ScrollingSidebar.ts │ ├── Settings.ts │ ├── UserHoverInfo.ts │ └── UserTags.ts ├── SGv2+.csproj ├── SGv2+.csproj.user ├── Scripts │ ├── pagedown │ │ ├── MarkdownConverter.d.ts │ │ └── MarkdownConverter.js │ └── typings │ │ ├── greasemonkey │ │ └── greasemonkey.d.ts │ │ └── jquery │ │ ├── jquery.d.ts │ │ └── jquery_bpopup.d.ts ├── app.ts └── packages.config ├── SGv2+.sln ├── packages ├── greasemonkey.TypeScript.DefinitelyTyped.0.0.3 │ ├── Content │ │ └── Scripts │ │ │ └── typings │ │ │ └── greasemonkey │ │ │ └── greasemonkey.d.ts │ ├── greasemonkey.TypeScript.DefinitelyTyped.0.0.3.nupkg │ └── greasemonkey.TypeScript.DefinitelyTyped.0.0.3.nuspec ├── jquery.TypeScript.DefinitelyTyped.2.1.7 │ ├── Content │ │ └── Scripts │ │ │ └── typings │ │ │ └── jquery │ │ │ └── jquery.d.ts │ ├── jquery.TypeScript.DefinitelyTyped.2.1.7.nupkg │ └── jquery.TypeScript.DefinitelyTyped.2.1.7.nuspec └── repositories.config └── yuicompressor-2.4.8.jar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/Makefile -------------------------------------------------------------------------------- /Monkeyheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/Monkeyheader.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/README.md -------------------------------------------------------------------------------- /SGPP-dev.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP-dev.user.js -------------------------------------------------------------------------------- /SGPP.meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP.meta.js -------------------------------------------------------------------------------- /SGPP.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP.user.js -------------------------------------------------------------------------------- /SGPP/Core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Core.ts -------------------------------------------------------------------------------- /SGPP/LocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/LocalStorage.ts -------------------------------------------------------------------------------- /SGPP/ModuleDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/ModuleDefinition.ts -------------------------------------------------------------------------------- /SGPP/Modules/CommentAndEnter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/CommentAndEnter.ts -------------------------------------------------------------------------------- /SGPP/Modules/EndlessScroll/EndlessScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/EndlessScroll/EndlessScroll.ts -------------------------------------------------------------------------------- /SGPP/Modules/EndlessScroll/EndlessScrollDiscussion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/EndlessScroll/EndlessScrollDiscussion.ts -------------------------------------------------------------------------------- /SGPP/Modules/EndlessScroll/EndlessScrollDiscussionReplies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/EndlessScroll/EndlessScrollDiscussionReplies.ts -------------------------------------------------------------------------------- /SGPP/Modules/EndlessScroll/EndlessScrollGiveawayComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/EndlessScroll/EndlessScrollGiveawayComments.ts -------------------------------------------------------------------------------- /SGPP/Modules/EndlessScroll/EndlessScrollGiveaways.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/EndlessScroll/EndlessScrollGiveaways.ts -------------------------------------------------------------------------------- /SGPP/Modules/EndlessScroll/EndlessScrollLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/EndlessScroll/EndlessScrollLists.ts -------------------------------------------------------------------------------- /SGPP/Modules/EntryCommenters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/EntryCommenters.ts -------------------------------------------------------------------------------- /SGPP/Modules/FixedFooter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/FixedFooter.ts -------------------------------------------------------------------------------- /SGPP/Modules/FixedNavbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/FixedNavbar.ts -------------------------------------------------------------------------------- /SGPP/Modules/GiveawaysFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/GiveawaysFilter.ts -------------------------------------------------------------------------------- /SGPP/Modules/GridView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/GridView.ts -------------------------------------------------------------------------------- /SGPP/Modules/LivePreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/LivePreview.ts -------------------------------------------------------------------------------- /SGPP/Modules/MarkComments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/MarkComments.ts -------------------------------------------------------------------------------- /SGPP/Modules/MarkOwnedGames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/MarkOwnedGames.ts -------------------------------------------------------------------------------- /SGPP/Modules/MessagesFilterTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/MessagesFilterTest.ts -------------------------------------------------------------------------------- /SGPP/Modules/PopupGiveaway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/PopupGiveaway.ts -------------------------------------------------------------------------------- /SGPP/Modules/ScrollingSidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/ScrollingSidebar.ts -------------------------------------------------------------------------------- /SGPP/Modules/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/Settings.ts -------------------------------------------------------------------------------- /SGPP/Modules/UserHoverInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/UserHoverInfo.ts -------------------------------------------------------------------------------- /SGPP/Modules/UserTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Modules/UserTags.ts -------------------------------------------------------------------------------- /SGPP/SGv2+.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/SGv2+.csproj -------------------------------------------------------------------------------- /SGPP/SGv2+.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/SGv2+.csproj.user -------------------------------------------------------------------------------- /SGPP/Scripts/pagedown/MarkdownConverter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Scripts/pagedown/MarkdownConverter.d.ts -------------------------------------------------------------------------------- /SGPP/Scripts/pagedown/MarkdownConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Scripts/pagedown/MarkdownConverter.js -------------------------------------------------------------------------------- /SGPP/Scripts/typings/greasemonkey/greasemonkey.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Scripts/typings/greasemonkey/greasemonkey.d.ts -------------------------------------------------------------------------------- /SGPP/Scripts/typings/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Scripts/typings/jquery/jquery.d.ts -------------------------------------------------------------------------------- /SGPP/Scripts/typings/jquery/jquery_bpopup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/Scripts/typings/jquery/jquery_bpopup.d.ts -------------------------------------------------------------------------------- /SGPP/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/app.ts -------------------------------------------------------------------------------- /SGPP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGPP/packages.config -------------------------------------------------------------------------------- /SGv2+.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/SGv2+.sln -------------------------------------------------------------------------------- /packages/greasemonkey.TypeScript.DefinitelyTyped.0.0.3/Content/Scripts/typings/greasemonkey/greasemonkey.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/packages/greasemonkey.TypeScript.DefinitelyTyped.0.0.3/Content/Scripts/typings/greasemonkey/greasemonkey.d.ts -------------------------------------------------------------------------------- /packages/greasemonkey.TypeScript.DefinitelyTyped.0.0.3/greasemonkey.TypeScript.DefinitelyTyped.0.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/packages/greasemonkey.TypeScript.DefinitelyTyped.0.0.3/greasemonkey.TypeScript.DefinitelyTyped.0.0.3.nupkg -------------------------------------------------------------------------------- /packages/greasemonkey.TypeScript.DefinitelyTyped.0.0.3/greasemonkey.TypeScript.DefinitelyTyped.0.0.3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/packages/greasemonkey.TypeScript.DefinitelyTyped.0.0.3/greasemonkey.TypeScript.DefinitelyTyped.0.0.3.nuspec -------------------------------------------------------------------------------- /packages/jquery.TypeScript.DefinitelyTyped.2.1.7/Content/Scripts/typings/jquery/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/packages/jquery.TypeScript.DefinitelyTyped.2.1.7/Content/Scripts/typings/jquery/jquery.d.ts -------------------------------------------------------------------------------- /packages/jquery.TypeScript.DefinitelyTyped.2.1.7/jquery.TypeScript.DefinitelyTyped.2.1.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/packages/jquery.TypeScript.DefinitelyTyped.2.1.7/jquery.TypeScript.DefinitelyTyped.2.1.7.nupkg -------------------------------------------------------------------------------- /packages/jquery.TypeScript.DefinitelyTyped.2.1.7/jquery.TypeScript.DefinitelyTyped.2.1.7.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/packages/jquery.TypeScript.DefinitelyTyped.2.1.7/jquery.TypeScript.DefinitelyTyped.2.1.7.nuspec -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/packages/repositories.config -------------------------------------------------------------------------------- /yuicompressor-2.4.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leomoty/SGPP/HEAD/yuicompressor-2.4.8.jar --------------------------------------------------------------------------------