├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .eslintrc.typed.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── enhancement-request.md │ └── feature-request.md └── workflows │ ├── beta.yml │ └── stable.yml ├── .gitignore ├── .gitlab-ci.yml ├── .lintstagedrc.js ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── PRIVACY_POLICY ├── README.md ├── assets ├── chrome-badge.png ├── firefox-badge.png └── palemoon-badge.png ├── browser └── messages.json ├── config.json ├── html.d.ts ├── karma.conf.js ├── messages.json ├── package.json ├── pnpm-lock.yaml ├── scripts ├── common.js ├── convertElementsToV2.js ├── generateCommit.js ├── generateRelease.js ├── notifyIssue.js └── updateEmojis.js ├── src ├── _locales │ └── en │ │ └── messages.json ├── assets │ ├── images │ │ ├── icon-128.png │ │ ├── icon-16.png │ │ ├── icon-32.png │ │ ├── icon-64.png │ │ └── icon.png │ └── styles │ │ ├── bootstrap │ │ └── index.css │ │ ├── index.js │ │ └── patches │ │ └── query-builder.css ├── browser-gm.js ├── browser-sdk.js ├── browser-webext.js ├── browser.ts ├── class │ ├── Button.jsx │ ├── Checkbox.jsx │ ├── DOM.ts │ ├── DropboxStorage.js │ ├── Esgst.js │ ├── EventDispatcher.js │ ├── FetchRequest.ts │ ├── GoogleDriveStorage.js │ ├── I18N.js │ ├── ICloudStorage.js │ ├── LocalStorage.js │ ├── Lock.ts │ ├── Logger.jsx │ ├── Module.js │ ├── OneDriveStorage.js │ ├── Permissions.ts │ ├── PermissionsUi.tsx │ ├── PersistentStorage.js │ ├── Popout.jsx │ ├── Popup.jsx │ ├── Process.jsx │ ├── Queue.ts │ ├── Scope.ts │ ├── Session.js │ ├── Settings.js │ ├── SettingsWizard.tsx │ ├── Shared.js │ ├── Table.jsx │ ├── Tabs.js │ └── ToggleSwitch.jsx ├── components │ ├── Base.tsx │ ├── Button.tsx │ ├── Collapsible.tsx │ ├── Footer.jsx │ ├── Header.jsx │ ├── NotificationBar.tsx │ └── PageHeading.tsx ├── constants │ ├── ClassNames.ts │ ├── Events.js │ └── Namespaces.js ├── dependencies.ts ├── entry │ ├── eventPage_index.js │ ├── eventPage_sdk_banner.js │ ├── eventPage_sdk_index.js │ ├── gm_index.js │ ├── index.js │ ├── monkey_banner.js │ ├── permissions_index.js │ └── sdk_index.js ├── eventPage.js ├── eventPage_sdk.js ├── global.d.ts ├── html │ ├── options.html │ └── permissions.html ├── lib │ ├── jsUtils │ │ └── index.js │ └── parsedown │ │ └── index.js ├── main.js ├── models │ ├── AttachedImage.tsx │ ├── Base.tsx │ ├── Comment.tsx │ ├── CommentBox.tsx │ ├── CommentEntity.tsx │ ├── Game.tsx │ ├── Giveaway.tsx │ └── User.tsx ├── modules │ ├── CloudStorage.jsx │ ├── Comments.js │ ├── Comments │ │ ├── CollapseExpandReplyButton.jsx │ │ ├── CommentFilters.jsx │ │ ├── CommentFormattingHelper.jsx │ │ ├── CommentHistory.jsx │ │ ├── CommentReverser.jsx │ │ ├── CommentSearcher.jsx │ │ ├── CommentTracker.jsx │ │ ├── CommentVariables.jsx │ │ ├── MultiReply.jsx │ │ ├── ReceivedReplyBoxPopup.jsx │ │ ├── ReplyBoxOnTop.jsx │ │ ├── ReplyBoxPopup.jsx │ │ ├── ReplyFromInbox.jsx │ │ └── ReplyMentionLink.tsx │ ├── Common.jsx │ ├── DiscussionPanels.js │ ├── Discussions.js │ ├── Discussions │ │ ├── ActiveDiscussionsOnTopSidebar.jsx │ │ ├── CloseOpenDiscussionButton.jsx │ │ ├── DiscussionFilters.jsx │ │ ├── DiscussionTags.jsx │ │ ├── DiscussionsSorter.jsx │ │ ├── ImprovedDiscussionBookmarks.jsx │ │ ├── MainPostPopup.jsx │ │ ├── MainPostSkipper.jsx │ │ ├── OldActiveDiscussionsDesign.jsx │ │ ├── PuzzleMarker.jsx │ │ ├── RefreshActiveDiscussionsButton.jsx │ │ └── ReversedActiveDiscussions.jsx │ ├── Filters.jsx │ ├── Games.js │ ├── Games │ │ ├── EnteredGameHighlighter.jsx │ │ ├── GameCategories.jsx │ │ ├── GameFilters.jsx │ │ └── GameTags.jsx │ ├── General │ │ ├── AccurateTimestamp.jsx │ │ ├── AttachedImageCarousel.jsx │ │ ├── AttachedImageLoader.jsx │ │ ├── CakeDayReminder.jsx │ │ ├── ContentLoader.jsx │ │ ├── CustomHeaderFooterLinks.jsx │ │ ├── ElementFilters.jsx │ │ ├── EmbeddedVideos.jsx │ │ ├── EndlessScrolling.jsx │ │ ├── FixedFooter.jsx │ │ ├── FixedHeader.jsx │ │ ├── FixedMainPageHeading.jsx │ │ ├── FixedSidebar.jsx │ │ ├── GiveawayDiscussionTicketTradeTracker.jsx │ │ ├── HeaderRefresher.jsx │ │ ├── HiddenBlacklistStats.jsx │ │ ├── HiddenCommunityPoll.jsx │ │ ├── ImageBorders.jsx │ │ ├── LastPageLink.jsx │ │ ├── LevelProgressVisualizer.jsx │ │ ├── MultiManager.jsx │ │ ├── NarrowSidebar.jsx │ │ ├── NotificationMerger.jsx │ │ ├── PageLoadTimestamp.jsx │ │ ├── PaginationNavigationOnTop.jsx │ │ ├── PointsVisualizer.jsx │ │ ├── QuickInboxView.jsx │ │ ├── SameTabOpener.jsx │ │ ├── ScrollToBottomButton.jsx │ │ ├── ScrollToTopButton.jsx │ │ ├── SearchClearButton.jsx │ │ ├── SearchMagnifyingGlassButton.jsx │ │ ├── ShortcutKeys.jsx │ │ ├── TableSorter.jsx │ │ ├── ThreadSubscription.jsx │ │ ├── TimeToPointCapCalculator.jsx │ │ ├── URLRedirector.jsx │ │ ├── VisibleAttachedImages.jsx │ │ └── VisibleFullLevel.jsx │ ├── Giveaways.jsx │ ├── Giveaways │ │ ├── AdvancedGiveawaySearch.jsx │ │ ├── ArchiveSearcher.jsx │ │ ├── BlacklistGiveawayLoader.jsx │ │ ├── CommentEntryChecker.jsx │ │ ├── CommunityWishlistSearchLink.jsx │ │ ├── CreatedEnteredWonGiveawayDetails.jsx │ │ ├── CustomGiveawayBackground.jsx │ │ ├── CustomGiveawayCalendar.jsx │ │ ├── DeleteKeyConfirmation.jsx │ │ ├── EnterLeaveGiveawayButton.jsx │ │ ├── EnteredGiveawaysStats.jsx │ │ ├── EntryTracker.jsx │ │ ├── FollowedGamesPage.jsx │ │ ├── GiveawayBookmarks.jsx │ │ ├── GiveawayCopyHighlighter.jsx │ │ ├── GiveawayEncrypterDecrypter.jsx │ │ ├── GiveawayEndTimeHighlighter.jsx │ │ ├── GiveawayErrorSearchLinks.tsx │ │ ├── GiveawayExtractor.jsx │ │ ├── GiveawayFilters.jsx │ │ ├── GiveawayLevelHighlighter.jsx │ │ ├── GiveawayPointsToWin.jsx │ │ ├── GiveawayPopup.jsx │ │ ├── GiveawayRecreator.jsx │ │ ├── GiveawayTemplates.jsx │ │ ├── GiveawayWinnersLink.jsx │ │ ├── GiveawayWinningChance.jsx │ │ ├── GiveawayWinningRatio.jsx │ │ ├── GiveawaysSorter.jsx │ │ ├── GridView.jsx │ │ ├── HiddenGamesEnterButtonDisabler.jsx │ │ ├── HiddenGamesManager.jsx │ │ ├── IsThereAnyDealInfo.jsx │ │ ├── MultipleGiveawayCreator.jsx │ │ ├── NewGiveawayDescriptionChecker.jsx │ │ ├── NextPreviousTrainHotkeys.jsx │ │ ├── OneClickHideGiveawayButton.jsx │ │ ├── PinnedGiveawaysButton.jsx │ │ ├── QuickGiveawaySearch.jsx │ │ ├── RealCVCalculator.jsx │ │ ├── SentKeySearcher.jsx │ │ ├── SteamActivationLinks.jsx │ │ ├── StickiedGiveawayCountries.jsx │ │ ├── StickiedGiveawayGroups.jsx │ │ ├── TimeToEnterCalculator.jsx │ │ ├── UnfadedEnteredGiveaway.jsx │ │ ├── UnhideGiveawayButton.jsx │ │ ├── UnsentGiftSender.jsx │ │ └── VisibleInviteOnlyGiveaways.jsx │ ├── Giveaways_addToStorage.js │ ├── Groups.js │ ├── Groups │ │ ├── GroupFilters.jsx │ │ ├── GroupHighlighter.jsx │ │ ├── GroupLibraryWishlistChecker.jsx │ │ ├── GroupStats.jsx │ │ └── GroupTags.jsx │ ├── Profile.js │ ├── Settings.jsx │ ├── Storage.jsx │ ├── Style.js │ ├── Sync.jsx │ ├── Tags.jsx │ ├── Trades │ │ ├── HaveWantListChecker.jsx │ │ ├── HeaderTradesButton.jsx │ │ ├── TradeBumper.jsx │ │ └── TradeFilters.jsx │ ├── Users.js │ ├── Users │ │ ├── InboxWinnerHighlighter.jsx │ │ ├── LevelUpCalculator.jsx │ │ ├── NotActivatedMultipleWinChecker.jsx │ │ ├── NotReceivedFinder.jsx │ │ ├── ProfileLinks.jsx │ │ ├── RealWonSentCVLink.jsx │ │ ├── SentWonRatio.jsx │ │ ├── SharedGroupChecker.jsx │ │ ├── SteamFriendsIndicator.jsx │ │ ├── SteamGiftsProfileButton.jsx │ │ ├── UserFilters.jsx │ │ ├── UserGiveawayData.jsx │ │ ├── UserLinks.jsx │ │ ├── UserNotes.jsx │ │ ├── UserStats.jsx │ │ ├── UserSuspensionChecker.jsx │ │ ├── UserTags.jsx │ │ ├── UsernameHistory.jsx │ │ ├── VisibleGiftsBreakdown.jsx │ │ ├── VisibleRealCV.jsx │ │ ├── WhitelistBlacklistChecker.jsx │ │ ├── WhitelistBlacklistHighlighter.jsx │ │ ├── WhitelistBlacklistManager.jsx │ │ └── WhitelistBlacklistSorter.jsx │ └── index.js ├── permissions.tsx ├── typedefs.js └── types │ ├── Footer.type.js │ ├── Header.type.js │ ├── HeaderRefresher.type.js │ ├── Session.type.js │ └── common.type.js ├── test-helpers └── fixture-loader.ts ├── test ├── components │ ├── Base.test.ts │ └── NotificationBar.test.ts ├── fixtures │ ├── sg │ │ ├── header.html │ │ ├── main-page.html │ │ └── notification-bar.html │ └── st │ │ ├── header.html │ │ ├── main-page.html │ │ └── notification-bar.html └── modules │ └── General │ └── FixedHeader.test.ts ├── tsconfig.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.eslintrc.typed.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.github/workflows/beta.yml -------------------------------------------------------------------------------- /.github/workflows/stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.github/workflows/stable.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY_POLICY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/PRIVACY_POLICY -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/README.md -------------------------------------------------------------------------------- /assets/chrome-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/assets/chrome-badge.png -------------------------------------------------------------------------------- /assets/firefox-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/assets/firefox-badge.png -------------------------------------------------------------------------------- /assets/palemoon-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/assets/palemoon-badge.png -------------------------------------------------------------------------------- /browser/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/browser/messages.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/config.json -------------------------------------------------------------------------------- /html.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/html.d.ts -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/karma.conf.js -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/messages.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/scripts/common.js -------------------------------------------------------------------------------- /scripts/convertElementsToV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/scripts/convertElementsToV2.js -------------------------------------------------------------------------------- /scripts/generateCommit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/scripts/generateCommit.js -------------------------------------------------------------------------------- /scripts/generateRelease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/scripts/generateRelease.js -------------------------------------------------------------------------------- /scripts/notifyIssue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/scripts/notifyIssue.js -------------------------------------------------------------------------------- /scripts/updateEmojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/scripts/updateEmojis.js -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/assets/images/icon-128.png -------------------------------------------------------------------------------- /src/assets/images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/assets/images/icon-16.png -------------------------------------------------------------------------------- /src/assets/images/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/assets/images/icon-32.png -------------------------------------------------------------------------------- /src/assets/images/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/assets/images/icon-64.png -------------------------------------------------------------------------------- /src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/assets/images/icon.png -------------------------------------------------------------------------------- /src/assets/styles/bootstrap/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/assets/styles/bootstrap/index.css -------------------------------------------------------------------------------- /src/assets/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/assets/styles/index.js -------------------------------------------------------------------------------- /src/assets/styles/patches/query-builder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/assets/styles/patches/query-builder.css -------------------------------------------------------------------------------- /src/browser-gm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/browser-gm.js -------------------------------------------------------------------------------- /src/browser-sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/browser-sdk.js -------------------------------------------------------------------------------- /src/browser-webext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/browser-webext.js -------------------------------------------------------------------------------- /src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/browser.ts -------------------------------------------------------------------------------- /src/class/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Button.jsx -------------------------------------------------------------------------------- /src/class/Checkbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Checkbox.jsx -------------------------------------------------------------------------------- /src/class/DOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/DOM.ts -------------------------------------------------------------------------------- /src/class/DropboxStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/DropboxStorage.js -------------------------------------------------------------------------------- /src/class/Esgst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Esgst.js -------------------------------------------------------------------------------- /src/class/EventDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/EventDispatcher.js -------------------------------------------------------------------------------- /src/class/FetchRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/FetchRequest.ts -------------------------------------------------------------------------------- /src/class/GoogleDriveStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/GoogleDriveStorage.js -------------------------------------------------------------------------------- /src/class/I18N.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/I18N.js -------------------------------------------------------------------------------- /src/class/ICloudStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/ICloudStorage.js -------------------------------------------------------------------------------- /src/class/LocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/LocalStorage.js -------------------------------------------------------------------------------- /src/class/Lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Lock.ts -------------------------------------------------------------------------------- /src/class/Logger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Logger.jsx -------------------------------------------------------------------------------- /src/class/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Module.js -------------------------------------------------------------------------------- /src/class/OneDriveStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/OneDriveStorage.js -------------------------------------------------------------------------------- /src/class/Permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Permissions.ts -------------------------------------------------------------------------------- /src/class/PermissionsUi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/PermissionsUi.tsx -------------------------------------------------------------------------------- /src/class/PersistentStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/PersistentStorage.js -------------------------------------------------------------------------------- /src/class/Popout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Popout.jsx -------------------------------------------------------------------------------- /src/class/Popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Popup.jsx -------------------------------------------------------------------------------- /src/class/Process.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Process.jsx -------------------------------------------------------------------------------- /src/class/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Queue.ts -------------------------------------------------------------------------------- /src/class/Scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Scope.ts -------------------------------------------------------------------------------- /src/class/Session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Session.js -------------------------------------------------------------------------------- /src/class/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Settings.js -------------------------------------------------------------------------------- /src/class/SettingsWizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/SettingsWizard.tsx -------------------------------------------------------------------------------- /src/class/Shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Shared.js -------------------------------------------------------------------------------- /src/class/Table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Table.jsx -------------------------------------------------------------------------------- /src/class/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/Tabs.js -------------------------------------------------------------------------------- /src/class/ToggleSwitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/class/ToggleSwitch.jsx -------------------------------------------------------------------------------- /src/components/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/components/Base.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/components/Collapsible.tsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/NotificationBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/components/NotificationBar.tsx -------------------------------------------------------------------------------- /src/components/PageHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/components/PageHeading.tsx -------------------------------------------------------------------------------- /src/constants/ClassNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/constants/ClassNames.ts -------------------------------------------------------------------------------- /src/constants/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/constants/Events.js -------------------------------------------------------------------------------- /src/constants/Namespaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/constants/Namespaces.js -------------------------------------------------------------------------------- /src/dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/dependencies.ts -------------------------------------------------------------------------------- /src/entry/eventPage_index.js: -------------------------------------------------------------------------------- 1 | import '../eventPage'; 2 | -------------------------------------------------------------------------------- /src/entry/eventPage_sdk_banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/entry/eventPage_sdk_banner.js -------------------------------------------------------------------------------- /src/entry/eventPage_sdk_index.js: -------------------------------------------------------------------------------- 1 | import '../eventPage_sdk'; 2 | -------------------------------------------------------------------------------- /src/entry/gm_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/entry/gm_index.js -------------------------------------------------------------------------------- /src/entry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/entry/index.js -------------------------------------------------------------------------------- /src/entry/monkey_banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/entry/monkey_banner.js -------------------------------------------------------------------------------- /src/entry/permissions_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/entry/permissions_index.js -------------------------------------------------------------------------------- /src/entry/sdk_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/entry/sdk_index.js -------------------------------------------------------------------------------- /src/eventPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/eventPage.js -------------------------------------------------------------------------------- /src/eventPage_sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/eventPage_sdk.js -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/html/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/html/options.html -------------------------------------------------------------------------------- /src/html/permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/html/permissions.html -------------------------------------------------------------------------------- /src/lib/jsUtils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/lib/jsUtils/index.js -------------------------------------------------------------------------------- /src/lib/parsedown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/lib/parsedown/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/main.js -------------------------------------------------------------------------------- /src/models/AttachedImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/models/AttachedImage.tsx -------------------------------------------------------------------------------- /src/models/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/models/Base.tsx -------------------------------------------------------------------------------- /src/models/Comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/models/Comment.tsx -------------------------------------------------------------------------------- /src/models/CommentBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/models/CommentBox.tsx -------------------------------------------------------------------------------- /src/models/CommentEntity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/models/CommentEntity.tsx -------------------------------------------------------------------------------- /src/models/Game.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/models/Game.tsx -------------------------------------------------------------------------------- /src/models/Giveaway.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/models/Giveaway.tsx -------------------------------------------------------------------------------- /src/models/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/models/User.tsx -------------------------------------------------------------------------------- /src/modules/CloudStorage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/CloudStorage.jsx -------------------------------------------------------------------------------- /src/modules/Comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments.js -------------------------------------------------------------------------------- /src/modules/Comments/CollapseExpandReplyButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/CollapseExpandReplyButton.jsx -------------------------------------------------------------------------------- /src/modules/Comments/CommentFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/CommentFilters.jsx -------------------------------------------------------------------------------- /src/modules/Comments/CommentFormattingHelper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/CommentFormattingHelper.jsx -------------------------------------------------------------------------------- /src/modules/Comments/CommentHistory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/CommentHistory.jsx -------------------------------------------------------------------------------- /src/modules/Comments/CommentReverser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/CommentReverser.jsx -------------------------------------------------------------------------------- /src/modules/Comments/CommentSearcher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/CommentSearcher.jsx -------------------------------------------------------------------------------- /src/modules/Comments/CommentTracker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/CommentTracker.jsx -------------------------------------------------------------------------------- /src/modules/Comments/CommentVariables.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/CommentVariables.jsx -------------------------------------------------------------------------------- /src/modules/Comments/MultiReply.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/MultiReply.jsx -------------------------------------------------------------------------------- /src/modules/Comments/ReceivedReplyBoxPopup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/ReceivedReplyBoxPopup.jsx -------------------------------------------------------------------------------- /src/modules/Comments/ReplyBoxOnTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/ReplyBoxOnTop.jsx -------------------------------------------------------------------------------- /src/modules/Comments/ReplyBoxPopup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/ReplyBoxPopup.jsx -------------------------------------------------------------------------------- /src/modules/Comments/ReplyFromInbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/ReplyFromInbox.jsx -------------------------------------------------------------------------------- /src/modules/Comments/ReplyMentionLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Comments/ReplyMentionLink.tsx -------------------------------------------------------------------------------- /src/modules/Common.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Common.jsx -------------------------------------------------------------------------------- /src/modules/DiscussionPanels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/DiscussionPanels.js -------------------------------------------------------------------------------- /src/modules/Discussions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions.js -------------------------------------------------------------------------------- /src/modules/Discussions/ActiveDiscussionsOnTopSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/ActiveDiscussionsOnTopSidebar.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/CloseOpenDiscussionButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/CloseOpenDiscussionButton.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/DiscussionFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/DiscussionFilters.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/DiscussionTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/DiscussionTags.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/DiscussionsSorter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/DiscussionsSorter.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/ImprovedDiscussionBookmarks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/ImprovedDiscussionBookmarks.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/MainPostPopup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/MainPostPopup.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/MainPostSkipper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/MainPostSkipper.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/OldActiveDiscussionsDesign.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/OldActiveDiscussionsDesign.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/PuzzleMarker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/PuzzleMarker.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/RefreshActiveDiscussionsButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/RefreshActiveDiscussionsButton.jsx -------------------------------------------------------------------------------- /src/modules/Discussions/ReversedActiveDiscussions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Discussions/ReversedActiveDiscussions.jsx -------------------------------------------------------------------------------- /src/modules/Filters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Filters.jsx -------------------------------------------------------------------------------- /src/modules/Games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Games.js -------------------------------------------------------------------------------- /src/modules/Games/EnteredGameHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Games/EnteredGameHighlighter.jsx -------------------------------------------------------------------------------- /src/modules/Games/GameCategories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Games/GameCategories.jsx -------------------------------------------------------------------------------- /src/modules/Games/GameFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Games/GameFilters.jsx -------------------------------------------------------------------------------- /src/modules/Games/GameTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Games/GameTags.jsx -------------------------------------------------------------------------------- /src/modules/General/AccurateTimestamp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/AccurateTimestamp.jsx -------------------------------------------------------------------------------- /src/modules/General/AttachedImageCarousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/AttachedImageCarousel.jsx -------------------------------------------------------------------------------- /src/modules/General/AttachedImageLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/AttachedImageLoader.jsx -------------------------------------------------------------------------------- /src/modules/General/CakeDayReminder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/CakeDayReminder.jsx -------------------------------------------------------------------------------- /src/modules/General/ContentLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/ContentLoader.jsx -------------------------------------------------------------------------------- /src/modules/General/CustomHeaderFooterLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/CustomHeaderFooterLinks.jsx -------------------------------------------------------------------------------- /src/modules/General/ElementFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/ElementFilters.jsx -------------------------------------------------------------------------------- /src/modules/General/EmbeddedVideos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/EmbeddedVideos.jsx -------------------------------------------------------------------------------- /src/modules/General/EndlessScrolling.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/EndlessScrolling.jsx -------------------------------------------------------------------------------- /src/modules/General/FixedFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/FixedFooter.jsx -------------------------------------------------------------------------------- /src/modules/General/FixedHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/FixedHeader.jsx -------------------------------------------------------------------------------- /src/modules/General/FixedMainPageHeading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/FixedMainPageHeading.jsx -------------------------------------------------------------------------------- /src/modules/General/FixedSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/FixedSidebar.jsx -------------------------------------------------------------------------------- /src/modules/General/GiveawayDiscussionTicketTradeTracker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/GiveawayDiscussionTicketTradeTracker.jsx -------------------------------------------------------------------------------- /src/modules/General/HeaderRefresher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/HeaderRefresher.jsx -------------------------------------------------------------------------------- /src/modules/General/HiddenBlacklistStats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/HiddenBlacklistStats.jsx -------------------------------------------------------------------------------- /src/modules/General/HiddenCommunityPoll.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/HiddenCommunityPoll.jsx -------------------------------------------------------------------------------- /src/modules/General/ImageBorders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/ImageBorders.jsx -------------------------------------------------------------------------------- /src/modules/General/LastPageLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/LastPageLink.jsx -------------------------------------------------------------------------------- /src/modules/General/LevelProgressVisualizer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/LevelProgressVisualizer.jsx -------------------------------------------------------------------------------- /src/modules/General/MultiManager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/MultiManager.jsx -------------------------------------------------------------------------------- /src/modules/General/NarrowSidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/NarrowSidebar.jsx -------------------------------------------------------------------------------- /src/modules/General/NotificationMerger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/NotificationMerger.jsx -------------------------------------------------------------------------------- /src/modules/General/PageLoadTimestamp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/PageLoadTimestamp.jsx -------------------------------------------------------------------------------- /src/modules/General/PaginationNavigationOnTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/PaginationNavigationOnTop.jsx -------------------------------------------------------------------------------- /src/modules/General/PointsVisualizer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/PointsVisualizer.jsx -------------------------------------------------------------------------------- /src/modules/General/QuickInboxView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/QuickInboxView.jsx -------------------------------------------------------------------------------- /src/modules/General/SameTabOpener.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/SameTabOpener.jsx -------------------------------------------------------------------------------- /src/modules/General/ScrollToBottomButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/ScrollToBottomButton.jsx -------------------------------------------------------------------------------- /src/modules/General/ScrollToTopButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/ScrollToTopButton.jsx -------------------------------------------------------------------------------- /src/modules/General/SearchClearButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/SearchClearButton.jsx -------------------------------------------------------------------------------- /src/modules/General/SearchMagnifyingGlassButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/SearchMagnifyingGlassButton.jsx -------------------------------------------------------------------------------- /src/modules/General/ShortcutKeys.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/ShortcutKeys.jsx -------------------------------------------------------------------------------- /src/modules/General/TableSorter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/TableSorter.jsx -------------------------------------------------------------------------------- /src/modules/General/ThreadSubscription.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/ThreadSubscription.jsx -------------------------------------------------------------------------------- /src/modules/General/TimeToPointCapCalculator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/TimeToPointCapCalculator.jsx -------------------------------------------------------------------------------- /src/modules/General/URLRedirector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/URLRedirector.jsx -------------------------------------------------------------------------------- /src/modules/General/VisibleAttachedImages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/VisibleAttachedImages.jsx -------------------------------------------------------------------------------- /src/modules/General/VisibleFullLevel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/General/VisibleFullLevel.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/AdvancedGiveawaySearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/AdvancedGiveawaySearch.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/ArchiveSearcher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/ArchiveSearcher.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/BlacklistGiveawayLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/BlacklistGiveawayLoader.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/CommentEntryChecker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/CommentEntryChecker.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/CommunityWishlistSearchLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/CommunityWishlistSearchLink.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/CreatedEnteredWonGiveawayDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/CreatedEnteredWonGiveawayDetails.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/CustomGiveawayBackground.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/CustomGiveawayBackground.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/CustomGiveawayCalendar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/CustomGiveawayCalendar.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/DeleteKeyConfirmation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/DeleteKeyConfirmation.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/EnterLeaveGiveawayButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/EnterLeaveGiveawayButton.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/EnteredGiveawaysStats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/EnteredGiveawaysStats.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/EntryTracker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/EntryTracker.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/FollowedGamesPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/FollowedGamesPage.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayBookmarks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayBookmarks.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayCopyHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayCopyHighlighter.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayEncrypterDecrypter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayEncrypterDecrypter.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayEndTimeHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayEndTimeHighlighter.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayErrorSearchLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayErrorSearchLinks.tsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayExtractor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayExtractor.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayFilters.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayLevelHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayLevelHighlighter.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayPointsToWin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayPointsToWin.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayPopup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayPopup.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayRecreator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayRecreator.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayTemplates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayTemplates.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayWinnersLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayWinnersLink.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayWinningChance.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayWinningChance.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawayWinningRatio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawayWinningRatio.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GiveawaysSorter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GiveawaysSorter.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/GridView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/GridView.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/HiddenGamesEnterButtonDisabler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/HiddenGamesEnterButtonDisabler.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/HiddenGamesManager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/HiddenGamesManager.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/IsThereAnyDealInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/IsThereAnyDealInfo.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/MultipleGiveawayCreator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/MultipleGiveawayCreator.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/NewGiveawayDescriptionChecker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/NewGiveawayDescriptionChecker.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/NextPreviousTrainHotkeys.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/NextPreviousTrainHotkeys.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/OneClickHideGiveawayButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/OneClickHideGiveawayButton.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/PinnedGiveawaysButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/PinnedGiveawaysButton.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/QuickGiveawaySearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/QuickGiveawaySearch.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/RealCVCalculator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/RealCVCalculator.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/SentKeySearcher.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/SentKeySearcher.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/SteamActivationLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/SteamActivationLinks.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/StickiedGiveawayCountries.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/StickiedGiveawayCountries.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/StickiedGiveawayGroups.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/StickiedGiveawayGroups.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/TimeToEnterCalculator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/TimeToEnterCalculator.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/UnfadedEnteredGiveaway.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/UnfadedEnteredGiveaway.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/UnhideGiveawayButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/UnhideGiveawayButton.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/UnsentGiftSender.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/UnsentGiftSender.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways/VisibleInviteOnlyGiveaways.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways/VisibleInviteOnlyGiveaways.jsx -------------------------------------------------------------------------------- /src/modules/Giveaways_addToStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Giveaways_addToStorage.js -------------------------------------------------------------------------------- /src/modules/Groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Groups.js -------------------------------------------------------------------------------- /src/modules/Groups/GroupFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Groups/GroupFilters.jsx -------------------------------------------------------------------------------- /src/modules/Groups/GroupHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Groups/GroupHighlighter.jsx -------------------------------------------------------------------------------- /src/modules/Groups/GroupLibraryWishlistChecker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Groups/GroupLibraryWishlistChecker.jsx -------------------------------------------------------------------------------- /src/modules/Groups/GroupStats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Groups/GroupStats.jsx -------------------------------------------------------------------------------- /src/modules/Groups/GroupTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Groups/GroupTags.jsx -------------------------------------------------------------------------------- /src/modules/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Profile.js -------------------------------------------------------------------------------- /src/modules/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Settings.jsx -------------------------------------------------------------------------------- /src/modules/Storage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Storage.jsx -------------------------------------------------------------------------------- /src/modules/Style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Style.js -------------------------------------------------------------------------------- /src/modules/Sync.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Sync.jsx -------------------------------------------------------------------------------- /src/modules/Tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Tags.jsx -------------------------------------------------------------------------------- /src/modules/Trades/HaveWantListChecker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Trades/HaveWantListChecker.jsx -------------------------------------------------------------------------------- /src/modules/Trades/HeaderTradesButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Trades/HeaderTradesButton.jsx -------------------------------------------------------------------------------- /src/modules/Trades/TradeBumper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Trades/TradeBumper.jsx -------------------------------------------------------------------------------- /src/modules/Trades/TradeFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Trades/TradeFilters.jsx -------------------------------------------------------------------------------- /src/modules/Users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users.js -------------------------------------------------------------------------------- /src/modules/Users/InboxWinnerHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/InboxWinnerHighlighter.jsx -------------------------------------------------------------------------------- /src/modules/Users/LevelUpCalculator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/LevelUpCalculator.jsx -------------------------------------------------------------------------------- /src/modules/Users/NotActivatedMultipleWinChecker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/NotActivatedMultipleWinChecker.jsx -------------------------------------------------------------------------------- /src/modules/Users/NotReceivedFinder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/NotReceivedFinder.jsx -------------------------------------------------------------------------------- /src/modules/Users/ProfileLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/ProfileLinks.jsx -------------------------------------------------------------------------------- /src/modules/Users/RealWonSentCVLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/RealWonSentCVLink.jsx -------------------------------------------------------------------------------- /src/modules/Users/SentWonRatio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/SentWonRatio.jsx -------------------------------------------------------------------------------- /src/modules/Users/SharedGroupChecker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/SharedGroupChecker.jsx -------------------------------------------------------------------------------- /src/modules/Users/SteamFriendsIndicator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/SteamFriendsIndicator.jsx -------------------------------------------------------------------------------- /src/modules/Users/SteamGiftsProfileButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/SteamGiftsProfileButton.jsx -------------------------------------------------------------------------------- /src/modules/Users/UserFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/UserFilters.jsx -------------------------------------------------------------------------------- /src/modules/Users/UserGiveawayData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/UserGiveawayData.jsx -------------------------------------------------------------------------------- /src/modules/Users/UserLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/UserLinks.jsx -------------------------------------------------------------------------------- /src/modules/Users/UserNotes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/UserNotes.jsx -------------------------------------------------------------------------------- /src/modules/Users/UserStats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/UserStats.jsx -------------------------------------------------------------------------------- /src/modules/Users/UserSuspensionChecker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/UserSuspensionChecker.jsx -------------------------------------------------------------------------------- /src/modules/Users/UserTags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/UserTags.jsx -------------------------------------------------------------------------------- /src/modules/Users/UsernameHistory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/UsernameHistory.jsx -------------------------------------------------------------------------------- /src/modules/Users/VisibleGiftsBreakdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/VisibleGiftsBreakdown.jsx -------------------------------------------------------------------------------- /src/modules/Users/VisibleRealCV.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/VisibleRealCV.jsx -------------------------------------------------------------------------------- /src/modules/Users/WhitelistBlacklistChecker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/WhitelistBlacklistChecker.jsx -------------------------------------------------------------------------------- /src/modules/Users/WhitelistBlacklistHighlighter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/WhitelistBlacklistHighlighter.jsx -------------------------------------------------------------------------------- /src/modules/Users/WhitelistBlacklistManager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/WhitelistBlacklistManager.jsx -------------------------------------------------------------------------------- /src/modules/Users/WhitelistBlacklistSorter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/Users/WhitelistBlacklistSorter.jsx -------------------------------------------------------------------------------- /src/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/modules/index.js -------------------------------------------------------------------------------- /src/permissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/permissions.tsx -------------------------------------------------------------------------------- /src/typedefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/typedefs.js -------------------------------------------------------------------------------- /src/types/Footer.type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/types/Footer.type.js -------------------------------------------------------------------------------- /src/types/Header.type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/types/Header.type.js -------------------------------------------------------------------------------- /src/types/HeaderRefresher.type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/types/HeaderRefresher.type.js -------------------------------------------------------------------------------- /src/types/Session.type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/types/Session.type.js -------------------------------------------------------------------------------- /src/types/common.type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/src/types/common.type.js -------------------------------------------------------------------------------- /test-helpers/fixture-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test-helpers/fixture-loader.ts -------------------------------------------------------------------------------- /test/components/Base.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/components/Base.test.ts -------------------------------------------------------------------------------- /test/components/NotificationBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/components/NotificationBar.test.ts -------------------------------------------------------------------------------- /test/fixtures/sg/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/fixtures/sg/header.html -------------------------------------------------------------------------------- /test/fixtures/sg/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/fixtures/sg/main-page.html -------------------------------------------------------------------------------- /test/fixtures/sg/notification-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/fixtures/sg/notification-bar.html -------------------------------------------------------------------------------- /test/fixtures/st/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/fixtures/st/header.html -------------------------------------------------------------------------------- /test/fixtures/st/main-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/fixtures/st/main-page.html -------------------------------------------------------------------------------- /test/fixtures/st/notification-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/fixtures/st/notification-bar.html -------------------------------------------------------------------------------- /test/modules/General/FixedHeader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/test/modules/General/FixedHeader.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelgomesxyz/esgst/HEAD/webpack.config.js --------------------------------------------------------------------------------