├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation_issue.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── preview.yml │ ├── publish.yml │ ├── release-notes.yml │ ├── stale.yml │ └── web-ext.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── README.md ├── github-opengraph.png ├── icon.xcf ├── screenshots │ ├── Chrome │ │ ├── chrome-extension___jepjlhpnlhlmegaonofngjaoahkhmbaa_browser_action_popup.html.png │ │ ├── unnamed (1).jpg │ │ ├── unnamed.jpg │ │ ├── www.tumblr.com_blog_view_invalidcards(Chrome Web Store).png │ │ └── www.tumblr.com_dashboard(Chrome Web Store).png │ └── Firefox │ │ ├── Screenshot 2022-03-21 at 10.10.42 am.png │ │ ├── Screenshot 2022-03-21 at 10.13.48 am.png │ │ ├── Screenshot 2022-03-21 at 10.22.10 am.png │ │ └── Screenshot 2022-03-21 at 10.26.53 am.png └── tile.fig ├── dev ├── copy-libs.sh └── release-notes.sh ├── docs ├── Chapter 1 - Introduction.md ├── Chapter 2 - Getting started.md ├── Chapter 3 - Repository structure.md ├── Chapter 4.0 - Feature framework.md ├── Chapter 4.1 - Feature metadata.md ├── Chapter 4.2 - Feature modules.md └── README.md ├── eslint.config.js ├── package.json ├── renovate.json └── src ├── action ├── backup.css ├── components │ ├── index.js │ └── xkit-feature │ │ ├── index.css │ │ └── index.js ├── configuration.css ├── links.css ├── popup.css ├── popup.html ├── popup.js ├── render_backup.js ├── render_features.js └── resize_frames.js ├── content_scripts ├── control_buttons.css ├── main.js ├── meatballs.css ├── modals.css ├── notifications.css ├── post_actions.css └── sidebar.css ├── features ├── accesskit │ ├── blue_links.js │ ├── boring_tag_chiclets.js │ ├── disable_animations.js │ ├── disable_gifs.js │ ├── feature.json │ ├── index.css │ ├── index.js │ ├── no_user_colours.js │ ├── no_user_fonts.js │ ├── normal_width_scrollbar.js │ └── visible_alt_text.js ├── anti_capitalism │ ├── feature.json │ └── index.js ├── classic_footer │ ├── feature.json │ └── index.js ├── classic_search │ ├── feature.json │ ├── index.css │ └── index.js ├── cleanfeed │ ├── feature.json │ └── index.js ├── collapsed_queue │ ├── feature.json │ ├── index.css │ └── index.js ├── hide_avatars │ ├── feature.json │ └── index.js ├── index.json ├── limit_checker │ ├── feature.json │ └── index.js ├── mass_deleter │ ├── feature.json │ └── index.js ├── mass_privater │ ├── feature.json │ └── index.js ├── mass_unliker │ ├── feature.json │ └── index.js ├── mirror_posts │ ├── feature.json │ └── index.js ├── mutual_checker │ ├── feature.json │ └── index.js ├── no_recommended │ ├── feature.json │ ├── hide_answertime.js │ ├── hide_blog_carousels.js │ ├── hide_community_carousels.js │ ├── hide_lightbox_related.js │ ├── hide_radar.js │ ├── hide_recommended_blogs.js │ ├── hide_recommended_blogs_modal.js │ ├── hide_recommended_community_posts.js │ ├── hide_recommended_posts.js │ ├── hide_search_communities.js │ ├── hide_tag_carousels.js │ └── index.js ├── notificationblock │ ├── feature.json │ └── index.js ├── open_in_tabs │ ├── feature.json │ └── index.js ├── painter │ ├── feature.json │ └── index.js ├── panorama │ ├── feature.json │ └── index.js ├── postblock │ ├── feature.json │ ├── index.css │ ├── index.js │ └── options │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── quick_reblog │ ├── feature.json │ ├── index.css │ └── index.js ├── quick_tags │ ├── feature.json │ ├── index.css │ ├── index.js │ └── options │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── quote_replies │ ├── feature.json │ └── index.js ├── scroll_to_bottom │ ├── feature.json │ └── index.js ├── seen_posts │ ├── feature.json │ ├── index.css │ └── index.js ├── shorten_posts │ ├── feature.json │ ├── index.css │ └── index.js ├── show_originals │ ├── feature.json │ ├── index.css │ └── index.js ├── tag_replacer │ ├── feature.json │ └── index.js ├── tag_tracking_plus │ ├── feature.json │ ├── index.css │ └── index.js ├── themed_posts │ ├── feature.json │ └── index.js ├── timeformat │ ├── feature.json │ └── index.js ├── timestamps │ ├── feature.json │ ├── index.css │ └── index.js ├── trim_reblogs │ ├── feature.json │ ├── index.css │ └── index.js ├── tweaks │ ├── caught_up_line.js │ ├── create_button_no_bubbles.js │ ├── feature.json │ ├── hide_activity_mutuals.js │ ├── hide_activity_notification_badge.js │ ├── hide_blocked_blogs.js │ ├── hide_communities_notification_badge.js │ ├── hide_filtered_posts.js │ ├── hide_follower_counts.js │ ├── hide_following_notification_badge.js │ ├── hide_footer_tooltips.js │ ├── hide_liked_posts.js │ ├── hide_mini_follow.js │ ├── hide_my_posts.js │ ├── hide_new_posts_indicator.js │ ├── highlight_contributed_content.js │ ├── index.js │ ├── no_focus_shadow.js │ ├── restore_attribution_links.js │ ├── show_all_tags.js │ ├── slim_filtered_screens.js │ ├── subtle_activity_mutuals.js │ └── unsticky_tab_bar.js ├── vanilla_audio │ ├── feature.json │ ├── index.css │ └── index.js └── vanilla_video │ ├── feature.json │ ├── index.css │ └── index.js ├── icons ├── 128.png ├── 16.png ├── 32.png ├── 48.png ├── 64.png └── 96.png ├── lib ├── browser-polyfill.min.js ├── jquery.min.js ├── moment.js ├── normalize.min.css ├── remixicon │ ├── remixicon.css │ ├── remixicon.eot │ ├── remixicon.svg │ ├── remixicon.symbol.svg │ ├── remixicon.ttf │ ├── remixicon.woff │ └── remixicon.woff2 ├── sortable.esm.js ├── spectrum.css ├── spectrum.js └── toggle-button.css ├── main_world ├── api_fetch.js ├── control_tags_input.js ├── css_map.js ├── get_notification_props.js ├── get_tumblelogname_prop.js ├── index.js ├── language_data.js ├── navigate.js ├── post_request.js ├── test_header_element.js ├── unbury_blog.js ├── unbury_mobile_badge_data.js ├── unbury_notification.js ├── unbury_timeline_object.js └── unbury_trail_item.js ├── manifest.json └── utils ├── control_buttons.js ├── crypto.js ├── css_map.js ├── dom.js ├── inject.js ├── interface.js ├── language_data.js ├── meatballs.js ├── mega_editor.js ├── memoize.js ├── mobile_menu_badge_hide.js ├── modals.js ├── mutations.js ├── notifications.js ├── post_actions.js ├── post_popovers.js ├── preferences.js ├── react_props.js ├── remixicon.js ├── sidebar.js ├── timeline_id.js ├── tumblr_helpers.js └── user.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: AprilSylph 2 | ko_fi: codegirl 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/ISSUE_TEMPLATE/documentation_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/web-ext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/.github/workflows/web-ext.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/github-opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/github-opengraph.png -------------------------------------------------------------------------------- /assets/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/icon.xcf -------------------------------------------------------------------------------- /assets/screenshots/Chrome/chrome-extension___jepjlhpnlhlmegaonofngjaoahkhmbaa_browser_action_popup.html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Chrome/chrome-extension___jepjlhpnlhlmegaonofngjaoahkhmbaa_browser_action_popup.html.png -------------------------------------------------------------------------------- /assets/screenshots/Chrome/unnamed (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Chrome/unnamed (1).jpg -------------------------------------------------------------------------------- /assets/screenshots/Chrome/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Chrome/unnamed.jpg -------------------------------------------------------------------------------- /assets/screenshots/Chrome/www.tumblr.com_blog_view_invalidcards(Chrome Web Store).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Chrome/www.tumblr.com_blog_view_invalidcards(Chrome Web Store).png -------------------------------------------------------------------------------- /assets/screenshots/Chrome/www.tumblr.com_dashboard(Chrome Web Store).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Chrome/www.tumblr.com_dashboard(Chrome Web Store).png -------------------------------------------------------------------------------- /assets/screenshots/Firefox/Screenshot 2022-03-21 at 10.10.42 am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Firefox/Screenshot 2022-03-21 at 10.10.42 am.png -------------------------------------------------------------------------------- /assets/screenshots/Firefox/Screenshot 2022-03-21 at 10.13.48 am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Firefox/Screenshot 2022-03-21 at 10.13.48 am.png -------------------------------------------------------------------------------- /assets/screenshots/Firefox/Screenshot 2022-03-21 at 10.22.10 am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Firefox/Screenshot 2022-03-21 at 10.22.10 am.png -------------------------------------------------------------------------------- /assets/screenshots/Firefox/Screenshot 2022-03-21 at 10.26.53 am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/screenshots/Firefox/Screenshot 2022-03-21 at 10.26.53 am.png -------------------------------------------------------------------------------- /assets/tile.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/assets/tile.fig -------------------------------------------------------------------------------- /dev/copy-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/dev/copy-libs.sh -------------------------------------------------------------------------------- /dev/release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/dev/release-notes.sh -------------------------------------------------------------------------------- /docs/Chapter 1 - Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/docs/Chapter 1 - Introduction.md -------------------------------------------------------------------------------- /docs/Chapter 2 - Getting started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/docs/Chapter 2 - Getting started.md -------------------------------------------------------------------------------- /docs/Chapter 3 - Repository structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/docs/Chapter 3 - Repository structure.md -------------------------------------------------------------------------------- /docs/Chapter 4.0 - Feature framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/docs/Chapter 4.0 - Feature framework.md -------------------------------------------------------------------------------- /docs/Chapter 4.1 - Feature metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/docs/Chapter 4.1 - Feature metadata.md -------------------------------------------------------------------------------- /docs/Chapter 4.2 - Feature modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/docs/Chapter 4.2 - Feature modules.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/docs/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/renovate.json -------------------------------------------------------------------------------- /src/action/backup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/backup.css -------------------------------------------------------------------------------- /src/action/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/components/index.js -------------------------------------------------------------------------------- /src/action/components/xkit-feature/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/components/xkit-feature/index.css -------------------------------------------------------------------------------- /src/action/components/xkit-feature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/components/xkit-feature/index.js -------------------------------------------------------------------------------- /src/action/configuration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/configuration.css -------------------------------------------------------------------------------- /src/action/links.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/links.css -------------------------------------------------------------------------------- /src/action/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/popup.css -------------------------------------------------------------------------------- /src/action/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/popup.html -------------------------------------------------------------------------------- /src/action/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/popup.js -------------------------------------------------------------------------------- /src/action/render_backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/render_backup.js -------------------------------------------------------------------------------- /src/action/render_features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/render_features.js -------------------------------------------------------------------------------- /src/action/resize_frames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/action/resize_frames.js -------------------------------------------------------------------------------- /src/content_scripts/control_buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/content_scripts/control_buttons.css -------------------------------------------------------------------------------- /src/content_scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/content_scripts/main.js -------------------------------------------------------------------------------- /src/content_scripts/meatballs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/content_scripts/meatballs.css -------------------------------------------------------------------------------- /src/content_scripts/modals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/content_scripts/modals.css -------------------------------------------------------------------------------- /src/content_scripts/notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/content_scripts/notifications.css -------------------------------------------------------------------------------- /src/content_scripts/post_actions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/content_scripts/post_actions.css -------------------------------------------------------------------------------- /src/content_scripts/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/content_scripts/sidebar.css -------------------------------------------------------------------------------- /src/features/accesskit/blue_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/blue_links.js -------------------------------------------------------------------------------- /src/features/accesskit/boring_tag_chiclets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/boring_tag_chiclets.js -------------------------------------------------------------------------------- /src/features/accesskit/disable_animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/disable_animations.js -------------------------------------------------------------------------------- /src/features/accesskit/disable_gifs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/disable_gifs.js -------------------------------------------------------------------------------- /src/features/accesskit/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/feature.json -------------------------------------------------------------------------------- /src/features/accesskit/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/index.css -------------------------------------------------------------------------------- /src/features/accesskit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/index.js -------------------------------------------------------------------------------- /src/features/accesskit/no_user_colours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/no_user_colours.js -------------------------------------------------------------------------------- /src/features/accesskit/no_user_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/no_user_fonts.js -------------------------------------------------------------------------------- /src/features/accesskit/normal_width_scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/normal_width_scrollbar.js -------------------------------------------------------------------------------- /src/features/accesskit/visible_alt_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/accesskit/visible_alt_text.js -------------------------------------------------------------------------------- /src/features/anti_capitalism/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/anti_capitalism/feature.json -------------------------------------------------------------------------------- /src/features/anti_capitalism/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/anti_capitalism/index.js -------------------------------------------------------------------------------- /src/features/classic_footer/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/classic_footer/feature.json -------------------------------------------------------------------------------- /src/features/classic_footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/classic_footer/index.js -------------------------------------------------------------------------------- /src/features/classic_search/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/classic_search/feature.json -------------------------------------------------------------------------------- /src/features/classic_search/index.css: -------------------------------------------------------------------------------- 1 | form.classic-search + form { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/features/classic_search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/classic_search/index.js -------------------------------------------------------------------------------- /src/features/cleanfeed/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/cleanfeed/feature.json -------------------------------------------------------------------------------- /src/features/cleanfeed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/cleanfeed/index.js -------------------------------------------------------------------------------- /src/features/collapsed_queue/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/collapsed_queue/feature.json -------------------------------------------------------------------------------- /src/features/collapsed_queue/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/collapsed_queue/index.css -------------------------------------------------------------------------------- /src/features/collapsed_queue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/collapsed_queue/index.js -------------------------------------------------------------------------------- /src/features/hide_avatars/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/hide_avatars/feature.json -------------------------------------------------------------------------------- /src/features/hide_avatars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/hide_avatars/index.js -------------------------------------------------------------------------------- /src/features/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/index.json -------------------------------------------------------------------------------- /src/features/limit_checker/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/limit_checker/feature.json -------------------------------------------------------------------------------- /src/features/limit_checker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/limit_checker/index.js -------------------------------------------------------------------------------- /src/features/mass_deleter/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mass_deleter/feature.json -------------------------------------------------------------------------------- /src/features/mass_deleter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mass_deleter/index.js -------------------------------------------------------------------------------- /src/features/mass_privater/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mass_privater/feature.json -------------------------------------------------------------------------------- /src/features/mass_privater/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mass_privater/index.js -------------------------------------------------------------------------------- /src/features/mass_unliker/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mass_unliker/feature.json -------------------------------------------------------------------------------- /src/features/mass_unliker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mass_unliker/index.js -------------------------------------------------------------------------------- /src/features/mirror_posts/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mirror_posts/feature.json -------------------------------------------------------------------------------- /src/features/mirror_posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mirror_posts/index.js -------------------------------------------------------------------------------- /src/features/mutual_checker/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mutual_checker/feature.json -------------------------------------------------------------------------------- /src/features/mutual_checker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/mutual_checker/index.js -------------------------------------------------------------------------------- /src/features/no_recommended/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/feature.json -------------------------------------------------------------------------------- /src/features/no_recommended/hide_answertime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_answertime.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_blog_carousels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_blog_carousels.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_community_carousels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_community_carousels.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_lightbox_related.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_lightbox_related.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_radar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_radar.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_recommended_blogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_recommended_blogs.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_recommended_blogs_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_recommended_blogs_modal.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_recommended_community_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_recommended_community_posts.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_recommended_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_recommended_posts.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_search_communities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_search_communities.js -------------------------------------------------------------------------------- /src/features/no_recommended/hide_tag_carousels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/hide_tag_carousels.js -------------------------------------------------------------------------------- /src/features/no_recommended/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/no_recommended/index.js -------------------------------------------------------------------------------- /src/features/notificationblock/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/notificationblock/feature.json -------------------------------------------------------------------------------- /src/features/notificationblock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/notificationblock/index.js -------------------------------------------------------------------------------- /src/features/open_in_tabs/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/open_in_tabs/feature.json -------------------------------------------------------------------------------- /src/features/open_in_tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/open_in_tabs/index.js -------------------------------------------------------------------------------- /src/features/painter/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/painter/feature.json -------------------------------------------------------------------------------- /src/features/painter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/painter/index.js -------------------------------------------------------------------------------- /src/features/panorama/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/panorama/feature.json -------------------------------------------------------------------------------- /src/features/panorama/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/panorama/index.js -------------------------------------------------------------------------------- /src/features/postblock/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/postblock/feature.json -------------------------------------------------------------------------------- /src/features/postblock/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/postblock/index.css -------------------------------------------------------------------------------- /src/features/postblock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/postblock/index.js -------------------------------------------------------------------------------- /src/features/postblock/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/postblock/options/index.css -------------------------------------------------------------------------------- /src/features/postblock/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/postblock/options/index.html -------------------------------------------------------------------------------- /src/features/postblock/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/postblock/options/index.js -------------------------------------------------------------------------------- /src/features/quick_reblog/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_reblog/feature.json -------------------------------------------------------------------------------- /src/features/quick_reblog/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_reblog/index.css -------------------------------------------------------------------------------- /src/features/quick_reblog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_reblog/index.js -------------------------------------------------------------------------------- /src/features/quick_tags/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_tags/feature.json -------------------------------------------------------------------------------- /src/features/quick_tags/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_tags/index.css -------------------------------------------------------------------------------- /src/features/quick_tags/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_tags/index.js -------------------------------------------------------------------------------- /src/features/quick_tags/options/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_tags/options/index.css -------------------------------------------------------------------------------- /src/features/quick_tags/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_tags/options/index.html -------------------------------------------------------------------------------- /src/features/quick_tags/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quick_tags/options/index.js -------------------------------------------------------------------------------- /src/features/quote_replies/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quote_replies/feature.json -------------------------------------------------------------------------------- /src/features/quote_replies/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/quote_replies/index.js -------------------------------------------------------------------------------- /src/features/scroll_to_bottom/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/scroll_to_bottom/feature.json -------------------------------------------------------------------------------- /src/features/scroll_to_bottom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/scroll_to_bottom/index.js -------------------------------------------------------------------------------- /src/features/seen_posts/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/seen_posts/feature.json -------------------------------------------------------------------------------- /src/features/seen_posts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/seen_posts/index.css -------------------------------------------------------------------------------- /src/features/seen_posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/seen_posts/index.js -------------------------------------------------------------------------------- /src/features/shorten_posts/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/shorten_posts/feature.json -------------------------------------------------------------------------------- /src/features/shorten_posts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/shorten_posts/index.css -------------------------------------------------------------------------------- /src/features/shorten_posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/shorten_posts/index.js -------------------------------------------------------------------------------- /src/features/show_originals/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/show_originals/feature.json -------------------------------------------------------------------------------- /src/features/show_originals/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/show_originals/index.css -------------------------------------------------------------------------------- /src/features/show_originals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/show_originals/index.js -------------------------------------------------------------------------------- /src/features/tag_replacer/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tag_replacer/feature.json -------------------------------------------------------------------------------- /src/features/tag_replacer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tag_replacer/index.js -------------------------------------------------------------------------------- /src/features/tag_tracking_plus/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tag_tracking_plus/feature.json -------------------------------------------------------------------------------- /src/features/tag_tracking_plus/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tag_tracking_plus/index.css -------------------------------------------------------------------------------- /src/features/tag_tracking_plus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tag_tracking_plus/index.js -------------------------------------------------------------------------------- /src/features/themed_posts/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/themed_posts/feature.json -------------------------------------------------------------------------------- /src/features/themed_posts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/themed_posts/index.js -------------------------------------------------------------------------------- /src/features/timeformat/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/timeformat/feature.json -------------------------------------------------------------------------------- /src/features/timeformat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/timeformat/index.js -------------------------------------------------------------------------------- /src/features/timestamps/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/timestamps/feature.json -------------------------------------------------------------------------------- /src/features/timestamps/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/timestamps/index.css -------------------------------------------------------------------------------- /src/features/timestamps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/timestamps/index.js -------------------------------------------------------------------------------- /src/features/trim_reblogs/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/trim_reblogs/feature.json -------------------------------------------------------------------------------- /src/features/trim_reblogs/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/trim_reblogs/index.css -------------------------------------------------------------------------------- /src/features/trim_reblogs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/trim_reblogs/index.js -------------------------------------------------------------------------------- /src/features/tweaks/caught_up_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/caught_up_line.js -------------------------------------------------------------------------------- /src/features/tweaks/create_button_no_bubbles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/create_button_no_bubbles.js -------------------------------------------------------------------------------- /src/features/tweaks/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/feature.json -------------------------------------------------------------------------------- /src/features/tweaks/hide_activity_mutuals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_activity_mutuals.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_activity_notification_badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_activity_notification_badge.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_blocked_blogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_blocked_blogs.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_communities_notification_badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_communities_notification_badge.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_filtered_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_filtered_posts.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_follower_counts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_follower_counts.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_following_notification_badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_following_notification_badge.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_footer_tooltips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_footer_tooltips.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_liked_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_liked_posts.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_mini_follow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_mini_follow.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_my_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_my_posts.js -------------------------------------------------------------------------------- /src/features/tweaks/hide_new_posts_indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/hide_new_posts_indicator.js -------------------------------------------------------------------------------- /src/features/tweaks/highlight_contributed_content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/highlight_contributed_content.js -------------------------------------------------------------------------------- /src/features/tweaks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/index.js -------------------------------------------------------------------------------- /src/features/tweaks/no_focus_shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/no_focus_shadow.js -------------------------------------------------------------------------------- /src/features/tweaks/restore_attribution_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/restore_attribution_links.js -------------------------------------------------------------------------------- /src/features/tweaks/show_all_tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/show_all_tags.js -------------------------------------------------------------------------------- /src/features/tweaks/slim_filtered_screens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/slim_filtered_screens.js -------------------------------------------------------------------------------- /src/features/tweaks/subtle_activity_mutuals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/subtle_activity_mutuals.js -------------------------------------------------------------------------------- /src/features/tweaks/unsticky_tab_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/tweaks/unsticky_tab_bar.js -------------------------------------------------------------------------------- /src/features/vanilla_audio/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/vanilla_audio/feature.json -------------------------------------------------------------------------------- /src/features/vanilla_audio/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/vanilla_audio/index.css -------------------------------------------------------------------------------- /src/features/vanilla_audio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/vanilla_audio/index.js -------------------------------------------------------------------------------- /src/features/vanilla_video/feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/vanilla_video/feature.json -------------------------------------------------------------------------------- /src/features/vanilla_video/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/vanilla_video/index.css -------------------------------------------------------------------------------- /src/features/vanilla_video/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/features/vanilla_video/index.js -------------------------------------------------------------------------------- /src/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/icons/128.png -------------------------------------------------------------------------------- /src/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/icons/16.png -------------------------------------------------------------------------------- /src/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/icons/32.png -------------------------------------------------------------------------------- /src/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/icons/48.png -------------------------------------------------------------------------------- /src/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/icons/64.png -------------------------------------------------------------------------------- /src/icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/icons/96.png -------------------------------------------------------------------------------- /src/lib/browser-polyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/browser-polyfill.min.js -------------------------------------------------------------------------------- /src/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/jquery.min.js -------------------------------------------------------------------------------- /src/lib/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/moment.js -------------------------------------------------------------------------------- /src/lib/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/normalize.min.css -------------------------------------------------------------------------------- /src/lib/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/remixicon/remixicon.css -------------------------------------------------------------------------------- /src/lib/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/remixicon/remixicon.eot -------------------------------------------------------------------------------- /src/lib/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/remixicon/remixicon.svg -------------------------------------------------------------------------------- /src/lib/remixicon/remixicon.symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/remixicon/remixicon.symbol.svg -------------------------------------------------------------------------------- /src/lib/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /src/lib/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/remixicon/remixicon.woff -------------------------------------------------------------------------------- /src/lib/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /src/lib/sortable.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/sortable.esm.js -------------------------------------------------------------------------------- /src/lib/spectrum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/spectrum.css -------------------------------------------------------------------------------- /src/lib/spectrum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/spectrum.js -------------------------------------------------------------------------------- /src/lib/toggle-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/lib/toggle-button.css -------------------------------------------------------------------------------- /src/main_world/api_fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/api_fetch.js -------------------------------------------------------------------------------- /src/main_world/control_tags_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/control_tags_input.js -------------------------------------------------------------------------------- /src/main_world/css_map.js: -------------------------------------------------------------------------------- 1 | export default () => window.tumblr.getCssMap(); 2 | -------------------------------------------------------------------------------- /src/main_world/get_notification_props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/get_notification_props.js -------------------------------------------------------------------------------- /src/main_world/get_tumblelogname_prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/get_tumblelogname_prop.js -------------------------------------------------------------------------------- /src/main_world/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/index.js -------------------------------------------------------------------------------- /src/main_world/language_data.js: -------------------------------------------------------------------------------- 1 | export default () => window.tumblr.languageData; 2 | -------------------------------------------------------------------------------- /src/main_world/navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/navigate.js -------------------------------------------------------------------------------- /src/main_world/post_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/post_request.js -------------------------------------------------------------------------------- /src/main_world/test_header_element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/test_header_element.js -------------------------------------------------------------------------------- /src/main_world/unbury_blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/unbury_blog.js -------------------------------------------------------------------------------- /src/main_world/unbury_mobile_badge_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/unbury_mobile_badge_data.js -------------------------------------------------------------------------------- /src/main_world/unbury_notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/unbury_notification.js -------------------------------------------------------------------------------- /src/main_world/unbury_timeline_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/unbury_timeline_object.js -------------------------------------------------------------------------------- /src/main_world/unbury_trail_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/main_world/unbury_trail_item.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/utils/control_buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/control_buttons.js -------------------------------------------------------------------------------- /src/utils/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/crypto.js -------------------------------------------------------------------------------- /src/utils/css_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/css_map.js -------------------------------------------------------------------------------- /src/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/dom.js -------------------------------------------------------------------------------- /src/utils/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/inject.js -------------------------------------------------------------------------------- /src/utils/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/interface.js -------------------------------------------------------------------------------- /src/utils/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/language_data.js -------------------------------------------------------------------------------- /src/utils/meatballs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/meatballs.js -------------------------------------------------------------------------------- /src/utils/mega_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/mega_editor.js -------------------------------------------------------------------------------- /src/utils/memoize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/memoize.js -------------------------------------------------------------------------------- /src/utils/mobile_menu_badge_hide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/mobile_menu_badge_hide.js -------------------------------------------------------------------------------- /src/utils/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/modals.js -------------------------------------------------------------------------------- /src/utils/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/mutations.js -------------------------------------------------------------------------------- /src/utils/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/notifications.js -------------------------------------------------------------------------------- /src/utils/post_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/post_actions.js -------------------------------------------------------------------------------- /src/utils/post_popovers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/post_popovers.js -------------------------------------------------------------------------------- /src/utils/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/preferences.js -------------------------------------------------------------------------------- /src/utils/react_props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/react_props.js -------------------------------------------------------------------------------- /src/utils/remixicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/remixicon.js -------------------------------------------------------------------------------- /src/utils/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/sidebar.js -------------------------------------------------------------------------------- /src/utils/timeline_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/timeline_id.js -------------------------------------------------------------------------------- /src/utils/tumblr_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/tumblr_helpers.js -------------------------------------------------------------------------------- /src/utils/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilSylph/XKit-Rewritten/HEAD/src/utils/user.js --------------------------------------------------------------------------------