├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── mod.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── pull_request_template.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TESTS.md ├── VERSION ├── docs ├── Makefile ├── README.md ├── make.bat ├── patch-1.sh ├── requirements.txt └── source │ ├── _static │ ├── css │ │ └── custom.css │ └── schemas │ │ ├── checkbox.json │ │ ├── color.json │ │ ├── manifest.json │ │ ├── number.json │ │ ├── radio.json │ │ ├── range.json │ │ ├── select.json │ │ └── text.json │ ├── bugs.rst │ ├── build.rst │ ├── conf.py │ ├── contributing.rst │ ├── debug.rst │ ├── enums.rst │ ├── funcs.rst │ ├── index.rst │ ├── installation.rst │ ├── json.rst │ ├── uninstallation.rst │ ├── updating.rst │ └── usage.rst ├── export ├── helpers ├── debug.js ├── enums.js ├── funcs.js ├── kes.css ├── lib.js ├── manifest.json ├── safegm.js └── ui.json ├── images ├── checkmark.png ├── example.png ├── example2.png ├── kbin-mini.svg ├── kbin_logo_kibby.svg ├── kibby-mini.svg └── omnibar.png ├── kes.user.js ├── mods ├── adjust │ ├── adjust.js │ └── adjust.json ├── alpha_sort_subs │ ├── alpha_sort_subs.js │ └── alpha_sort_subs.json ├── always_more │ ├── always_more.js │ └── always_more.json ├── clarify_recipient │ ├── clarify_recipient.js │ └── clarify_recipient.json ├── code_highlighting │ ├── code_highlighting.js │ └── code_highlighting.json ├── collapse_pins │ ├── collapse_pins.js │ └── collapse_pins.json ├── default_sort │ ├── default_sort.js │ └── default_sort.json ├── dropdown │ ├── dropdown.js │ └── dropdown.json ├── easy_emoticon │ ├── easy_emoticon.js │ └── easy_emoticon.json ├── expand_posts │ ├── expand_posts.js │ └── expand_posts.json ├── hide_downvotes │ ├── hide_downvotes.js │ └── hide_downvotes.json ├── hide_logo │ ├── hide_logo.js │ └── hide_logo.json ├── hide_posts │ ├── hide_posts.js │ └── hide_posts.json ├── hide_related │ ├── hide_related.js │ └── hide_related.json ├── hide_reputation │ ├── hide_reputation.js │ └── hide_reputation.json ├── hide_sidebar │ ├── hide_sidebar.js │ └── hide_sidebar.json ├── hide_thumbs │ ├── hide_thumbs.js │ └── hide_thumbs.json ├── hide_upvotes │ ├── hide_upvotes.js │ └── hide_upvotes.json ├── hover_indicator │ ├── hover_indicator.js │ └── hover_indicator.json ├── improved_collapsible_comments │ ├── improved_collapsible_comments.js │ └── improved_collapsible_comments.json ├── kbin_federation_awareness │ ├── kbin_federation_awareness.js │ └── kbin_federation_awareness.json ├── mag_instance_names │ ├── mag_instance_names.js │ └── mag_instance_names.json ├── mail │ ├── mail.js │ └── mail.json ├── mobile_cleanup │ ├── mobile_cleanup.js │ └── mobile_cleanup.json ├── move_federation_warning │ ├── move_federation_warning.js │ └── move_federation_warning.json ├── nav_icons │ ├── nav_icons.js │ └── nav_icons.json ├── notifications_panel │ ├── notifications_panel.js │ └── notifications_panel.json ├── omni │ ├── omni.js │ └── omni.json ├── rearrange │ ├── rearrange.js │ └── rearrange.json ├── remove_ads │ ├── remove_ads.js │ └── remove_ads.json ├── report_bug │ ├── report_bug.js │ └── report_bug.json ├── resize_text │ ├── resize_text.js │ └── resize_text.json ├── softblock │ ├── softblock.js │ └── softblock.json ├── submission_label │ ├── submission_label.js │ └── submission_label.json ├── subs │ ├── subs.js │ └── subs.json ├── suppress_cover │ ├── suppress_cover.js │ └── suppress_cover.json ├── thread_checkmarks │ ├── thread_checkmarks.js │ └── thread_checkmarks.json ├── thread_delta │ ├── thread_delta.js │ └── thread_delta.json ├── thread_separator │ ├── thread_separator.js │ └── thread_separator.json ├── timestamp │ ├── timestamp.js │ └── timestamp.json ├── unblur │ ├── unblur.js │ └── unblur.json └── user_instance_names │ ├── user_instance_names.js │ └── user_instance_names.json ├── pre-commit └── tests ├── branch-name ├── changelog ├── dangling-newline ├── funcs ├── js-lint ├── json-validate ├── missing-manifest ├── pages ├── reserved-keys └── same-name /.eslintignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: aclist 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/mod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/.github/ISSUE_TEMPLATE/mod.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/README.md -------------------------------------------------------------------------------- /TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/TESTS.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 5.0.0-beta.13 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/patch-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/patch-1.sh -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /docs/source/_static/schemas/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/schemas/checkbox.json -------------------------------------------------------------------------------- /docs/source/_static/schemas/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/schemas/color.json -------------------------------------------------------------------------------- /docs/source/_static/schemas/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/schemas/manifest.json -------------------------------------------------------------------------------- /docs/source/_static/schemas/number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/schemas/number.json -------------------------------------------------------------------------------- /docs/source/_static/schemas/radio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/schemas/radio.json -------------------------------------------------------------------------------- /docs/source/_static/schemas/range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/schemas/range.json -------------------------------------------------------------------------------- /docs/source/_static/schemas/select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/schemas/select.json -------------------------------------------------------------------------------- /docs/source/_static/schemas/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/_static/schemas/text.json -------------------------------------------------------------------------------- /docs/source/bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/bugs.rst -------------------------------------------------------------------------------- /docs/source/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/build.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/debug.rst -------------------------------------------------------------------------------- /docs/source/enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/enums.rst -------------------------------------------------------------------------------- /docs/source/funcs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/funcs.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/json.rst -------------------------------------------------------------------------------- /docs/source/uninstallation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/uninstallation.rst -------------------------------------------------------------------------------- /docs/source/updating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/updating.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/export -------------------------------------------------------------------------------- /helpers/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/helpers/debug.js -------------------------------------------------------------------------------- /helpers/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/helpers/enums.js -------------------------------------------------------------------------------- /helpers/funcs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/helpers/funcs.js -------------------------------------------------------------------------------- /helpers/kes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/helpers/kes.css -------------------------------------------------------------------------------- /helpers/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/helpers/lib.js -------------------------------------------------------------------------------- /helpers/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/helpers/manifest.json -------------------------------------------------------------------------------- /helpers/safegm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/helpers/safegm.js -------------------------------------------------------------------------------- /helpers/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/helpers/ui.json -------------------------------------------------------------------------------- /images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/images/checkmark.png -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/images/example.png -------------------------------------------------------------------------------- /images/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/images/example2.png -------------------------------------------------------------------------------- /images/kbin-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/images/kbin-mini.svg -------------------------------------------------------------------------------- /images/kbin_logo_kibby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/images/kbin_logo_kibby.svg -------------------------------------------------------------------------------- /images/kibby-mini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/images/kibby-mini.svg -------------------------------------------------------------------------------- /images/omnibar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/images/omnibar.png -------------------------------------------------------------------------------- /kes.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/kes.user.js -------------------------------------------------------------------------------- /mods/adjust/adjust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/adjust/adjust.js -------------------------------------------------------------------------------- /mods/adjust/adjust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/adjust/adjust.json -------------------------------------------------------------------------------- /mods/alpha_sort_subs/alpha_sort_subs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/alpha_sort_subs/alpha_sort_subs.js -------------------------------------------------------------------------------- /mods/alpha_sort_subs/alpha_sort_subs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/alpha_sort_subs/alpha_sort_subs.json -------------------------------------------------------------------------------- /mods/always_more/always_more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/always_more/always_more.js -------------------------------------------------------------------------------- /mods/always_more/always_more.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/always_more/always_more.json -------------------------------------------------------------------------------- /mods/clarify_recipient/clarify_recipient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/clarify_recipient/clarify_recipient.js -------------------------------------------------------------------------------- /mods/clarify_recipient/clarify_recipient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/clarify_recipient/clarify_recipient.json -------------------------------------------------------------------------------- /mods/code_highlighting/code_highlighting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/code_highlighting/code_highlighting.js -------------------------------------------------------------------------------- /mods/code_highlighting/code_highlighting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/code_highlighting/code_highlighting.json -------------------------------------------------------------------------------- /mods/collapse_pins/collapse_pins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/collapse_pins/collapse_pins.js -------------------------------------------------------------------------------- /mods/collapse_pins/collapse_pins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/collapse_pins/collapse_pins.json -------------------------------------------------------------------------------- /mods/default_sort/default_sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/default_sort/default_sort.js -------------------------------------------------------------------------------- /mods/default_sort/default_sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/default_sort/default_sort.json -------------------------------------------------------------------------------- /mods/dropdown/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/dropdown/dropdown.js -------------------------------------------------------------------------------- /mods/dropdown/dropdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/dropdown/dropdown.json -------------------------------------------------------------------------------- /mods/easy_emoticon/easy_emoticon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/easy_emoticon/easy_emoticon.js -------------------------------------------------------------------------------- /mods/easy_emoticon/easy_emoticon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/easy_emoticon/easy_emoticon.json -------------------------------------------------------------------------------- /mods/expand_posts/expand_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/expand_posts/expand_posts.js -------------------------------------------------------------------------------- /mods/expand_posts/expand_posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/expand_posts/expand_posts.json -------------------------------------------------------------------------------- /mods/hide_downvotes/hide_downvotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_downvotes/hide_downvotes.js -------------------------------------------------------------------------------- /mods/hide_downvotes/hide_downvotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_downvotes/hide_downvotes.json -------------------------------------------------------------------------------- /mods/hide_logo/hide_logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_logo/hide_logo.js -------------------------------------------------------------------------------- /mods/hide_logo/hide_logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_logo/hide_logo.json -------------------------------------------------------------------------------- /mods/hide_posts/hide_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_posts/hide_posts.js -------------------------------------------------------------------------------- /mods/hide_posts/hide_posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_posts/hide_posts.json -------------------------------------------------------------------------------- /mods/hide_related/hide_related.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_related/hide_related.js -------------------------------------------------------------------------------- /mods/hide_related/hide_related.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_related/hide_related.json -------------------------------------------------------------------------------- /mods/hide_reputation/hide_reputation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_reputation/hide_reputation.js -------------------------------------------------------------------------------- /mods/hide_reputation/hide_reputation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_reputation/hide_reputation.json -------------------------------------------------------------------------------- /mods/hide_sidebar/hide_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_sidebar/hide_sidebar.js -------------------------------------------------------------------------------- /mods/hide_sidebar/hide_sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_sidebar/hide_sidebar.json -------------------------------------------------------------------------------- /mods/hide_thumbs/hide_thumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_thumbs/hide_thumbs.js -------------------------------------------------------------------------------- /mods/hide_thumbs/hide_thumbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_thumbs/hide_thumbs.json -------------------------------------------------------------------------------- /mods/hide_upvotes/hide_upvotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_upvotes/hide_upvotes.js -------------------------------------------------------------------------------- /mods/hide_upvotes/hide_upvotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hide_upvotes/hide_upvotes.json -------------------------------------------------------------------------------- /mods/hover_indicator/hover_indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hover_indicator/hover_indicator.js -------------------------------------------------------------------------------- /mods/hover_indicator/hover_indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/hover_indicator/hover_indicator.json -------------------------------------------------------------------------------- /mods/improved_collapsible_comments/improved_collapsible_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/improved_collapsible_comments/improved_collapsible_comments.js -------------------------------------------------------------------------------- /mods/improved_collapsible_comments/improved_collapsible_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/improved_collapsible_comments/improved_collapsible_comments.json -------------------------------------------------------------------------------- /mods/kbin_federation_awareness/kbin_federation_awareness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/kbin_federation_awareness/kbin_federation_awareness.js -------------------------------------------------------------------------------- /mods/kbin_federation_awareness/kbin_federation_awareness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/kbin_federation_awareness/kbin_federation_awareness.json -------------------------------------------------------------------------------- /mods/mag_instance_names/mag_instance_names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/mag_instance_names/mag_instance_names.js -------------------------------------------------------------------------------- /mods/mag_instance_names/mag_instance_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/mag_instance_names/mag_instance_names.json -------------------------------------------------------------------------------- /mods/mail/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/mail/mail.js -------------------------------------------------------------------------------- /mods/mail/mail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/mail/mail.json -------------------------------------------------------------------------------- /mods/mobile_cleanup/mobile_cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/mobile_cleanup/mobile_cleanup.js -------------------------------------------------------------------------------- /mods/mobile_cleanup/mobile_cleanup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/mobile_cleanup/mobile_cleanup.json -------------------------------------------------------------------------------- /mods/move_federation_warning/move_federation_warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/move_federation_warning/move_federation_warning.js -------------------------------------------------------------------------------- /mods/move_federation_warning/move_federation_warning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/move_federation_warning/move_federation_warning.json -------------------------------------------------------------------------------- /mods/nav_icons/nav_icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/nav_icons/nav_icons.js -------------------------------------------------------------------------------- /mods/nav_icons/nav_icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/nav_icons/nav_icons.json -------------------------------------------------------------------------------- /mods/notifications_panel/notifications_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/notifications_panel/notifications_panel.js -------------------------------------------------------------------------------- /mods/notifications_panel/notifications_panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/notifications_panel/notifications_panel.json -------------------------------------------------------------------------------- /mods/omni/omni.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/omni/omni.js -------------------------------------------------------------------------------- /mods/omni/omni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/omni/omni.json -------------------------------------------------------------------------------- /mods/rearrange/rearrange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/rearrange/rearrange.js -------------------------------------------------------------------------------- /mods/rearrange/rearrange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/rearrange/rearrange.json -------------------------------------------------------------------------------- /mods/remove_ads/remove_ads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/remove_ads/remove_ads.js -------------------------------------------------------------------------------- /mods/remove_ads/remove_ads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/remove_ads/remove_ads.json -------------------------------------------------------------------------------- /mods/report_bug/report_bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/report_bug/report_bug.js -------------------------------------------------------------------------------- /mods/report_bug/report_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/report_bug/report_bug.json -------------------------------------------------------------------------------- /mods/resize_text/resize_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/resize_text/resize_text.js -------------------------------------------------------------------------------- /mods/resize_text/resize_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/resize_text/resize_text.json -------------------------------------------------------------------------------- /mods/softblock/softblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/softblock/softblock.js -------------------------------------------------------------------------------- /mods/softblock/softblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/softblock/softblock.json -------------------------------------------------------------------------------- /mods/submission_label/submission_label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/submission_label/submission_label.js -------------------------------------------------------------------------------- /mods/submission_label/submission_label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/submission_label/submission_label.json -------------------------------------------------------------------------------- /mods/subs/subs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/subs/subs.js -------------------------------------------------------------------------------- /mods/subs/subs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/subs/subs.json -------------------------------------------------------------------------------- /mods/suppress_cover/suppress_cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/suppress_cover/suppress_cover.js -------------------------------------------------------------------------------- /mods/suppress_cover/suppress_cover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/suppress_cover/suppress_cover.json -------------------------------------------------------------------------------- /mods/thread_checkmarks/thread_checkmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/thread_checkmarks/thread_checkmarks.js -------------------------------------------------------------------------------- /mods/thread_checkmarks/thread_checkmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/thread_checkmarks/thread_checkmarks.json -------------------------------------------------------------------------------- /mods/thread_delta/thread_delta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/thread_delta/thread_delta.js -------------------------------------------------------------------------------- /mods/thread_delta/thread_delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/thread_delta/thread_delta.json -------------------------------------------------------------------------------- /mods/thread_separator/thread_separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/thread_separator/thread_separator.js -------------------------------------------------------------------------------- /mods/thread_separator/thread_separator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/thread_separator/thread_separator.json -------------------------------------------------------------------------------- /mods/timestamp/timestamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/timestamp/timestamp.js -------------------------------------------------------------------------------- /mods/timestamp/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/timestamp/timestamp.json -------------------------------------------------------------------------------- /mods/unblur/unblur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/unblur/unblur.js -------------------------------------------------------------------------------- /mods/unblur/unblur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/unblur/unblur.json -------------------------------------------------------------------------------- /mods/user_instance_names/user_instance_names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/user_instance_names/user_instance_names.js -------------------------------------------------------------------------------- /mods/user_instance_names/user_instance_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/mods/user_instance_names/user_instance_names.json -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/pre-commit -------------------------------------------------------------------------------- /tests/branch-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/branch-name -------------------------------------------------------------------------------- /tests/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/changelog -------------------------------------------------------------------------------- /tests/dangling-newline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/dangling-newline -------------------------------------------------------------------------------- /tests/funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/funcs -------------------------------------------------------------------------------- /tests/js-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/js-lint -------------------------------------------------------------------------------- /tests/json-validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/json-validate -------------------------------------------------------------------------------- /tests/missing-manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/missing-manifest -------------------------------------------------------------------------------- /tests/pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/pages -------------------------------------------------------------------------------- /tests/reserved-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/reserved-keys -------------------------------------------------------------------------------- /tests/same-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aclist/kbin-kes/HEAD/tests/same-name --------------------------------------------------------------------------------