Compare commits

..

5 Commits

Author SHA1 Message Date
taskylizard
cbc86db3cf
Merge branch 'main' into feat/reddit-comments 2024-02-25 02:27:00 +00:00
taskylizard
6103e04184
Merge branch 'main' into feat/reddit-comments 2024-02-22 07:13:10 +00:00
taskylizard
fb35af8ca4
Merge branch 'main' into feat/reddit-comments 2024-02-21 19:06:00 +00:00
taskylizard
1bec2dcb18
Merge branch 'main' into feat/reddit-comments 2024-02-21 10:27:16 +00:00
taskylizard
4cd665915e
chore: init 2024-02-21 07:13:48 +00:00
68 changed files with 38729 additions and 40057 deletions

View File

@ -1,6 +1,6 @@
name: Create Issue name: Wiki
description: 'Help us improve FMHY for everyone' description: 'Help us improve FMHY for everyone'
title: '<title>' title: 'Wiki: '
body: body:
- type: markdown - type: markdown
attributes: attributes:

View File

@ -1,22 +0,0 @@
<!--- Provide a general summary of your changes in the Title above -->
## Description
<!--- Describe your changes in detail -->
## Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->
## Types of changes
<!--- What types of changes does your Pull Request introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bad / Deleted sites removal
- [ ] Grammar / Markdown fixes
- [ ] Content addition (sites, projects, tools, etc.)
- [ ] New Wiki section
## Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply to this Pull Request. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [ ] I have read the [contribution guide](https://rentry.co/Contrib-Guide).
- [ ] I have made sure to [search](https://raw.githubusercontent.com/fmhy/FMHYedit/main/single-page) before making any changes.
- [ ] My code follows the code style of this project.

View File

@ -33,7 +33,6 @@ headers = {
"Books / Comics / Manga", "Books / Comics / Manga",
"Books, Comics, Magazines, Newspapers", "Books, Comics, Magazines, Newspapers",
], ],
"gaming-tools.md": ["Gaming Tools", "Gaming Optimization, Game Launchers, Multiplayer"],
"DEVTools.md": ["Developer Tools", "Git, Hosting, App Dev, Software Dev"], "DEVTools.md": ["Developer Tools", "Git, Hosting, App Dev, Software Dev"],
"img-tools.md": ["Image Tools", "Image Editors, Generators, Compress"], "img-tools.md": ["Image Tools", "Image Editors, Generators, Compress"],
"Audio-Tools.md": [ "Audio-Tools.md": [

7
.github/labeler.yml vendored
View File

@ -1,7 +0,0 @@
# See https://github.com/actions/labeler
docs:
- '**/*.md'
core:
- '.vitepress/**'

6
.github/replace.py vendored
View File

@ -188,11 +188,7 @@ def replace_pages(text):
"/audio-tools", "/audio-tools",
text, text,
) )
text = re.sub(
"https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools",
"/gaming-tools",
text,
)
text = re.sub( text = re.sub(
"https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video", "https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video",
"/videopiracyguide", "/videopiracyguide",

View File

@ -6,9 +6,13 @@ def output():
read = glob.glob("*.md") read = glob.glob("*.md")
content = "" content = ""
nsfw_content = "" nsfw_content = ""
ignore_files = {"README.md", "feedback.md", "posts.md", "index.md"}
for file in read: for file in read:
if file not in ignore_files: if (
file != "README.md"
or file != "feedback.md"
or file != "posts.md"
or file != "index.md"
):
with open(file, "r") as f: with open(file, "r") as f:
if "NSFWPiracy.md" == file: if "NSFWPiracy.md" == file:
nsfw_content += f.read() nsfw_content += f.read()

View File

@ -1,7 +1,9 @@
name: Deploy API name: Deploy API
on: on:
workflow_dispatch: push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }} concurrency: ${{ github.workflow }}-${{ github.ref }}
@ -9,26 +11,18 @@ jobs:
ci: ci:
name: Release name: Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 6 fetch-depth: 6
- uses: pnpm/action-setup@v2.4.0
- name: Install pnpm - uses: actions/setup-node@v3
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with: with:
node-version: ${{ matrix.node-version }} node-version: 18
cache: 'pnpm' cache: 'pnpm'
- name: Install dependencies - run: pnpm install --no-frozen-lockfile
run: pnpm install
- name: Build - name: Build
run: pnpm api:build run: pnpm api:build

View File

@ -1,49 +0,0 @@
name: 'Pull Request Housekeeping'
on: [pull_request_target]
jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Label PRs
uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
auto-assign:
runs-on: ubuntu-latest
needs: triage
steps:
- name: Check if PR has 'core' label
id: check_label
uses: actions/github-script@v6
with:
script: |
const prNumber = context.payload.pull_request.number;
const { data: labels } = await github.rest.issues.listLabelsOnIssue({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
});
const hasCoreLabel = labels.some(label => label.name === 'core');
return hasCoreLabel;
- name: Auto-assign to PR
if: steps.check_label.outputs.result == 'true'
uses: actions/github-script@v6
with:
script: |
const prNumber = context.payload.pull_request.number;
await github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
assignees: ['taskylizard'],
});

View File

@ -1,3 +0,0 @@
# https://github.com/vitejs/vite/issues/17291
[tools]
node = "21"

5
.npmrc
View File

@ -1,3 +1,2 @@
package-manager-strict=false shamefully-hoist=true
shell-emulator=true strict-peer-dependencies=false
auto-install-peers=false

View File

@ -99,9 +99,7 @@ export default defineConfig({
items: [ items: [
{ text: 'Posts', link: '/posts' }, { text: 'Posts', link: '/posts' },
{ text: 'Feedback', link: '/feedback' }, { text: 'Feedback', link: '/feedback' },
{ text: 'snowbin', link: 'https://pastes.fmhy.net' }, { text: 'snowbin', link: 'https://pastes.fmhy.net' }
{ text: 'SearXNG', link: 'https://searx.fmhy.net/'},
{ text: 'Whoogle', link: 'https://whoogle.fmhy.net/'}
] ]
} }
], ],

View File

@ -14,60 +14,22 @@ export const commitRef = process.env.CF_PAGES
}">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>` }">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>`
: 'dev' : 'dev'
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>` export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>`
export const search: DefaultTheme.Config['search'] = { export const search: DefaultTheme.Config['search'] = {
options: { options: {
miniSearch: { miniSearch: {
options: {
tokenize: (text) => text.split(/[\n\r #%*,=/:;?[\]{}()&]+/u), // simplified charset: removed [-_.@] and non-english chars (diacritics etc.)
processTerm: (term, fieldName) => {
// biome-ignore lint/style/noParameterAssign: h
term = term
.trim()
.toLowerCase()
.replace(/^\.+/, '')
.replace(/\.+$/, '')
const stopWords = [
'frontmatter',
'$frontmatter.synopsis',
'and',
'about',
'but',
'now',
'the',
'with',
'you'
]
if (term.length < 2 || stopWords.includes(term)) return false
if (fieldName === 'text') {
const parts = term.split('.')
if (parts.length > 1) {
const newTerms = [term, ...parts]
.filter((t) => t.length >= 2)
.filter((t) => !stopWords.includes(t))
return newTerms
}
}
return term
}
},
searchOptions: { searchOptions: {
combineWith: 'AND', combineWith: 'AND',
fuzzy: true, fuzzy: false,
// @ts-ignore
boostDocument: ( boostDocument: (
documentId, _,
term, term,
storedFields: Record<string, string | string[]> storedFields: Record<string, string | string[]>
) => { ) => {
const titles = (storedFields?.titles as string[]) const titles = (storedFields?.titles as string[])
.filter((t) => Boolean(t)) .filter((t) => Boolean(t))
.map((t) => t.toLowerCase()) .map((t) => t.toLowerCase())
// Downrank posts
if (documentId.match(/\/posts/)) return -5
// Uprate if term appears in titles. Add bonus for higher levels (i.e. lower index) // Uprate if term appears in titles. Add bonus for higher levels (i.e. lower index)
const titleIndex = const titleIndex =
titles titles
@ -172,7 +134,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
}, },
{ {
text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools', text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools',
link: '/gaming-tools' link: '/gamingpiracyguide#gaming-tools'
}, },
{ {
text: '<span class="i-twemoji:camera"></span> Image Tools', text: '<span class="i-twemoji:camera"></span> Image Tools',

View File

@ -13,12 +13,12 @@ export async function generateFeed(config: SiteConfig): Promise<void> {
const feed: Feed = new Feed({ const feed: Feed = new Feed({
id: meta.hostname, id: meta.hostname,
link: meta.hostname, link: meta.hostname,
title: 'FMHY blog', title: `FMHY blog`,
description: meta.description, description: meta.description,
language: 'en-US', language: 'en-US',
image: 'https://github.com/fmhy.png', image: 'https://github.com/fmhy.png',
favicon: `${meta.hostname}/favicon.ico`, favicon: `${meta.hostname}/favicon.ico`,
copyright: 'Copyright (c) 2023-present FMHY' copyright: `Copyright (c) 2023-present FMHY`
}) })
const posts: ContentData[] = await createContentLoader('posts/*.md', { const posts: ContentData[] = await createContentLoader('posts/*.md', {

View File

@ -1,4 +1,4 @@
import type { MarkdownRenderer } from 'vitepress' import { type MarkdownRenderer } from 'vitepress'
// FIXME: tasky: possibly write less horror jank? // FIXME: tasky: possibly write less horror jank?
export function base64DecodePlugin(md: MarkdownRenderer) { export function base64DecodePlugin(md: MarkdownRenderer) {
@ -7,7 +7,7 @@ export function base64DecodePlugin(md: MarkdownRenderer) {
// Save the original rule for backticks // Save the original rule for backticks
const defaultRender = const defaultRender =
md.renderer.rules.code_inline || md.renderer.rules.code_inline ||
function (tokens, idx, options, _env, self) { function (tokens, idx, options, env, self) {
return self.renderToken(tokens, idx, options) return self.renderToken(tokens, idx, options)
} }

View File

@ -11,7 +11,8 @@ export function toggleStarredPlugin(md: MarkdownRenderer) {
contentToken.content.startsWith(':star:') contentToken.content.startsWith(':star:')
) { ) {
return `<li class="starred">` return `<li class="starred">`
} else {
return self.renderToken(tokens, index, options)
} }
return self.renderToken(tokens, index, options)
} }
} }

View File

@ -1,11 +1,6 @@
import { corsEventHandler } from 'nitro-cors' import { corsEventHandler } from 'nitro-cors'
export default corsEventHandler( export default corsEventHandler((_event) => {}, {
(_event) => { origin: '*',
/** no-op */ methods: '*'
}, })
{
origin: '*',
methods: '*'
}
)

View File

@ -0,0 +1 @@
export default defineEventHandler(async (event) => {})

View File

@ -7,14 +7,6 @@ export default defineEventHandler(async (event) => {
FeedbackSchema.parseAsync FeedbackSchema.parseAsync
) )
const env = useRuntimeConfig(event) const env = useRuntimeConfig(event)
const { pathname } = new URL(event.node.req.url)
const { success } = await env.MY_RATE_LIMITER.limit({ key: pathname })
if (!success) {
return new Response(`429 Failure rate limit exceeded for ${pathname}`, {
status: 429
})
}
let description = `${message}\n\n` let description = `${message}\n\n`
if (page) description += `**Page:** \`${page}\`` if (page) description += `**Page:** \`${page}\``

View File

@ -1,18 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, reactive } from 'vue' import { reactive, ref } from 'vue'
import {
TransitionRoot,
TransitionChild,
Dialog,
DialogPanel,
DialogTitle,
DialogDescription,
Listbox,
ListboxLabel,
ListboxButton,
ListboxOptions,
ListboxOption
} from '@headlessui/vue'
import { useRouter } from 'vitepress' import { useRouter } from 'vitepress'
import { import {
type FeedbackType, type FeedbackType,
@ -25,28 +12,16 @@ const error = ref<unknown>(null)
const success = ref<boolean>(false) const success = ref<boolean>(false)
const router = useRouter() const router = useRouter()
const feedback = reactive<FeedbackType>({ message: '' }) const feedback = reactive<FeedbackType>({ message: '' })
const options = [ async function handleSubmit(type?: FeedbackType['type']) {
{ if (type) feedback.type = type
label: '💡 Suggestion',
value: 'suggestion'
},
{
label: '❤️ Appreciation',
value: 'appreciate'
},
{ label: '🐞 Bug', value: 'bug' },
{ label: '📂 Other', value: 'other' }
]
const selectedOption = ref(options[0])
async function handleSubmit() {
loading.value = true loading.value = true
const body: FeedbackType = { const body: FeedbackType = {
message: feedback.message, message: feedback.message,
type: selectedOption.value.value, type: feedback.type,
page: router.route.path page: router.route.path
} }
@ -74,254 +49,207 @@ async function handleSubmit() {
loading.value = false loading.value = false
} }
} }
const isOpen = ref(false)
function closeModal() {
isOpen.value = false
}
function openModal() {
isOpen.value = true
}
</script> </script>
<template> <template>
<button <div class="wrapper">
type="button" <Transition name="fade" mode="out-in">
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled" <div v-if="!feedback.type" class="step">
@click="openModal" <div>
/> <div>
<p class="heading">Feedback</p>
<Teleport to="body">
<TransitionRoot appear :show="isOpen" as="template">
<Dialog as="div" class="relative z-10" @close="closeModal">
<TransitionChild
as="template"
enter="duration-300 ease-out"
enter-from="opacity-0"
enter-to="opacity-100"
leave="duration-200 ease-in"
leave-from="opacity-100"
leave-to="opacity-0"
>
<div class="fixed inset-0 bg-black/25" />
</TransitionChild>
<div class="fixed inset-0 overflow-y-auto">
<div
class="flex min-h-full items-center justify-center p-4 text-center"
>
<TransitionChild
as="template"
enter="duration-300 ease-out"
enter-from="opacity-0 scale-95"
enter-to="opacity-100 scale-100"
leave="duration-200 ease-in"
leave-from="opacity-100 scale-100"
leave-to="opacity-0 scale-95"
>
<DialogPanel
class="w-full max-w-md transform overflow-hidden rounded-2xl bg-bg p-6 text-left align-middle shadow-xl transition-all"
>
<DialogTitle
as="h3"
class="text-lg font-medium leading-6 text-text"
>
Feedback
</DialogTitle>
<div class="mt-4 top-16 w-72" v-if="!success">
<Listbox v-model="selectedOption">
<div class="relative mt-1">
<ListboxButton
class="relative w-full cursor-default rounded-lg bg-bg-alt text-text py-2 pl-3 pr-10 text-left shadow-md focus:outline-none focus-visible:border-indigo-500 focus-visible:ring-2 focus-visible:ring-white/75 focus-visible:ring-offset-2 focus-visible:ring-offset-orange-300 sm:text-sm"
>
<span class="block truncate">
{{ selectedOption.label }}
</span>
<span
class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2"
>
<div
class="i-heroicons-solid:chevron-up-down h-5 w-5 text-gray-400"
aria-hidden="true"
/>
</span>
</ListboxButton>
<transition
leave-active-class="transition duration-100 ease-in"
leave-from-class="opacity-100"
leave-to-class="opacity-0"
>
<ListboxOptions
class="absolute mt-1 max-h-60 w-full overflow-auto rounded-md bg-bg-alt py-1 text-base shadow-lg ring-1 ring-black/5 focus:outline-none sm:text-sm"
>
<ListboxOption
v-slot="{ active, selected }"
v-for="option in options"
:key="option.value"
:value="option"
as="template"
>
<li
:class="[
active ? 'text-primary' : 'text-gray-500',
'relative cursor-default select-none py-2 pl-10 pr-4'
]"
>
<span
:class="[
selected ? 'font-medium' : 'font-normal',
'block truncate'
]"
>
{{ option.label }}
</span>
<span
v-if="selected"
class="absolute inset-y-0 left-0 flex items-center pl-3 text-primary"
>
<div
class="i-heroicons-solid:check h-5 w-5"
aria-hidden="true"
/>
</span>
</li>
</ListboxOption>
</ListboxOptions>
</transition>
</div>
</Listbox>
<div class="mt-2">
<div>
<label class="field-label">Message</label>
<textarea
v-model="feedback.message"
class="mt-2 h-32"
placeholder="What a lovely wiki!"
rows="5"
/>
</div>
</div>
<p class="text-sm text-gray-400 mb-2">
If you want a reply to your feedback, feel free to mention a
contact in the message or join our
<a
class="text-primary font-semibold text-underline"
href="https://discord.gg/Stz6y6NgNg"
>
Discord.
</a>
</p>
<details
v-if="selectedOption.value === 'suggestion'"
class="text-sm text-gray-400"
>
<summary class="mb-2">Submission Guidelines</summary>
<strong>🕹 Emulators</strong>
<p>
They're already on the
<a
class="text-primary font-bold text-underline"
href="https://emulation.gametechwiki.com/index.php/Main_Page"
>
Game Tech Wiki.
</a>
</p>
<strong>🔻 Leeches</strong>
<p>
They're already on the
<a
class="text-primary font-bold text-underline"
href="https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches"
>
File Hosting Wiki.
</a>
</p>
<strong>🐧 Distros</strong>
<p>
They're already on
<a
class="text-primary font-bold text-underline"
href="https://distrowatch.com/"
>
DistroWatch.
</a>
</p>
<strong>🎲 Mining / Betting Sites</strong>
<p>
Don't post anything related to betting, mining, BINs, CCs,
etc.
</p>
<strong>🎮 Multiplayer Game Hacks</strong>
<p>
Don't post any hacks/exploits that give unfair advantages
in multiplayer games.
</p>
</details>
<div class="mt-4">
<button
type="button"
class="inline-flex justify-center rounded-md border border-transparent bg-blue-500 px-4 py-2 text-sm font-medium text-blue-100 hover:bg-blue-600 focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2 disabled:bg-blue-400"
:disabled="
feedback.message.length < 5 ||
feedback.message.length > 1000
"
@click="handleSubmit()"
>
Submit
</button>
<button
type="button"
class="ml-2 inline-flex justify-center rounded-md border border-transparent bg-red-500 px-4 py-2 text-sm font-medium text-red-100 hover:bg-red-600 focus:outline-none focus-visible:ring-2 focus-visible:ring-red-500 focus-visible:ring-offset-2"
@click="closeModal()"
>
Close
</button>
</div>
</div>
<div v-else-if="error">
<div class="text-sm font-medium leading-6 text-text">
Error!
</div>
<details>{{ error }}</details>
</div>
<div v-else>
<TransitionRoot
enter="transition-opacity duration-75"
enter-from="opacity-0"
enter-to="opacity-100"
>
Thanks!
</TransitionRoot>
</div>
</DialogPanel>
</TransitionChild>
</div> </div>
</div> </div>
</Dialog> <div class="button-container">
</TransitionRoot> <button
</Teleport> v-for="item in feedbackOptions"
:key="item.value"
class="btn"
@click="handleSubmit(item.value as FeedbackType['type'])"
>
<span>{{ item.label }}</span>
</button>
</div>
</div>
<div v-else-if="feedback.type && !success" class="step">
<div>
<p class="desc">Page: {{ router.route.path }}</p>
<div>
<span>{{ getFeedbackOption(feedback.type)?.label }}</span>
<button
style="margin-left: 0.5rem"
class="btn"
@click="feedback.type = undefined"
>
<span class="i-carbon-close-large">close</span>
</button>
</div>
</div>
<div v-if="feedback.type === 'suggestion'" class="text-sm mb-2">
<strong>🕹 Emulators</strong>
<p class="desc">
They're already on the
<a
class="text-primary font-bold text-underline"
href="https://emulation.gametechwiki.com/index.php/Main_Page"
>
Game Tech Wiki.
</a>
</p>
<strong>🔻 Leeches</strong>
<p class="desc">
They're already on the
<a
class="text-primary font-bold text-underline"
href="https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches"
>
File Hosting Wiki.
</a>
</p>
<strong>🐧 Distros</strong>
<p class="desc">
They're already on
<a
class="text-primary font-bold text-underline"
href="https://distrowatch.com/"
>
DistroWatch.
</a>
</p>
<strong>🎲 Mining / Betting Sites</strong>
<p class="desc">
Don't post anything related to betting, mining, BINs, CCs, etc.
</p>
<strong>🎮 Multiplayer Game Hacks</strong>
<p class="desc">
Don't post any hacks/exploits that give unfair advantages in
multiplayer games.
</p>
</div>
<textarea
v-model="feedback.message"
autofocus
class="input"
placeholder="What a lovely wiki!"
/>
<p class="desc mb-2">
If you want a reply to your feedback, feel free to mention a contact
in the message or join our
<a
class="text-primary font-semibold text-underline"
href="https://discord.gg/Stz6y6NgNg"
>
Discord.
</a>
</p>
<button
type="submit"
class="btn btn-primary"
:disabled="
feedback.message.length < 5 || feedback.message.length > 1000
"
@click="handleSubmit()"
>
Submit
</button>
</div>
<div v-else class="step">
<p class="heading">Thanks for your feedback!</p>
</div>
</Transition>
</div>
</template> </template>
<style scoped> <style scoped>
textarea, .step > * + * {
input { margin-top: 1rem;
font-family: var(--vp-font-family-base); }
background: var(--vp-c-bg-soft);
font-size: 14px;
border-radius: 4px;
padding: 16px;
width: 100%;
&::placeholder { .btn {
color: var(--vp-c-text-2) !important; border: 1px solid var(--vp-c-divider);
opacity: 1; background-color: var(--vp-c-bg);
} border-radius: 8px;
transition:
border-color 0.25s,
background-color 0.25s;
display: inline-block;
font-size: 14px;
font-weight: 500;
line-height: 1.5;
margin: 0;
padding: 0.375rem 0.75rem;
text-align: center;
vertical-align: middle;
white-space: nowrap;
}
.btn:disabled {
opacity: 0.5;
}
.btn:hover {
border-color: var(--vp-c-brand);
}
.btn-primary {
color: #fff;
background-color: var(--vp-c-brand);
border-color: var(--vp-c-brand);
}
.btn-primary:hover {
background-color: var(--vp-c-brand-darker);
border-color: var(--vp-c-brand-darker);
}
.heading {
font-size: 1.2rem;
font-weight: 700;
}
.button-container {
display: grid;
grid-gap: 0.5rem;
}
.wrapper {
margin: 2rem 0;
padding: 1.5rem;
border: 1px solid var(--vp-c-divider);
border-radius: 8px;
background: var(--vp-c-bg-alt);
}
.input {
width: 100%;
height: 100px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 0.375rem 0.75rem;
}
.contact-input {
height: 50px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 0.375rem 0.75rem;
}
.desc {
display: block;
line-height: 20px;
font-size: 12px;
font-weight: 500;
color: var(--vp-c-text-2);
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.25s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
} }
</style> </style>

View File

@ -0,0 +1,157 @@
<script setup lang="ts">
import { ref } from 'vue'
import {
TransitionRoot,
TransitionChild,
Dialog,
DialogPanel,
DialogTitle,
DialogDescription
} from '@headlessui/vue'
const isOpen = ref(true)
const feedbackOptions = [
{
label: '💡 Suggestion',
value: 'suggestion'
},
{
label: '❤️ Appreciation',
value: 'appreciate'
},
{ label: '🐞 Bug', value: 'bug' },
{ label: '📂 Other', value: 'other' }
]
function closeModal() {
isOpen.value = false
}
function openModal() {
isOpen.value = true
}
</script>
<template>
<button
type="button"
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
@click="openModal"
/>
<TransitionRoot appear :show="isOpen" as="template">
<Dialog as="div" class="relative z-10" @close="closeModal">
<TransitionChild
as="template"
enter="duration-300 ease-out"
enter-from="opacity-0"
enter-to="opacity-100"
leave="duration-200 ease-in"
leave-from="opacity-100"
leave-to="opacity-0"
>
<div class="fixed inset-0 bg-black/25" />
</TransitionChild>
<div class="fixed inset-0 overflow-y-auto">
<div
class="flex min-h-full items-center justify-center p-4 text-center"
>
<TransitionChild
as="template"
enter="duration-300 ease-out"
enter-from="opacity-0 scale-95"
enter-to="opacity-100 scale-100"
leave="duration-200 ease-in"
leave-from="opacity-100 scale-100"
leave-to="opacity-0 scale-95"
>
<DialogPanel
class="w-full max-w-md transform overflow-hidden rounded-2xl bg-bg p-6 text-left align-middle shadow-xl transition-all"
>
<DialogTitle
as="h3"
class="text-lg font-medium leading-6 text-text"
>
Feedback
</DialogTitle>
<div class="mt-2">
<div class="grid gap-[0.5rem]">
<button
v-for="item in feedbackOptions"
:key="item.value"
class="inline-flex justify-center rounded-md border border-transparent bg-bg-alt px-4 py-2 text-sm font-medium text-text hover:border-primary focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2"
>
<span>{{ item.label }}</span>
</button>
</div>
</div>
<div class="mt-2">
<div>
<label class="field-label">Feedback*</label>
<textarea placeholder="meow" rows="5" />
</div>
</div>
<div class="mt-4">
<button
type="button"
class="inline-flex justify-center rounded-md border border-transparent bg-blue-100 px-4 py-2 text-sm font-medium text-blue-900 hover:bg-blue-200 focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2"
@click="closeModal"
>
Close
</button>
</div>
</DialogPanel>
</TransitionChild>
</div>
</div>
</Dialog>
</TransitionRoot>
</template>
<style scoped>
textarea,
input {
font-family: var(--vp-font-family-base);
background: var(--vp-c-bg-soft);
font-size: 14px;
border-radius: 4px;
padding: 16px;
width: 100%;
&::placeholder {
color: var(--vp-c-text-2) !important;
opacity: 1;
}
}
.btn {
border: 1px solid var(--vp-c-divider);
background-color: var(--vp-c-bg);
border-radius: 8px;
transition:
border-color 0.25s,
background-color 0.25s;
display: inline-block;
font-size: 14px;
font-weight: 500;
line-height: 1.5;
margin: 0;
padding: 0.375rem 0.75rem;
text-align: center;
vertical-align: middle;
white-space: nowrap;
}
.btn:disabled {
opacity: 0.5;
}
.btn:hover {
border-color: var(--vp-c-brand);
}
</style>

View File

@ -0,0 +1,83 @@
<script setup lang="ts">
import { ref } from 'vue'
import Feedback from './Feedback.vue'
const showModal = ref(false)
</script>
<template>
<button
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
@click="showModal = true"
/>
<Teleport to="body">
<Transition name="modal">
<div v-show="showModal" class="modal-mask">
<div class="modal-container">
<Feedback />
<div class="model-footer">
<button class="modal-button" @click="showModal = false">
Close
</button>
</div>
</div>
</div>
</Transition>
</Teleport>
</template>
<style scoped>
.modal-mask {
position: fixed;
z-index: 200;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.3s ease;
}
.modal-container {
width: 300px;
margin: auto;
padding: 20px 30px;
background-color: var(--vp-c-bg);
border-radius: 2px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
transition: all 0.3s ease;
}
.model-footer {
margin-top: 8px;
text-align: right;
}
.modal-button {
padding: 4px 8px;
border-radius: 4px;
border-color: var(--vp-button-alt-border);
color: var(--vp-button-alt-text);
background-color: var(--vp-button-alt-bg);
}
.modal-button:hover {
border-color: var(--vp-button-alt-hover-border);
color: var(--vp-button-alt-hover-text);
background-color: var(--vp-button-alt-hover-bg);
}
.modal-enter-from,
.modal-leave-to {
opacity: 0;
}
.modal-enter-from .modal-container,
.modal-leave-to .modal-container {
transform: scale(1.1);
}
</style>

View File

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import Field from './CardField.vue' import Field from './CardField.vue'
import Feedback from './Feedback.vue' import Modal from './Modal.vue'
import InputField from './InputField.vue' import InputField from './InputField.vue'
import ToggleStarred from './ToggleStarred.vue' import ToggleStarred from './ToggleStarred.vue'
</script> </script>
@ -10,15 +10,15 @@ import ToggleStarred from './ToggleStarred.vue'
<div class="card-header"> <div class="card-header">
<div class="card-title">Emoji Legend</div> <div class="card-title">Emoji Legend</div>
</div> </div>
<Field icon="i-twemoji-star">Recommendations</Field>
<Field icon="i-twemoji-globe-with-meridians">Indexes</Field> <Field icon="i-twemoji-globe-with-meridians">Indexes</Field>
<Field icon="i-twemoji-repeat-button">Storage Links</Field> <Field icon="i-twemoji-repeat-button">Storage Links</Field>
<Field icon="i-twemoji-star">Recommendations</Field>
<div class="card-header"> <div class="card-header">
<div class="card-title">Options</div> <div class="card-title">Options</div>
</div> </div>
<InputField id="feedback" label="Feedback"> <InputField id="feedback" label="Feedback">
<template #display> <template #display>
<Feedback /> <Modal />
</template> </template>
</InputField> </InputField>
<InputField id="toggle-starred" label="Toggle Starred"> <InputField id="toggle-starred" label="Toggle Starred">

View File

@ -1,4 +1,4 @@
import type { Theme } from 'vitepress' import { type Theme } from 'vitepress'
import DefaultTheme from 'vitepress/theme' import DefaultTheme from 'vitepress/theme'
import Layout from './Layout.vue' import Layout from './Layout.vue'
import Post from './PostLayout.vue' import Post from './PostLayout.vue'

View File

@ -94,7 +94,7 @@
} }
::selection { ::selection {
background-color: #0f2c47; background-color: var(--vp-button-brand-bg);
} }
.VPFooter a { .VPFooter a {

View File

@ -4,7 +4,6 @@ export function groupBy<T, K extends keyof any>(
): Record<K, T[]> { ): Record<K, T[]> {
return arr.reduce( return arr.reduce(
(groups, item) => { (groups, item) => {
// biome-ignore lint/suspicious/noAssignInExpressions: <explanation>
;(groups[key(item)] ||= []).push(item) ;(groups[key(item)] ||= []).push(item)
return groups return groups
}, },

319
AI.md
View File

@ -4,93 +4,58 @@
*** ***
*** ***
* **Note** - Our [Discord](https://redd.it/17f8msf) has an AI bot with Llama, Mistral, and Stable Diffusion. Feel free to join and try it out.
***
# ► AI Chatbots # ► AI Chatbots
* 🌐 **[Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt)** - ChatGPT Resources * 🌐 **[LMSYS Arena](https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard)** - Chatbot Leaderboard with Elo rating
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index * 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)** - Open Source Chatbot Benchmark
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn Books into Chatbots * 🌐 **[Transformer Models Timeline](https://ai.v-gar.de/ml/transformer/timeline/)** - LLM Timeline
* ⭐ **[TypeSet](https://typeset.io/)** - Research Paper Chatbot
* [GPT Crawler](https://github.com/BuilderIO/gpt-crawler) - Turn Websites into Chatbots
* [ChatGPTBox](https://github.com/josStorer/chatGPTBox), [ChatGPT Apps](https://github.com/adamlui/chatgpt-apps), [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) or [Merlin](https://www.getmerlin.in/) / [Unlimited](https://rentry.co/MerlinAI-Unlim) - Extensions
* [Humata](https://www.humata.ai/), [Sharly](https://app.sharly.ai/), [Docalysis](https://docalysis.com/), [DAnswer](https://docs.danswer.dev/), [DocsGPT](https://docsgpt.arc53.com/) or [ChatDOC](https://chatdoc.com/) - Turn Documents into Chatbots
* [PrivateGPT](https://docs.privategpt.dev/) - Offline Document Chatbots
* [SallyBot](https://github.com/DeSinc/SallyBot/) - ChatGPT Discord Bot
* [TGPT](https://github.com/aandrew-me/tgpt) - ChatGPT TUIs
* [Lobe Chat](https://chat-preview.lobehub.com) - Desktop App
* [Noi](https://noi.nofwl.com/) - Desktop App
* [Chatbot-UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui)
* [ChatRTX](https://www.nvidia.com/en-us/ai-on-rtx/chatrtx/) - Desktop App / RTX 30+ Series GPU Only
* [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
* [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI
* [Voice Control](https://voicecontrol.chat/) - ChatGPT Voice Control
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
* [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes
*** ***
## ▷ Online Chatbots ## ▷ Online Chatbots
* 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** or [ChinaGPT](https://github.com/GoldenMelon-Studio/chinagpt-4/) - Online GPT Indexes
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o Chatbot / [Discord](https://discord.com/invite/openai)
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4/3.5 Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt) * ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4/3.5 Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
* ⭐ **[Morphic](https://www.morphic.sh/)** - GPT-4o Powered Search
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
* ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) (ask for english) * ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) (ask for english)
* ⭐ **[Gemini](https://gemini.google.com/)** or [Gemma](https://github.com/google/gemma.cpp), [2](https://ai.google.dev/gemma/) - Google's Chatbot * ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
* ⭐ **[Claude](https://claude.ai/)** - Anthropic's Chatbot
* ⭐ **[groq](https://groq.com/)** - Llama 3 and Mixtral Chatbots
* ⭐ **[LMSYS Chat](https://chat.lmsys.org/)** - Chat and Compare Multiple Chatbots * ⭐ **[LMSYS Chat](https://chat.lmsys.org/)** - Chat and Compare Multiple Chatbots
* [LLM Playground](https://llmplayground.net/) - Multiple Chatbots / [Discord](https://discord.com/invite/q55gsH8z5F) / [API](https://api.discord.rocks/) * [ChatGPT](https://chat.openai.com/) - GPT-3.5 Chatbot / [Discord](https://discord.com/invite/openai)
* [feyn](https://feyn.chat/) - GPT-4o / Multiple Chatbots * [Gemini](https://gemini.google.com/) - Google's Chatbot
* [GPT4o.so](https://gpt4o.so/app) - GPT-4o * [groq](https://groq.com/) - LLama and Mixtral Chatbots
* [LibreChat](https://librechat.ai/) - Multiple Chatbots
* [sdk.vercel](https://sdk.vercel.ai/) - Multiple Chatbots
* [FFA](https://ffa.chat/) - Multiple Chatbots
* [DDG Chat](https://duckduckgo.com/chat) - Multiple Chatbots
* [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots * [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots
* [infermatic](https://infermatic.ai/) / [Discord](https://discord.gg/9GUXmDx9GF) - Multiple Chatbots * [FlowGPT](https://flowgpt.com/chat) - Multiple Chatbots / [Discord](https://discord.com/invite/tWZGzcpTkf)
* [lollms-webui](https://github.com/ParisNeo/lollms-webui) - Multiple Chatbots * [Phind](https://www.phind.com/) - GPT-3.5 Powered Search
* [MagAI](https://rentry.org/freegpt4withmagai) - Multiple Chatbots * [Ora](https://ora.ai/start) - GPT-3.5 Based Chatbots
* [freegpt4](https://rentry.org/freegpt4) - Free GPT-4 Methods
* [Meta AI](https://www.meta.ai/) - Llama 3 Chatbot
* [NVIDIA NIM](https://build.nvidia.com/) - Llama 3
* [Phind](https://www.phind.com/) - Llama Search Engine
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - AI Search Engine
* [Komo](https://komo.ai/) - AI Search Engine
* [iAsk](https://iask.ai/) - AI Search Engine
* [Mindfulq](https://www.mindfulq.com/) - AI Search Engine
* [Andi](https://andisearch.com/) - AI Search Engine
* [You](https://you.com/) - AI Search Engine
* [iSeek](https://www.iseek.com/) - AI Search Engine
* [Farfalle](https://www.farfalle.dev/) - AI Search Engine
* [Exa](https://exa.ai/) - AI Search Engine / [Discord](https://discord.com/invite/jvz7GS9W8Y)
* [Lepton Search](https://search.lepton.run/) - AI Search Engine
* [Pi](https://pi.ai/talk) - Inflection AI's Chatbot * [Pi](https://pi.ai/talk) - Inflection AI's Chatbot
* [Reka Playground](https://chat.reka.ai/) - Reka's Chatbot
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / [Discord](https://discord.com/invite/joinpoe) * [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / [Discord](https://discord.com/invite/joinpoe)
* [Claude](https://claude.ai/) - Anthropic's Chatbot
* [AI Playground](https://play.vercel.ai/) - Compare Multiple Chatbots
* [GlobalGPT](https://www.globalgpt.nspiketech.com/#/) - AI Chatbot with Document Support * [GlobalGPT](https://www.globalgpt.nspiketech.com/#/) - AI Chatbot with Document Support
* [Ai Uncensored](https://www.aiuncensored.info/) - "Uncensored" Chatbot
*** ***
## ▷ Self-Hosting Tools ## ▷ Self-Hosting Tools
* ⭐ **[Jan.ai](https://jan.ai/)** - Self-Hosted * ⭐ **[SillyTavern](https://github.com/SillyTavern/SillyTavern)** - Front-end for LLMs
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Front-end for LLMs
* ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Host Transformer Based LLMs / [Guide](https://rentry.org/llama-mini-guide) * ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Host Transformer Based LLMs / [Guide](https://rentry.org/llama-mini-guide)
* ⭐ **[kobold.cpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [rocM](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb) * ⭐ **[kobold.cpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [rocM](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb)
* ⭐ **[Pinokio](https://pinokio.computer/)** - Single Click AI Model Installer / [Discord](https://discord.gg/TQdNwadtE4) * ⭐ **[Pinokio](https://pinokio.computer/)** - Single Click AI Model Installer / [Discord](https://discord.gg/TQdNwadtE4)
* ⭐ **[Oobabooga Text Generation WebUI](https://github.com/oobabooga/text-generation-webui)** - Self-Host Models / [Colab](https://colab.research.google.com/github/pcrii/Philo-Colab-Collection/blob/main/4bit_TextGen_Gdrive.ipynb) * ⭐ **[Oobabooga Text Generation WebUI](https://github.com/oobabooga/text-generation-webui)** - Self-Host Models / [Colab](https://colab.research.google.com/github/pcrii/Philo-Colab-Collection/blob/main/4bit_TextGen_Gdrive.ipynb)
* ⭐ **[Aphrodite Engine](https://github.com/PygmalionAI/aphrodite-engine)** - Serve LLMs at Scale with Kobold & OpenAI APIs / [Colab](https://colab.research.google.com/github/AlpinDale/misc-scripts/blob/main/Aphrodite.ipynb) * ⭐ **[Aphrodite Engine](https://github.com/PygmalionAI/aphrodite-engine)** - Serve LLMs at Scale with Kobold & OpenAI APIs / [Colab](https://colab.research.google.com/github/AlpinDale/misc-scripts/blob/main/Aphrodite.ipynb)
* [LLaVA](https://llava.hliu.cc/) - Chatbot with Image Support * [LLaVA](https://llava.hliu.cc/) - Chatbot with Image Support
* [OpenAIPlayground](https://github.com/nat/openplayground) - LLM Playground * [Petals](https://petals.dev/) - Self-Hosted
* [Petals](https://petals.dev/) - Self-Hosted * [Jan.ai](https://jan.ai/) - Self-Hosted
* [Mistral](https://chat.mistral.ai/chat) - Self-Hosted
* [Ollama](https://ollama.ai/) - Self-Hosted * [Ollama](https://ollama.ai/) - Self-Hosted
* [LMStudio](https://lmstudio.ai/) - Self-Hosted * [GPT4All](https://gpt4all.io/) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e)
* [GPT4All](https://www.nomic.ai/gpt4all) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e) * [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLMs w/ Single File
* [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLM with Single Files * [Dify](https://dify.ai/) - Create AI Apps
* [Generative AI for Beginners](https://microsoft.github.io/generative-ai-for-beginners/) - Generative AI Guides * [PlugBear](https://plugbear.io/) - Connect LLMs to Apps
* [Generative AI for Beginners](https://github.com/microsoft/generative-ai-for-beginners) - Generative AI Guides
* [TGPT](https://github.com/aandrew-me/tgpt) - ChatGPT TUI
* [LibreChat](https://github.com/danny-avila/LibreChat), [HemulGM](https://github.com/HemulGM/ChatGPT), [SmolAI](https://github.com/smol-ai/menubar/) or [Chatbot-UI](https://github.com/mckaywrigley/chatbot-ui) - ChatGPT Desktop Apps / GUIs
*** ***
@ -100,106 +65,80 @@
* 🌐 **[Img-Resources](https://rentry.org/lmg-resources)** - LLM Character Resources / [Templates](https://rentry.org/lmg_template) * 🌐 **[Img-Resources](https://rentry.org/lmg-resources)** - LLM Character Resources / [Templates](https://rentry.org/lmg_template)
* ⭐ **[PygmalionAI](https://discord.com/invite/pygmalionai)** - Self-Hosted Roleplaying Models with Resources / [Resources](https://rentry.co/PygmalionLinks) * ⭐ **[PygmalionAI](https://discord.com/invite/pygmalionai)** - Self-Hosted Roleplaying Models with Resources / [Resources](https://rentry.co/PygmalionLinks)
* ⭐ **[Call Annie](https://callannie.ai/)** - GPT-3.5 Chatbot with Real-Time Voice and Video / [Discord](https://discord.gg/Rfbzet5R3v) * ⭐ **[Call Annie](https://callannie.ai/)** - GPT-3.5 Chatbot with Real-Time Voice and Video / [Discord](https://discord.gg/Rfbzet5R3v)
* ⭐ **[Character AI](https://character.ai/)** - Roleplaying Chatbots / [Extract Params](https://rentry.org/reverseCAI) * ⭐ **[Character AI](https://beta.character.ai/)** - Roleplaying Chatbots / [Extract Params](https://rentry.org/reverseCAI)
* ⭐ **[FlowGPT](https://flowgpt.com/chat)** - Roleplaying Chatbots / [Discord](https://discord.com/invite/tWZGzcpTkf)
* ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide * ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide
* ⭐ **[Chub](https://www.chub.ai/)** - Character Cards * ⭐ **[Chub](https://www.chub.ai/)** - Character Cards
* [LlaMA + SillyTavern](https://rentry.org/llama_v2_sillytavern) - LlaMA + SillyTavern Roleplaying Setup Guide * [LLaMA + SillyTavern](https://rentry.org/llama_v2_sillytavern) - LLaMA + SillyTavern Roleplaying Setup Guide
* [KoboldAI](https://github.com/henk717/KoboldAI) - GUI for Roleplaying Chatbots / [Web App](https://lite.koboldai.net/) * [KoboldAI](https://github.com/henk717/KoboldAI) - GUI for Roleplaying Chatbots / [Web App](https://lite.koboldai.net/)
* [GPT Call](https://gptcall.net/) - Roleplaying Chatbots / [Discord](https://discord.gg/88fQT5Bgfe) * [GPT Call](https://gptcall.net/) - Roleplaying Chatbots / [Discord](https://discord.gg/88fQT5Bgfe)
* [Figgs](https://www.figgs.ai/) - Roleplaying Chatbots
* [Dreamshow](https://dreamshow.ai/) - Roleplaying Chatbots * [Dreamshow](https://dreamshow.ai/) - Roleplaying Chatbots
* [Spicychat.ai](https://spicychat.ai/) - Roleplaying Chatbots * [Spicychat.ai](https://spicychat.ai/) - Roleplaying Chatbots
* [Epigon](https://epigon.ai/) - Roleplaying Chatbots
* [Sakura](https://www.sakura.fm/) - Roleplaying Chatbots * [Sakura](https://www.sakura.fm/) - Roleplaying Chatbots
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots * [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots
* [Faraday](https://faraday.dev/) - Self-Hosted Roleplaying Chatbot
* [TavernAI](https://tavernai.net/) - Roleplaying / Adventure Chatbot * [TavernAI](https://tavernai.net/) - Roleplaying / Adventure Chatbot
* [AI Dungeon](https://play.aidungeon.io/main/landing) - Roleplaying / Adventure Chatbot
* [Shapes.ai](https://shapes.inc/) - Discord Roleplaying Bot
* [Broken Bear](https://www.brokenbear.com/) - Vent to AI Bear * [Broken Bear](https://www.brokenbear.com/) - Vent to AI Bear
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) - Chatbot Builders * [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) - Chatbot Builders
*** ***
## ▷ Coding AIs ## ▷ ChatGPT Tools
* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** or [BigCode](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards * 🌐 **[Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt)** - ChatGPT Resources
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs * 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** or **[FOFA](https://en.fofa.info/result?qbase64=ImxvYWRpbmctd3JhcCIgJiYgImJhbGxzIiAmJiAiY2hhdCIgJiYgaXNfZG9tYWluPXRydWU%3D)** / [2](https://en.fofa.info/result?qbase64=dGl0bGU9PSJDaGF0R1BUIFdlYiI%3D) - ChatGPT WebUI Indexes
* ⭐ **[Codeium](https://codeium.com/)** - Coding AI * ⭐ **[ChatHub](https://chathub.gg/)** - Compare AI Responses
* ⭐ **[Pieces](https://pieces.app/) / [Docs](https://docs.pieces.app)** - Multi-LLM Coding AI / GPT-4 for Free * ⭐ **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn PDFs into Chatbots
* [Cursor](https://cursor.sh/) - Coding AI * ⭐ **[TypeSet](https://typeset.io/)** - Research Paper Chatbot
* [tabnine](https://www.tabnine.com/) - Coding AI * [Erin](https://erin.ac/) or [SallyBot](https://github.com/DeSinc/SallyBot/) - ChatGPT Discord Bots
* [ImageCook](https://imgcook.com) / [GitHub](https://github.com/imgcook/imgcook) - Coding AI * [Vault AI](https://vault.pash.city/), [Humata](https://www.humata.ai/), [Unriddle](https://www.unriddle.ai/), [Sharly](https://app.sharly.ai/), [Docalysis](https://docalysis.com/), [DAnswer](https://github.com/danswer-ai/danswer) or [ChatDOC](https://chatdoc.com/) - Turn Documents into Chatbots
* [CodeWhisperer](https://aws.amazon.com/codewhisperer/) - Coding AI * [PrivateGPT](https://github.com/imartinez/privateGPT/) or [ChatDocs](https://github.com/marella/chatdocs) - Offline Document Chatbots
* [Telosys](https://www.telosys.org/) - Coding AI * [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
* [WDTCD?](https://whatdoesthiscodedo.com/) - Coding AI * [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI
* [Sourcery](https://sourcery.ai/) - Coding AI * [ChatGPT File Uploader](https://chromewebstore.google.com/detail/chatgpt-file-uploader/oaogphgfdbdbmhkiplemgehihiiececj) - File Upload Extension
* [Devv](https://devv.ai/) - Coding AI * [ChatGPT Advanced](https://tools.zmo.ai/webchatgpt) - Add Search Results to ChatGPT
* [Cody](https://about.sourcegraph.com/cody) - Coding AI * [SublimeGPT](https://chromewebstore.google.com/detail/sublimegpt-chatgpt-everyw/eecockeebhenbihmkaamjlgoehkngjea), [DuckDuckGPT](https://github.com/kudoai/duckduckgpt) or [GPTGO](https://gptgo.ai/) - Add ChatGPT to Search Results
* [Cursor](https://www.trycursor.com/) - Coding AI / [Discord](https://discord.gg/PJEgRywgRy) * [ChatGPTBox](https://github.com/josStorer/chatGPTBox), [ChatGPT Apps](https://github.com/adamlui/chatgpt-apps), [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) or [Walles](https://walles.ai/) - ChatGPT Extensions
* [OpenDevin](https://github.com/OpenDevin/OpenDevin) - Coding AI * [Harpa](https://harpa.ai/), [Merlin](https://www.getmerlin.in/) / [Unlimited](https://rentry.co/MerlinAI-Unlim) or [Glimpse](https://glimpse.surf/) - ChatGPT Chrome Extensions
* [continue](https://continue.dev/) - Coding AI * [/r/ChatGPT](https://www.reddit.com/r/ChatGPT/) - ChatGPT Subreddit
* [Bito AI](https://bito.ai/) - Coding AI * [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
* [CodiumAI](https://www.codium.ai/) - Coding AI * [VizGPT](https://www.vizgpt.ai/) - Chat Data Visualization
* [Blackbox](https://www.blackbox.ai/) - Coding AI * [DeepSheet](https://deepsheet.dylancastillo.co/) - Data Visualization AI
* [Codel](https://github.com/semanser/codel) - Coding AI * [Autoclear ChatGPT History](https://github.com/adamlui/userscripts/tree/master/chatgpt/autoclear-chatgpt-history) - Autoclear Chats
* [CollectivAI](https://chat.collectivai.com/) - Coding AI * [EditGPT](https://www.editgpt.app/) - Proofread Chats
* [Denigma](https://denigma.app/#demo) - Coding AI * [RepeatGPT](https://repeatgpt.com/) - Schedule Chats
* [GPT Engineer](https://github.com/AntonOsika/gpt-engineer) - Coding AI * [ChatGPT Old Style](https://greasyfork.org/en/scripts/486909-openai-chat-old-colors) - Old ChatGPT Colors
* [Aider](https://aider.chat/) - Terminal Coding AI
* [Codacy](https://www.codacy.com/) or [AI Code Review](https://ai-code-reviewer.com/) - Code Fixing AIs
* [Open Interpreter](https://github.com/OpenInterpreter/open-interpreter) - Run Code Locally
* [v0](https://v0.dev/) - Text to Site Code
* [AI Code Translator](https://ai-code-translator.vercel.app/), [AI Code Convert](https://aicodeconvert.com/) or [Source Code Converters](https://www.tangiblesoftwaresolutions.com/) - AI Code Converters
* [RTutor](https://rtutor.ai/) - Translate Natural Language to R code
* [Gorilla](https://gorilla.cs.berkeley.edu/) - API to Code LLM
* [CS50.ai](https://cs50.ai/) - AI Rubberducking
***
## ▷ ChatGPT Prompts ## ▷ ChatGPT Prompts
* 🌐 **[Jailbreak Listings](https://rentry.org/jb-listing)** - Prompt / Jailbreak Lists * ⭐ **[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory
* ⭐ **[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory / [Github](https://github.com/f/awesome-chatgpt-prompts) * ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)**, [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering), [LearningPrompt](https://learningprompt.wiki/) or [Jailbreaking ChatGPT](https://arxiv.org/pdf/2305.13860) - Prompting Guides
* ⭐ **[BlackFriday GPTs Prompts](https://github.com/friuns2/BlackFriday-GPTs-Prompts)** - Prompt Directory * ⭐ **[jailbreakchat](https://www.jailbreakchat.com/)** or **[jamessawyer](http://www.jamessawyer.co.uk/pub/gpt_jb.html)** - Jailbreak Prompts
* ⭐ **[Leaked Prompts](https://github.com/linexjlin/GPTs)** - Prompt Directory * ⭐ **[quickref](https://quickref.me/chatgpt)** - Prompt Cheatsheets
* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)**, [LearnPrompting](https://learnprompting.org/docs/intro), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering), [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) or [LearningPrompt](https://learningprompt.wiki/) - Prompting Guides * ⭐ **[flowgpt](https://flowgpt.com/)**, **[Leaked Prompts](https://github.com/linexjlin/GPTs)**, [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74), [UseThisPrompt](https://www.usethisprompt.io/), [GPTea](https://gptea.io/) or [SnackPrompt](https://snackprompt.com/) - Prompt Directories
* [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74) - Prompt Directory * [PromptPerfect](https://promptperfect.jina.ai/) - Prompt Optimization
* [L1B3RT45](https://github.com/elder-plinius/L1B3RT45) - Jailbreak Prompts / [Discord](https://discord.gg/basi) / [Twitter](https://x.com/elder_plinius)
* [promptfoo](https://github.com/typpo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds * [promptfoo](https://github.com/typpo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds
* [Marketing 2099](https://sintralabs.notion.site/Marketing-2099-Ultimate-ChatGPT-Marketing-Prompts-To-Copy-Paste-200-tasks-fc22c9142d6a4a4286a3fe755be932e6) - ChatGPT Marketing Prompts * [Marketing 2099](https://sintralabs.notion.site/Marketing-2099-Ultimate-ChatGPT-Marketing-Prompts-To-Copy-Paste-200-tasks-fc22c9142d6a4a4286a3fe755be932e6) - ChatGPT Marketing Prompts
* [Tensor Trust](https://tensortrust.ai/) or [Gandalf](https://gandalf.lakera.ai/) - Prompting Skill Games * [Tensor Trust](https://tensortrust.ai/) or [Gandalf](https://gandalf.lakera.ai/) - Prompting Skill Games
* [chat-gpt-games](https://github.com/AdmTal/chat-gpt-games) - Prompt Games
* [Gobble Bot](https://gobble.bot/) - Generate Text Files for Chatbots
*** ***
*** ***
# ► AI Indexes # ► AI Indexes
* 🌐 **[LMSYS Arena](https://chat.lmsys.org/?leaderboard)** - Chatbot Leaderboards / Benchmarks
* 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)** - Chatbot Leaderboards / Benchmarks
* 🌐 **[Transformer Models Timeline](https://ai.v-gar.de/ml/transformer/timeline/)** - LLM Timeline
* 🌐 **[Toolify](https://www.toolify.ai/)** - AI Directory * 🌐 **[Toolify](https://www.toolify.ai/)** - AI Directory
* 🌐 **[Phygital Library](https://library.phygital.plus/)** - AI Directory / Workflow Builder * 🌐 **[Phygital Library](https://library.phygital.plus/)** - AI Directory / Workflow Builder
* 🌐 **[AI-MF](https://whoisdsmith.gitbook.io/ai-mf/)** - AI Directory / [GitHub](https://github.com/whoisdsmith/AI-MTHRFCKR)
* 🌐 **[LifeArchitect](https://lifearchitect.ai/models-table/)** - LLM Index * 🌐 **[LifeArchitect](https://lifearchitect.ai/models-table/)** - LLM Index
* [Glif](https://glif.app/) or [perchance](https://perchance.org/generators) - Simple AI Builders
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks
* [ArtificialAnalysis](https://artificialanalysis.ai/) - Chatbot Benchmarks
* [The Fastest AI](https://thefastest.ai/) - Chatbot Benchmarks
* [YP for AI](https://www.ypforai.com) - AI Directory
* [AI Search](https://ai-search.io), [What AI Can Do Today](https://whataicandotoday.com/) or [FindAISites](https://findaisites.pro/) - AI Index Search
* [Awesome AI Tools](https://github.com/mahseema/awesome-ai-tools) - AI Directory
* [ToolDirectory](https://www.tooldirectory.ai/) - AI Directory * [ToolDirectory](https://www.tooldirectory.ai/) - AI Directory
* [BasedTools](https://www.basedtools.ai/) - AI Directory / [Discord](https://discord.gg/D8wYxUvwTD)
* [It's Better With AI](https://itsbetterwithai.com/) - AI Directory
* [Futurepedia](https://www.futurepedia.io/) - AI Directory * [Futurepedia](https://www.futurepedia.io/) - AI Directory
* [funfun.tools](https://www.funfun.tools/) - AI Directory * [AI Search](https://ai-search.io/) - AI Directory
* [PowerUsers](https://powerusers.ai/) - AI Directory * [PowerUsers](https://powerusers.ai/) - AI Directory
* [TheresAnAIForThat](https://theresanaiforthat.com/) - AI Directory * [TheresAnAIForThat](https://theresanaiforthat.com/) - AI Directory
* [AI Tools](https://aitools.fyi/) - AI Directory
* [FutureTools](https://www.futuretools.io/?pricing-model=free) - AI Directory * [FutureTools](https://www.futuretools.io/?pricing-model=free) - AI Directory
* [Sieve](https://www.sievedata.com/explore) or [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AIs * [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AI
* [Google Labs](https://labs.google/) or [AI Test Kitchen](https://aitestkitchen.withgoogle.com/) - Google AI Experiments * [Google Labs](https://labs.withgoogle.com/) - AI Experiments
*** ***
*** ***
@ -210,13 +149,17 @@
* [Scrip AI](https://scripai.com/), [InkForAll](https://app.inkforall.com/tools), [QuickPenAI](https://quickpenai.com/) - Online AI Text Tools * [Scrip AI](https://scripai.com/), [InkForAll](https://app.inkforall.com/tools), [QuickPenAI](https://quickpenai.com/) - Online AI Text Tools
* [NovelAI](https://novelai.net/) - Story Writing AI / [Limit Bypass](https://pastebin.com/JDyvqZcz), [2](https://greasyfork.org/en/scripts/448926) * [NovelAI](https://novelai.net/) - Story Writing AI / [Limit Bypass](https://pastebin.com/JDyvqZcz), [2](https://greasyfork.org/en/scripts/448926)
* [Dreamily](https://dreamily.ai/) or [NightSaga](https://nightsaga.ai/) - Story Writing AIs * [Dreamily](https://dreamily.ai/) or [NightSaga](https://nightsaga.ai/) - Story Writing AIs
* [EssayBot](https://www.essaybot.com/) / [2](https://www.essayaibot.com/), [Textero](https://www.textero.ai/), [EssayBuilder](https://essay-builder.ai/) or [EssayService](https://www.essayservice.ai/) - Essay Writing AI * [Essaytyper](http://www.essaytyper.com/), [papertyper](https://papertyper.net/), [EssayBot](https://www.essaybot.com/) / [2](https://www.essayaibot.com/), [Textero](https://www.textero.ai/), [EssayBuilder](https://essay-builder.ai/) or [EssayService](https://www.essayservice.ai/) - Essay Writing AI
* [TextSynth](https://textsynth.com/playground.html) - Text Autocomplete AI * [Chat GPTPhantom](https://chatgpt-phantom.vercel.app/) - Article Writing AI
* [Product Description Generator](https://www.aidirectori.es/tools/product-description-generator) * [GPT4Chat](https://gpt4chat.net/) or [ChatGPT Writer](https://chatgptwriter.ai/) - Email Reply AI
* [Novel.sh](https://novel.sh/) or [TextSynth](https://textsynth.com/playground.html) - Text Autocomplete AI
* [Compose](https://www.compose.ai/) - Text Autocomplete AI Extension
* [NumerousAI](https://numerous.ai/) or [FormulaBot](https://formulabot.com/) - Excel AI Tools
* [Auto Text Expander](https://pastebin.com/TFPRieVN) - Shortcuts to Expand & Replace Text as you Type
*** ***
## ▷ [Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing) ## ▷ [Text Rephrashing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)
*** ***
@ -224,21 +167,9 @@
*** ***
# ► Video Generation ## ▷ [Coding AIs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_coding_ais)
* ⭐ **[PixVerse](https://pixverse.ai/)** - Video Generator / [Discord](https://discord.com/invite/MXHErdJHMg)
* [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab) - Video Generator
* [StableVideo](https://www.stablevideo.com/) - Video Generator
* [Haiper](https://haiper.ai/) - Video Generator
* [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Video Generator
* [Dream Machine](https://lumalabs.ai/dream-machine) - Video Generator
* [text-to-video](https://text-to-video.vercel.app) - Video Generator
* [Text2Video-Zero](https://github.com/Picsart-AI-Research/Text2Video-Zero) - Video Generator
* [LensGo](https://lensgo.ai/) - Video Generator
* [Pika Labs](https://www.pika.art/) - Video Generator
* [Damo](https://huggingface.co/spaces/damo-vilab/modelscope-text-to-video-synthesis) - Video Generator
* [Rollideo](https://rollideo.com/) - Text to Subbed Video
***
*** ***
# ► Image Generation # ► Image Generation
@ -247,49 +178,53 @@
*** ***
* 🌐 **[RentrySD](https://rentry.org/RentrySD/)**, **[Pharmapsychotic](https://pharmapsychotic.com/tools.html)**, [Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md), [LocalModelsLinks](https://rentry.org/LocalModelsLinks), [SD Goldmine](https://rentry.org/sdgoldmine), [Akashic](https://github.com/Maks-s/sd-akashic), [sdg-link](https://rentry.org/sdg-link), [SDTools](https://sdtools.org) or [AI Creation Tools](https://docs.google.com/spreadsheets/d/1zYJUM-srhgIA7wrj4Pe4QqepAsHIEC00DydoTPv4PWg/edit#gid=0) - AI Image Resources
* 🌐 **[CivitAI](https://civitai.com/)** or [Stable Diffusion Models](https://cyberes.github.io/stable-diffusion-models/) - SD Models Index
* 🌐 **[PromptMania](https://promptomania.com/)**, [PTSearch](https://www.ptsearch.info/tags/list/) or [PublicPrompts](https://publicprompts.art/) / [Discord](https://discord.com/invite/jvQJFFFx26) - Prompt Indexes
* ⭐ **[CLIP Interrogator](https://huggingface.co/spaces/pharma/CLIP-Interrogator)** / [2](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) - Determine Likely Used Image Prompts
* [SD Dynamic Prompts](https://github.com/adieyal/sd-dynamic-prompts) - Dynamic Prompts Extension
* [Stable Horde](https://stablehorde.net/) - Distributed Network of GPUs running Stable Diffusion / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/)
* [NOP / WAS](https://colab.research.google.com/drive/1jUwJ0owjigpG-9m6AI_wEStwimisUE17) - AI Image Generation Colab
* [MagicBrush](https://www.magicbru.sh/), [image-mixer-demo](https://huggingface.co/spaces/lambdalabs/image-mixer-demo), [AITransformer](https://aitransformer.net/) - AI Image Transformers
* [SD Inpainting](https://huggingface.co/spaces/runwayml/stable-diffusion-inpainting), [Inpaint Anything](https://github.com/geekyutao/Inpaint-Anything) or [Lama Cleaner](https://github.com/Sanster/lama-cleaner) - Image Fill / Item Removal
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
* [/r/sdforall](https://www.reddit.com/r/sdforall/) - Stable Diffusion Subreddit
***
## ▷ Online Generators
* ⭐ **[Microsoft Designer](https://designer.microsoft.com/image-creator)**, [2](https://www.bing.com/images/create) / Unlimited / [Tips](https://rentry.co/bingimagecreatortips) / [Bulk Download](https://github.com/Richard-Weiss/Bing-Creator-Image-Downloader) * ⭐ **[Microsoft Designer](https://designer.microsoft.com/image-creator)**, [2](https://www.bing.com/images/create) / Unlimited / [Tips](https://rentry.co/bingimagecreatortips) / [Bulk Download](https://github.com/Richard-Weiss/Bing-Creator-Image-Downloader)
* ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP) / Unlimited * ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP) / Unlimited
* ⭐ **[Poe](https://poe.com/)** / 100 Daily / [Discord](https://discord.com/invite/joinpoe) * ⭐ **[Poe](https://poe.com/)** / 100 Daily / [Discord](https://discord.com/invite/joinpoe)
* ⭐ **[PlaygroundAI](https://playgroundai.com/)** / 500 Daily
* ⭐ **[Dezgo](https://dezgo.com/)** / [Discord](https://discord.com/invite/RQrGpUhPhx) / Unlimited * ⭐ **[Dezgo](https://dezgo.com/)** / [Discord](https://discord.com/invite/RQrGpUhPhx) / Unlimited
* ⭐ **[Meta AI](https://imagine.meta.com/)** / Unlimited * ⭐ **[Meta AI](https://imagine.meta.com/)** / Unlimited
* ⭐ **[Playground](https://playground.com/)** / 100 Daily
* ⭐ **[Ideogram](https://ideogram.ai/)** / 100 Daily
* ⭐ **[Tensor.art](https://tensor.art/)** / 100 Daily * ⭐ **[Tensor.art](https://tensor.art/)** / 100 Daily
* ⭐ **[Shakker](https://www.shakker.ai/)** / 50 Daily / [Discord](https://discord.gg/djyP5u3vHY) / [Guide](https://docs.google.com/document/d/1PZ6to6Nn995J0o0BbEPhucqge9uyc1acQoNuvWkK6M8/edit#heading=h.kkzhkyyy4ze4)
* ⭐ **[Lexica](https://lexica.art/)** / 48 Weekly * ⭐ **[Lexica](https://lexica.art/)** / 48 Weekly
* ⭐ **[Leonardo.ai](https://app.leonardo.ai/)** / 30 Daily
* [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion) * [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion)
* [Prodia](https://app.prodia.com/) / [Discord](https://discord.com/invite/495hz6vrFN) / [Huggingchat Demo](https://huggingface.co/spaces/prodia/fast-stable-diffusion) / Unlimited * [Prodia](https://app.prodia.com/) / [Discord](https://discord.com/invite/495hz6vrFN) / [Huggingchat Demo](https://huggingface.co/spaces/prodia/fast-stable-diffusion) / Unlimited
* [Unstability.ai](https://www.unstability.ai/) / 52 Daily
* [NVIDIA NIM](https://build.nvidia.com/) / 50 Daily
* [SeaArt](https://www.seaart.ai/) / 40 Daily * [SeaArt](https://www.seaart.ai/) / 40 Daily
* [OpenArt](https://openart.ai/) / [Discord](https://discord.com/invite/yTMNvk5z97) / 50 Daily * [OpenArt](https://openart.ai/) / [Discord](https://discord.com/invite/yTMNvk5z97) / 50 Daily
* [StableDiffusionWeb](https://stablediffusionweb.com/) / 10 Daily * [StableDiffusionWeb](https://stablediffusionweb.com/) / 10 Daily
* [AIGallery](https://aigallery.app/) / Unlimited * [AIGallery](https://aigallery.app/) / Unlimited
* [ComfyUI Web](https://comfyuiweb.com/) / Unlimited * [ComfyUI Web](https://comfyuiweb.com/) / Unlimited
* [Recraft](https://www.recraft.ai/) / Unlimited
* [PicSynth](https://www.picsynth.me/generation) / Unlimited
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited * [ImageLabs](https://editor.imagelabs.net/) / Unlimited
* [Pollinations](https://pollinations.ai/) / Unlimited / [Discord](https://discord.com/invite/8HqSRhJVxn) * [Pollinations](https://pollinations.ai/) / Unlimited / [Discord](https://discord.com/invite/8HqSRhJVxn)
* [PicFinder](https://picfinder.ai/) / Unlimited * [PicFinder](https://picfinder.ai/) / Unlimited
* [Perchance](https://perchance.org/ai-text-to-image-generator) / Unlimited
* [PixArt-alpha](https://huggingface.co/spaces/PixArt-alpha/PixArt-alpha) / Unlimited
* [GetIMG.ai](https://getimg.ai/) / [Discord](https://discord.com/invite/5KsUXSzVwS) / 100 Monthly * [GetIMG.ai](https://getimg.ai/) / [Discord](https://discord.com/invite/5KsUXSzVwS) / 100 Monthly
* [Leonardo.ai](https://app.leonardo.ai/) / 30 Daily
* [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) / Sign-Up Required * [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) / Sign-Up Required
* [AITurbo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F) * [AITurbo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
* [Venice](https://venice.ai/chat/Wyg_3w4M5KDFAcAHnqf-s) / 25 Daily * [Ideogram](https://ideogram.ai/) / 25 Daily
* [Artsio](https://artsio.xyz/) / 20 Daily * [Artsio](https://artsio.xyz/) / 20 Daily
* [Yodayo](https://yodayo.com/) / 15 Daily
* [Maze.guru](https://maze.guru/gallery) / 12 Daily * [Maze.guru](https://maze.guru/gallery) / 12 Daily
* [DreamLike](https://dreamlike.art) / 12 Daily * [DreamLike](https://dreamlike.art) / [Discord](https://discord.com/invite/QyGR2FxsKU) / 12 Daily
* [Craiyon](https://www.craiyon.com/) / 10 Daily / [Github](https://github.com/borisdayma/dalle-mini) / [Colab](https://colab.research.google.com/github/borisdayma/dalle-mini/blob/main/tools/inference/inference_pipeline.ipynb) * [Craiyon](https://www.craiyon.com/) / 10 Daily / [Github](https://github.com/borisdayma/dalle-mini) / [Colab](https://colab.research.google.com/github/borisdayma/dalle-mini/blob/main/tools/inference/inference_pipeline.ipynb)
* [POKEIT](https://pokeit.ai/) / 10 Daily * [POKEIT](https://pokeit.ai/) / 10 Daily
* [PixAI](https://pixai.art/) / 10 Daily * [PixAI](https://pixai.art/) / 10 Daily
* [Krea](https://search.krea.ai/) / [Discord](https://discord.gg/rJurUAR8Kz) * [Krea](https://search.krea.ai/) / [Discord](https://discord.gg/rJurUAR8Kz)
* [ArtHub.ai](https://arthub.ai/) * [ArtHub.ai](https://arthub.ai/)
* [HotPot](https://hotpot.ai/)
* [clipdrop](https://clipdrop.co/tools)
* [imgsys](https://imgsys.org/) - Compare AI Image Generators
* [MemeCam](https://www.memecam.io/) - AI Meme Generator * [MemeCam](https://www.memecam.io/) - AI Meme Generator
* [Genie](https://lumalabs.ai/genie), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [ThreeStudio](https://github.com/threestudio-project/threestudio) - 3D Image Generators * [Genie](https://lumalabs.ai/genie), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [ThreeStudio](https://github.com/threestudio-project/threestudio) - 3D Image Generators
* [Insta-3D](https://huggingface.co/spaces/ilumine-AI/Insta-3D) - Turn 2D images into 3D spaces * [Insta-3D](https://huggingface.co/spaces/ilumine-AI/Insta-3D) - Turn 2D images into 3D spaces
@ -300,42 +235,28 @@
## ▷ Local Frontends ## ▷ Local Frontends
* ⭐ **[Stability Matrix](https://lykos.ai/)** / [GitHub](https://github.com/LykosAI/StabilityMatrix) * ⭐ **[StabilityMatrix](https://github.com/LykosAI/StabilityMatrix)**
* ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/automatic) / [Collab](https://colab.research.google.com/drive/1kw3egmSn-KgWsikYvOMjJkVDsPLjEMzl) / [Photoshop](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted) / [Upscaling](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111), [2](https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111) * ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/automatic) / [Collab](https://colab.research.google.com/drive/1kw3egmSn-KgWsikYvOMjJkVDsPLjEMzl) / [Photoshop Plugin](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted)
* ⭐ **[InvokeAI](https://invoke-ai.github.io/InvokeAI/) / [GitHub](https://github.com/invoke-ai/InvokeAI)** / [Discord](https://discord.com/invite/ZmtBAhwWhy) * ⭐ **[InvokeAI](https://github.com/invoke-ai/InvokeAI)** / [Discord](https://discord.com/invite/ZmtBAhwWhy)
* ⭐ **[ComfyUI](https://github.com/comfyanonymous/ComfyUI)** * ⭐ **[ComfyUI](https://github.com/comfyanonymous/ComfyUI)**
* ⭐ **[Fooocus](https://github.com/lllyasviel/Fooocus)**, [2](https://github.com/MoonRide303/Fooocus-MRE) / [Colab](https://colab.research.google.com/github/lllyasviel/Fooocus/blob/main/fooocus_colab.ipynb) / [Search](https://genly.ai/) * ⭐ **[Fooocus](https://github.com/lllyasviel/Fooocus)**, [2](https://github.com/MoonRide303/Fooocus-MRE) / [Colab](https://colab.research.google.com/github/lllyasviel/Fooocus/blob/main/fooocus_colab.ipynb) / [Search](https://genly.ai/)
* ⭐ **[MochiDiffusion](https://github.com/godly-devotion/MochiDiffusion)** - Stable Diffusion for Mac / [Discord](https://discord.com/invite/x2kartzxGv)
* ⭐ **[DiffusionBee](https://diffusionbee.com/)** - Stable Diffusion for Mac / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
* [StableStudio](https://github.com/Stability-AI/StableStudio) * [StableStudio](https://github.com/Stability-AI/StableStudio)
* [Easy Diffusion](https://stable-diffusion-ui.github.io/) * [Easy Diffusion](https://stable-diffusion-ui.github.io/)
* [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m) * [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m)
* [Sygil WebUI](https://github.com/Sygil-Dev/sygil-webui) / [Discord](https://discord.com/invite/ttM8Tm6wge) * [Sygil WebUI](https://github.com/Sygil-Dev/sygil-webui) / [Discord](https://discord.com/invite/ttM8Tm6wge)
* [Radiata](https://ddpn08.github.io/Radiata/en/) * [Radiata](https://github.com/ddPn08/Radiata)
* [SD WebUI Forge](https://github.com/lllyasviel/stable-diffusion-webui-forge) * [Noiselith](https://noiselith.com/)
* [NMKD Stable Diffusion GUI](https://github.com/n00mkrad/text2image-gui) * [NMKD Stable Diffusion GUI](https://github.com/n00mkrad/text2image-gui)
* [aiimag.es](https://sunija.itch.io/aiimages) / [Discord](https://discord.com/invite/Fge4dVHFM2) * [aiimag.es](https://sunija.itch.io/aiimages) / [Discord](https://discord.com/invite/Fge4dVHFM2)
*** ***
## ▷ Guides / Tools ## ▷ SD Guides
* 🌐 **[RentrySD](https://rentry.org/RentrySD/)**, **[Pharmapsychotic](https://pharmapsychotic.com/tools.html)**, [Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md), [LocalModelsLinks](https://rentry.org/LocalModelsLinks), [SD Goldmine](https://rentry.org/sdgoldmine), [Akashic](https://github.com/Maks-s/sd-akashic), [sdg-link](https://rentry.org/sdg-link), [SDTools](https://sdtools.org) or [AI Creation Tools](https://docs.google.com/spreadsheets/d/1zYJUM-srhgIA7wrj4Pe4QqepAsHIEC00DydoTPv4PWg/edit#gid=0) - AI Image Resources
* 🌐 **[CivitAI](https://civitai.com/)** or [Stable Diffusion Models](https://cyberes.github.io/stable-diffusion-models/) - SD Models Index
* 🌐 **[PromptMania](https://promptomania.com/)**, [PTSearch](https://www.ptsearch.info/tags/list/) or [PublicPrompts](https://publicprompts.art/) / [Discord](https://discord.com/invite/jvQJFFFx26) - Prompt Indexes
* ⭐ **[A Travelers Guide to the Latent Space](https://sweet-hall-e72.notion.site/A-Traveler-s-Guide-to-the-Latent-Space-85efba7e5e6a40e5bd3cae980f30235f)** - AI Art Guide * ⭐ **[A Travelers Guide to the Latent Space](https://sweet-hall-e72.notion.site/A-Traveler-s-Guide-to-the-Latent-Space-85efba7e5e6a40e5bd3cae980f30235f)** - AI Art Guide
* ⭐ **[Voldy](https://rentry.org/voldy)**, [SD Quickstart](https://redd.it/xvhavo) or [1 Min Stable Diffusion](https://youtu.be/l3JjTDvyVdw) - Stable Diffusion Guides * ⭐ **[Voldy](https://rentry.org/voldy)**, [SD Quickstart](https://redd.it/xvhavo) or [1 Min Stable Diffusion](https://youtu.be/l3JjTDvyVdw) - Stable Diffusion Guides
* ⭐ **[CLIP Interrogator](https://huggingface.co/spaces/pharma/CLIP-Interrogator)** / [2](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) - Determine Likely Used Image Prompts
* [Prompt Llibrary](https://promptlibrary.org/) - Image Prompt Library
* [SD Dynamic Prompts](https://github.com/adieyal/sd-dynamic-prompts) - Dynamic Prompts Extension
* [Stable Horde](https://stablehorde.net/) - Distributed Network of GPUs running Stable Diffusion / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/)
* [NOP / WAS](https://colab.research.google.com/drive/1jUwJ0owjigpG-9m6AI_wEStwimisUE17) - AI Image Generation Colab
* [image-mixer-demo](https://huggingface.co/spaces/lambdalabs/image-mixer-demo), [AITransformer](https://aitransformer.net/) - AI Image Transformers
* [SD Inpainting](https://huggingface.co/spaces/runwayml/stable-diffusion-inpainting), [Inpaint Anything](https://github.com/geekyutao/Inpaint-Anything) or [Lama Cleaner](https://github.com/Sanster/lama-cleaner) - Image Fill / Item Removal
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
* [/r/sdforall](https://www.reddit.com/r/sdforall/) - Stable Diffusion Subreddit
* [TheAlly's Guide](https://civitai.com/models/22881/) - Stable Diffusion Guide * [TheAlly's Guide](https://civitai.com/models/22881/) - Stable Diffusion Guide
* [StableDiffusion Cheatsheet](https://supagruen.github.io/StableDiffusion-CheatSheet/) - Stable Diffusion Cheatsheet * [StableDiffusion Cheatsheet](https://github.com/SupaGruen/StableDiffusion-CheatSheet) - Stable Diffusion Cheatsheet
* [Textard](https://rentry.org/textard) - Textual Inversion Guide * [Textard](https://rentry.org/textard) - Textual Inversion Guide
* [drfar](https://rentry.org/drfar) - InPainting Guide * [drfar](https://rentry.org/drfar) - InPainting Guide
* [AnimAnon](https://rentry.org/AnimAnon) - AI Animation Guide * [AnimAnon](https://rentry.org/AnimAnon) - AI Animation Guide
@ -349,25 +270,20 @@
*** ***
# ► Audio Generation # ► Audio Generators
* ⭐ **[MusicGen](https://huggingface.co/spaces/facebook/MusicGen)** - Text to Music AI * ⭐ **[MusicGen](https://huggingface.co/spaces/facebook/MusicGen)** - Text to Music AI
* ⭐ **[Riffusion](https://www.riffusion.com/)** * ⭐ **[Riffusion](https://www.riffusion.com/)**
* ⭐ **[Suno](https://suno.com/)** / [Wiki](https://sunoaiwiki.com/en) * ⭐ **[Chirp](https://app.suno.ai/)**
* [Wolfram Tones](https://tones.wolfram.com/) * [Wolfram Tones](https://tones.wolfram.com/)
* [StableAudio](https://www.stableaudio.com/)
* [Udio](https://www.udio.com/)
* [audio visual generator](https://fredericbriolet.com/avg/) * [audio visual generator](https://fredericbriolet.com/avg/)
* [Fake Music Generator](https://www.fakemusicgenerator.com/) * [Fake Music Generator](https://www.fakemusicgenerator.com/)
* [Sonauto](https://sonauto.ai/) / [Discord](https://discord.gg/pfXar3ChH8)
* [Jingle](https://aidn.jp/jingle/) * [Jingle](https://aidn.jp/jingle/)
* [BeatOven](https://www.beatoven.ai/) * [BeatOven](https://www.beatoven.ai/)
* [Waveformer](https://waveformer.replicate.dev/) * [Waveformer](https://waveformer.replicate.dev/)
* [SoundDraw](https://soundraw.io/) * [SoundDraw](https://soundraw.io/)
* [Aiva](https://aiva.ai/) * [Aiva](https://aiva.ai/)
* [Boomy](https://boomy.com/) * [Boomy](https://boomy.com/)
* [Melobytes](https://melobytes.com/en)
* [AI Jukebox](https://huggingface.co/spaces/enzostvs/ai-jukebox)
* [Drum Loop AI](https://www.drumloopai.com/) - Drum Loop Generator * [Drum Loop AI](https://www.drumloopai.com/) - Drum Loop Generator
* [WOMBO](https://www.wombo.ai/) - AI Powered Lip Sync * [WOMBO](https://www.wombo.ai/) - AI Powered Lip Sync
@ -375,13 +291,13 @@
## ▷ Text to Speech ## ▷ Text to Speech
* 🌐 **[TTS Arena](https://huggingface.co/spaces/TTS-AGI/TTS-Arena)** - Text to Speech Voting / Leaderboards
* ⭐ **[ElevenLabs](https://beta.elevenlabs.io/)** / [Discord](https://discord.com/invite/elevenlabs) * ⭐ **[ElevenLabs](https://beta.elevenlabs.io/)** / [Discord](https://discord.com/invite/elevenlabs)
* ⭐ **[Uberduck](https://uberduck.ai/)** * ⭐ **[Uberduck](https://uberduck.ai/)**
* ⭐ **[WhisperSpeech](https://huggingface.co/spaces/collabora/WhisperSpeech)** - [Discord](https://discord.com/invite/FANw4rHD5E) * ⭐ **[WhisperSpeech](https://huggingface.co/spaces/collabora/WhisperSpeech)** - [Discord](https://discord.com/invite/FANw4rHD5E)
* ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)** * ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)**
* ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** - [Github](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE) * ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** - [Github](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
* [Balabolka](https://www.cross-plus-a.com/bportable.htm) * [Balabolka](https://www.cross-plus-a.com/bportable.htm)
* [Text To Speech](https://texttospeech.ca/)
* [ttsMP3](https://ttsmp3.com/) * [ttsMP3](https://ttsmp3.com/)
* [Vall-e](https://github.com/enhuiz/vall-e) * [Vall-e](https://github.com/enhuiz/vall-e)
* [TextToMP3](https://www.texttomp3.online/) * [TextToMP3](https://www.texttomp3.online/)
@ -393,10 +309,9 @@
* [TextToSpeech](https://texttospeech.io/) * [TextToSpeech](https://texttospeech.io/)
* [SAPI4](https://tetyys.com/SAPI4/) * [SAPI4](https://tetyys.com/SAPI4/)
* [LazyPY](https://lazypy.ro/tts/) * [LazyPY](https://lazypy.ro/tts/)
* [VoiceCraft](https://github.com/jasonppy/VoiceCraft)
* [Murf.ai](https://murf.ai/) * [Murf.ai](https://murf.ai/)
* [EmotiVoice](https://github.com/netease-youdao/EmotiVoice) * [EmotiVoice](https://github.com/netease-youdao/EmotiVoice)
* [Fish Audio](https://fish.audio/) / [Docs](https://diff.fish.audio) / [GitHub](https://github.com/fishaudio/fish-diffusion) * [Fish Diffusion](https://github.com/fishaudio/fish-diffusion)
* [Audio-WebUI](https://github.com/gitmylo/audio-webui) * [Audio-WebUI](https://github.com/gitmylo/audio-webui)
* [Vanilla Voice](https://www.vanillavoice.com/) * [Vanilla Voice](https://www.vanillavoice.com/)
* [Sam](https://discordier.github.io/sam/), [2](https://simulationcorner.net/index.php?page=sam) / [BetterSam](https://imrane03.github.io/better-sam/) * [Sam](https://discordier.github.io/sam/), [2](https://simulationcorner.net/index.php?page=sam) / [BetterSam](https://imrane03.github.io/better-sam/)
@ -423,15 +338,17 @@
## ▷ Voice Change / Clone ## ▷ Voice Change / Clone
* ⭐ **[Applio](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [Discord](https://discord.com/invite/iahispano) / [Playground](https://applio.org/playground) * ⭐ **[RVC](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [AI Hub's Documentation](https://docs.aihub.wtf/)
* ⭐ **[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/aihub)** - AI Voice Models and Guides * ⭐ **[RVC HFv2](https://huggingface.co/spaces/r3gm/RVC_HFv2)** - Voice Cloning
* ⭐ **[RVC V2](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/en/README.en.md)** - RVC V2 Voice Cloning (locally) * ⭐ **[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/A5rgNwDRd4) or [AI Hub](https://discord.gg/aihub)** - AI Voice Models and Guides
* ⭐ **[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer (W-Okada) - [Guide](https://rentry.co/VoiceChangerGuide) * ⭐ **[Replay](https://www.tryreplay.io/)** - RVC Desktop App
* ⭐ **[Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC)** - RVC V2 Voice Cloning (Cloud/Colab) * ⭐ **[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer
* [Replay](https://www.tryreplay.io/) - RVC Desktop App * [NeuralSVB](https://github.com/MoonInTheRiver/NeuralSVB) - Singing Voice Enhancer
* [Bark with Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning * [Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC) - Voice Cloning
* [RVC_HFv2](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning * [Bark w/ Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning
* [RVC Docs](https://docs.aihub.wtf/) - RVC AI Documentation * [Kits.ai](https://www.kits.ai/) - Voice Cloning
* [Retrieval-based-Voice-Conversion](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
* [OpenVoice](https://github.com/myshell-ai/OpenVoice) - Voice Cloning / [Web UI](https://huggingface.co/spaces/myshell-ai/OpenVoice)
*** ***

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -5,17 +5,20 @@
[TOC2] [TOC2]
*** ***
### FAQ ### FAQ
> How can I improve my privacy online? > How can I tell if a site or download link is safe? Any tips?
We'd recommend checking out privacy guides like [SSD](https://ssd.eff.org/) and [The New Oil](https://thenewoil.org/). Check out the [Booty Guard](https://rentry.org/bootyguard), our basic safety guide. You should also avoid using the sites / software we've listed as unsafe [here](https://fmhy.net/unsafesites). Still feel unsure? Feel free to reach out to us via [Discord](https://discord.gg/5W9QJKuPkD).
> I don't know what seeding or *insert another term* means... > I don't know what seeding or *insert another term* means...
You will find almost all terms related to piracy and more in [The Piracy Glossary](https://rentry.org/the-piracy-glossary). Didn't find what you're looking for or still confused? Reach out to us via [Discord](https://discord.gg/5W9QJKuPkD). You will find almost all terms related to piracy and more in [The Piracy Glossary](https://rentry.org/the-piracy-glossary). Didn't find what you're looking for or still confused? Reach out to us via [Discord](https://discord.gg/5W9QJKuPkD).
> How can I download Photoshop / Adobe Products for free?
You can download pre-cracked Adobe products from [M0nkrus](https://w14.monkrus.ws/) by following [this guide](https://rentry.co/adobesoftware). Alternatively, you could patch them yourself by following [these guides](https://www.reddit.com/r/GenP/wiki/index/) / [2](https://genpguides.github.io/).
!!!info M0nkrus is a well-trusted and reputable source for Adobe software in the piracy community.
> How can I download / activate Windows or Microsoft Office for free? > How can I download / activate Windows or Microsoft Office for free?
For Windows check out this [section](#windows-piracy), and for Microsoft Office check out this [guide](https://gravesoft.dev/download_windows_office/office_c2r_links/). For Windows check out this [section](#windows-piracy), and for Microsoft Office check out this [guide](https://massgrave.dev/office_c2r_links.html).
> Where can I find *insert game title / movie title*? > Where can I find *insert game title / movie title*?
You can use [WhereYouWatch](https://whereyouwatch.com) for finding movies, and for new movies it's a good idea to keep an eye on [r/movieleaks](https://reddit.com/r/movieleaks) as well. You should also be able to find most movies you're looking for in the [streaming section](#streaming). For games, you can use [Rezi](https://rezi.one) or any other site listed [here](https://fmhy.net/gamingpiracyguide#download-games), and for newly released games check out [r/crackwatch](https://reddit.com/r/crackwatch). You can use [WhereYouWatch](https://whereyouwatch.com) for finding movies, and for new movies it's a good idea to keep an eye on [r/movieleaks](https://reddit.com/r/movieleaks) as well. You should also be able to find most movies you're looking for in the [streaming section](#streaming). For games, you can use [Rezi](https://rezi.one) or any other site listed [here](https://fmhy.net/gamingpiracyguide#download-games), and for newly released games check out [r/crackwatch](https://reddit.com/r/crackwatch).
@ -27,29 +30,30 @@ You can use [WhereYouWatch](https://whereyouwatch.com) for finding movies, and f
Use the tools listed [here](https://fmhy.net/gamingpiracyguide#steam-epic) to unlock DLCs. Use the tools listed [here](https://fmhy.net/gamingpiracyguide#steam-epic) to unlock DLCs.
> Should I install and use *insert random antivirus software* instead of using Windows Defender? > Should I install and use *insert random antivirus software* instead of using Windows Defender?
No, don't do that. Windows Defender is more than enough to keep you safe, but if you're still set on installing a secondary AV, the only one worth installing is Malwarebytes. Please read the note [here](#anti-virus). No, don't do that. Windows Defender is more than enough to keep you safe, but if you're still set on installing a secondary AV, the only one worth installing is Malwarebytes. Please read the note [here](#anti-virus).
!!!warning Stay away from Avast, Norton, and McAfee, as these are "bloatware" and generally unsafe software. !!!warning Stay away from Avast, Norton, and McAfee, as these are "bloatware" and generally unsafe software.
> How can I bypass a paywalled article? > How can I bypass a paywalled article?
Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases) / [filter list](https://github.com/bpc-clone/bypass-paywalls-clean-filters) to read the article easily. Use [this](https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/src/master/) / [2](https://gitlab.com/magnolia1234/bypass-paywalls-chrome-clean) to read the article easily.
> How can I download an image from *insert stock image site*? > How can I download an image from *insert stock image site*?
You can use [this downloader](https://downloader.la/), and if it doesn't work you can find other stock image downloaders [here](https://fmhy.net/img-tools#stock-photos). You can use [this downloader](https://downloader.la/), and if it doesn't work you can find other stock image downloaders [here](https://fmhy.net/img-tools#stock-photos).
*** ***
### Windows Piracy ### Windows Piracy
**[Windows ISOs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)** - Download Windows **[Windows ISOs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)** - Download Windows
**[Windows Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** - Activate Windows **[Windows Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** - Activate Windows
**[Windows Piracy Guide](https://rentry.org/windows_piracy)** - How to Pirate windows
*** ***
### Linux Piracy ### Linux Piracy
**[Linux Distros](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_linux_distros)** - Download Linux Distros **[Linux Distros](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_distros)** - Download Linux Distros
**[Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** - Piracy Guide for Linux **[Linux Piracy](https://rentry.co/LinuxPiracy) / [Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** - Piracy Guide for Linux
**[Torrminatorr](https://forum.torrminatorr.com/)** / **[Kapital Sin](https://kapitalsin.com/)** - Download Linux Games **[Torrminatorr](https://forum.torrminatorr.com/) / [Kapital Sin](https://kapitalsin.com/)** - Download Linux Games
**[TorrFlix](https://github.com/infinity-plus/TorrFlix)** - Torrent Streaming CLI
**[ani-cli](https://github.com/pystardust/ani-cli)** - Anime Streaming Terminal **[ani-cli](https://github.com/pystardust/ani-cli)** - Anime Streaming Terminal
*** ***
@ -82,14 +86,14 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
**[Twitch Adblockers](https://fmhy.net/social-media-tools#twitch-adblockers)** - Block Twitch ads **[Twitch Adblockers](https://fmhy.net/social-media-tools#twitch-adblockers)** - Block Twitch ads
**[Redirect Skippers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** - Bypass redirect sites **[Redirect Skippers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** - Bypass redirect sites
!!!note Don't run multiple general adblockers like ublock and adblock plus at the same time. Running more than one can [cause breakage](https://twitter.com/gorhill/status/1033706103782170625). This only applies to general adblockers, so running things like ublock and sponsorblock at the same time is fine. !!!note Don't run multiple general adblockers like ublock and adblock plus at the same time. Running more than one can cause breakage. This only applies to general adblockers, so running things like ublock and sponsorblock at the same time is fine.
*** ***
### Anti-virus ### Anti-virus
**[VirusTotal](https://www.virustotal.com)** - Test the safety of files **[VirusTotal](https://www.virustotal.com) / [Kaspersky Cloud](https://opentip.kaspersky.com/)** - Test the safety of files
**[VTGuide](https://rentry.co/VTGuide)** - Virus scan results guide **[Guide for VirusTotal](https://rentry.org/Guide4VirusTotal)** - Virus scan results guide
**[Malwarebytes Premium](https://rentry.co/FMHYBase64#malwarebytes-prem)** - Antivirus software **[Malwarebytes Premium](https://rentry.co/FMHYBase64#malwarebytes-prem)** - Antivirus software
!!!note Antivirus software is usually bloatware. Stick to trusted sources for games and software and you will be fine with nothing but Windows Defender and an occasional Malwarebytes scan. Remember to always scan software before installing it with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**. !!!note Antivirus software is usually bloatware. Stick to trusted sources for games and software and you will be fine with nothing but Windows Defender and an occasional Malwarebytes scan. Remember to always scan software before installing it with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
@ -98,14 +102,15 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
### Privacy ### Privacy
**[Privacy Guides](https://www.privacyguides.org/)** - Privacy guides **[Privacy Guides](https://www.privacyguides.org/)** - Privacy guides
**[DuckDuckGo](https://duckduckgo.com/) / [Mojeek](https://www.mojeek.com/)** - Tracker-free web search **[DuckDuckGo](https://duckduckgo.com/) / [Mojeek](https://www.mojeek.com/)** - Tracker-free web search
**[ProtonMail](https://proton.me/mail)** - Encrypted email service **[ProtonMail](https://protonmail.com/)** - Encrypted email service
**[Email Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_email_privacy)** - Email privacy resources **[Email Aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_email_aliasing)** - Email alias forwarding
**[Aegis](https://getaegis.app/) / [Ente](https://github.com/ente-io/auth/)** - 2FA to prevent logins without user authentication **[Aegis](https://getaegis.app/) / [Ente](https://github.com/ente-io/auth/)** - 2FA to prevent logins without user authentication
**[Password Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_password_managers)** - Save multiple passwords **[Password Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_password_managers)** - Save multiple passwords
**[HaveIBeenPwned](https://haveibeenpwned.com/)** - Get notified when your email or phone number has been found in a data breach **[HaveIBeenPwned](https://haveibeenpwned.com/)** - Get notified when your email or phone number has been found in a data breach
**[VPN List](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** - VPN index **[VPN List](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** - VPN index
**[File Encryption Tools](https://fmhy.pages.dev/storage/#file-encryption-tools)** - File encryption apps / tools
!!!note Note that a VPN is not needed outside torrenting. You can avoid the need for one altogether by sticking to direct download and streaming sites. !!!note Note that a VPN is not needed outside torrenting. You can avoid the need for one altogether by sticking to direct download and streaming sites.
@ -113,11 +118,11 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
### Streaming ### Streaming
**[movie-web](https://erynith.github.io/movie-web-instances/) + [Add Sources](https://pastebin.com/RHXHtXJZ) / [Braflix](https://www.braflix.ru/) / [watch.lonelil](https://watch.lonelil.ru/) / [FMovies](https://fmovies24.to/) / [Binged](https://binged.live/)** - Fast movie / TV streaming **[lonelil](https://watch.lonelil.com/) / [Braflix](https://www.braflix.app/) / [FMovies](https://fmoviesz.to/)** - Fast movie / TV streaming
**[HiAnime](https://hianime.to/)** - Fast anime streaming **[AniWatch](https://aniwatch.to/) / [AniWave](https://aniwave.to/)** - Fast anime streaming
**[Dramacool](https://dramacool.cy/)** - Fast Asian drama streaming **[Dramacool](https://dramacool.cy/)** - Fast Asian drama streaming
**[SportsSurge](https://v2.sportsurge.net/home4/)** - Live sports streaming **[SportsSurge](https://sportsurge.net/)** - Live sports streaming
**[Spotify](https://spotify.com/) / [YouTube Music](https://music.youtube.com/)** - Music & podcast streaming / [Spotify Adblock](https://github.com/SpotX-Official/SpotX) **[Spotify](https://spotify.com/) / [YouTube Music](https://music.youtube.com/)** - Music & podcast streaming / [Spotify Adblock](https://github.com/amd64fox/SpotX)
**[Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0)**, [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search **[Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0)**, [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search
**[TV CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg)** - Multi-site TV search **[TV CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg)** - Multi-site TV search
**[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei) / [2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu)** - Multi-site anime search **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei) / [2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu)** - Multi-site anime search
@ -127,19 +132,20 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
### Downloading ### Downloading
**[LRepacks](https://lrepacks.net/) / [CRACKSurl](https://cracksurl.com/) / [M0nkrus](https://w14.monkrus.ws/)** - Trusted software sites **[LRepacks](https://lrepacks.net/)** or **[CRACKSurl](https://cracksurl.com/)** - Trusted software sites
**[Pahe](https://pahe.ink/)** - Fast video downloads **[OlaMovies](https://olamovies.bar/)** - Fast video downloads
**[FitGirl Repacks](https://fitgirl-repacks.site/)** / [Discord](https://discord.gg/Up3YARe4RW) / **[SteamRIP](https://steamrip.com/)** - Game download sites **[FitGirl Repacks](https://fitgirl-repacks.site/) / [SteamRIP](https://steamrip.com/) / [GOG-Games](https://gog-games.to/)** - Game download sites / [FitGirl Discord](https://discord.gg/Up3YARe4RW)
**[Vimms Lair](https://vimm.net/) / [No-Intro](https://rentry.co/FMHYBase64#no-intro)** - ROM download sites / [Emulators](https://emulation.gametechwiki.com/)
**[Firehawk52](https://rentry.org/firehawk52)** - Music ripping guide **[Firehawk52](https://rentry.org/firehawk52)** - Music ripping guide
**[lucida](https://lucida.to/) / [DoubleDouble](https://doubledouble.top/)** - Multi-Site audio download **[DoubleDouble](https://doubledouble.top/)** - Multi-Site audio download
**[Free MP3 Download](https://free-mp3-download.net/)** - MP3 / FLAC downloads
**[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Audio download app **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Audio download app
**[squid.wtf](https://squid.wtf/)** - Deezer FLAC download
**[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z) / [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h)** - Multi-site download search **[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z) / [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h)** - Multi-site download search
**[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr#gsc.tab=0) / [2](https://cse.google.com/cse?cx=89f2dfcea452fc451) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578#gsc.tab=0)** - Multi-site video download search **[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr#gsc.tab=0) / [2](https://cse.google.com/cse?cx=89f2dfcea452fc451) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578#gsc.tab=0)** - Multi-site video download search
**[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)** - Multi-site anime download search **[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)** - Multi-site anime download search
**[Game Download CSE](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_download_cse)** - Multi-site game download search **[Game Download CSE](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_download_cse)** - Multi-site game download search
**[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io) / [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578)** - Multi-site audio download search **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io) / [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578)** - Multi-site audio download search
!!!note When using DDLs, it's generally recommended to use a download manager such as JDownloader, as they improve the ease of downloading along with the speed. You can find them listed [here](https://fmhy.net/file-tools#download-managers). !!!note When using DDLs, it's generally recommended to use a download manager such as Internet Download Manager (IDM) or JDownloader, as they improve the ease of downloading along with the speed. You can find them listed [here](https://fmhy.net/file-tools#download-managers).
*** ***
### Torrenting ### Torrenting
@ -161,8 +167,8 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
### Reading ### Reading
**[Mobilism](https://forum.mobilism.org) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Annas Archive](https://annas-archive.gs/)** / [2](https://annas-archive.se/) - Books, audiobooks, comics & more **[Mobilism](https://forum.mobilism.org) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Annas Archive](https://annas-archive.org/)** - Books, audiobooks, comics & more
**[Audiobook Bay](https://audiobookbay.is/)** - Audiobook torrents / **Avoid fake DL links, use [Torrents / Magnets](https://i.ibb.co/8sV2061/0fa8159b11bb.png)** **[Audiobook Bay](https://audiobookbay.is/)** - Audiobook torrents / Avoid fake DL links, use [Torrents / Magnets](https://i.ibb.co/8sV2061/0fa8159b11bb.png)
**[ReadComicsOnline](https://readcomiconline.li/)** - Read comics online **[ReadComicsOnline](https://readcomiconline.li/)** - Read comics online
**[MangaReader](https://mangareader.to/)** - Read manga online **[MangaReader](https://mangareader.to/)** - Read manga online
**[Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8) / [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu) / [3](https://cse.google.com/cse?cx=e9657e69c76480cb8) / [4](https://cse.google.com/cse?cx=c46414ccb6a943e39) / [5](https://ravebooksearch.com/)** - Multi-site book search **[Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8) / [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu) / [3](https://cse.google.com/cse?cx=e9657e69c76480cb8) / [4](https://cse.google.com/cse?cx=c46414ccb6a943e39) / [5](https://ravebooksearch.com/)** - Multi-site book search
@ -178,15 +184,16 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
**[Android AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** / **[iOS AdGuard Premium](https://rentry.co/FMHYBase64#adguard-pro-ios)** - Adblocking app **[Android AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** / **[iOS AdGuard Premium](https://rentry.co/FMHYBase64#adguard-pro-ios)** - Adblocking app
**[Android Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk)** / **[iOS Modded Spotify](https://rentry.co/FMHYBase64#spotify)** - Modded Spotify **[Android Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk)** / **[iOS Modded Spotify](https://rentry.co/FMHYBase64#spotify)** - Modded Spotify
**[Cromite](https://github.com/uazo/cromite) / [Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/) / [Kiwi](https://play.google.com/store/apps/details?id=com.kiwibrowser.browser&hl=en_US&gl=US)** - Android web browsers **[Cromite](https://github.com/uazo/cromite) / [Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/) / [Kiwi](https://play.google.com/store/apps/details?id=com.kiwibrowser.browser&hl=en_US&gl=US)** - Android web browsers
**[Brave](https://apps.apple.com/us/app/brave-private-web-browser-vpn/id1052879175)** - iOS web browser / [Improve Safari](https://apps.apple.com/us/app/hyperweb/id1581824571)
**[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Modded APKs **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Modded APKs
**[/r/ApkApps Megathread](https://apksapps.notion.site/apksapps/096ef38f452342ba99b4e1509a449729?v=9970360b443643789c333bd2c7180009)** - Updated list of modded APKs / [Subreddit](https://www.reddit.com/r/ApksApps) / [Discord](https://discord.gg/Kr5EWKZU5Y) **[/r/ApkApps Megathread](https://apksapps.notion.site/apksapps/096ef38f452342ba99b4e1509a449729?v=9970360b443643789c333bd2c7180009)** - Updated list of modded APKs / [Subreddit](https://www.reddit.com/r/ApksApps) / [Discord](https://discord.gg/Kr5EWKZU5Y)
**[APKMirror](https://www.apkmirror.com/)** - Untouched APKs **[APKMirror](https://www.apkmirror.com/)** - Untouched APKs
**[F-Droid](https://f-droid.org/)** - FOSS Android Apps **[F-Droid](https://f-droid.org/)** - FOSS Android Apps
**[Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8) / [2](https://cse.google.com/cse?cx=73948689c2c206528) / [3](https://cse.google.com/cse?cx=a805854b6a196d6a6)** - Multi-site APK search **[Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8) / [2](https://cse.google.com/cse?cx=73948689c2c206528) / [3](https://cse.google.com/cse?cx=a805854b6a196d6a6)** - Multi-site APK search
**[Stremio](https://www.stremio.com/)** - Video streaming app / Use VPN / [Guide](https://rentry.co/privatestremio) **[Stremio](https://www.stremio.com/)** - Video streaming app / Use VPN
**[Patch Reddit Clients](https://docs.google.com/document/u/0/d/1wHvqQwCYdJrQg4BKlGIVDLksPN0KpOnJWniT6PbZSrI/mobilebasic)** - How To Patch 3rd Party Reddit Clients **[Patch Reddit Clients](https://docs.google.com/document/u/0/d/1wHvqQwCYdJrQg4BKlGIVDLksPN0KpOnJWniT6PbZSrI/mobilebasic)** - How To Patch 3rd Party Reddit Clients
**[ReVanced Manager](https://github.com/revanced/revanced-manager)** - Ad-Free YouTube, Reddit, X etc. Patcher / [Discord](https://discord.com/invite/rF2YcEjcrT) / [Guide](https://redd.it/xlcny9) **[ReVanced Manager](https://github.com/revanced/revanced-manager)** - Ad-free YouTube / [Discord](https://discord.com/invite/rF2YcEjcrT)
**[Complete Jailbreak Chart](https://ios.cfw.guide/)** - Jailbreaking info & tools **[Complete Jailbreak Chart](https://appledb.dev/)** - Jailbreaking info & tools / [Discord](https://discord.gg/rtfNDxnJfB)
*** ***
@ -199,6 +206,7 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
**[Download Managers](https://fmhy.net/file-tools#download-managers)** - Manage file downloads **[Download Managers](https://fmhy.net/file-tools#download-managers)** - Manage file downloads
**[File Archivers](https://fmhy.net/file-tools#file-archivers)** - Unzip / Compress files **[File Archivers](https://fmhy.net/file-tools#file-archivers)** - Unzip / Compress files
**[OpenSubtitles](https://opensubtitles.org/)** - Most popular subtitles site **[OpenSubtitles](https://opensubtitles.org/)** - Most popular subtitles site
**[HolyUnblocker](https://www.holyubofficial.net/)** - View sites blocked by ISP / school
**[Unsafe Sites / Software](https://redd.it/10bh0h9)** - Things we recommend avoiding **[Unsafe Sites / Software](https://redd.it/10bh0h9)** - Things we recommend avoiding
*** ***

File diff suppressed because it is too large Load Diff

View File

@ -1,306 +1,308 @@
*** ***
*** ***
**[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)** **[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)**
*** ***
*** ***
# ► Download Directories # ► Download Directories
* **Note** - Some Open Directories grab IP's, so use a VPN or Tor when accessing them. **Note** - Some Open Directories grab IP's, so use a VPN or Tor when accessing them.
*** ***
* 🌐 **[/r/opendirectories](https://www.reddit.com/r/opendirectories/)** - Open Directories Subreddit / [Telegram](https://t.me/r_OpenDirectories) / [/u/ODScanner](https://reddit.com/u/ODScanner) * 🌐 **[/r/opendirectories](https://www.reddit.com/r/opendirectories/)** - Open Directories Subreddit / [Telegram](https://t.me/r_OpenDirectories) / [/u/ODScanner](https://reddit.com/u/ODScanner)
* ↪️ **[Open Directory Search String Builders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_open_directory_search_string_builder)**, [2](https://redd.it/933pzm), [3](https://redd.it/g4kfem), [4](https://redd.it/lj0a1e) * 🌐 **[smolOD](https://rentry.co/FMHYBase64#smolod)** - Small Open Directories
* ↪️ **[Google Piracy Groups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_google_piracy_discussion_groups)** * ↪️ **[Open Directory Indexes](https://rentry.co/FMHYBase64#open-directory-indexes)**
* ⭐ **[Directory Lister](https://directorylister.com/)** - Open Directory Explorer * ↪️ **[Open Directory Search String Builders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_open_directory_search_string_builder)**, [2](https://redd.it/933pzm), [3](https://redd.it/g4kfem), [4](https://redd.it/lj0a1e)
* ⭐ **[EyeDex](https://www.eyedex.org/)**, [ODCrawler](https://odcrawler.xyz/), [ODS](https://sites.google.com/view/l33tech/tools/ods) or [mmnt](https://www.mmnt.net/) - Open Directory Search Engines * ↪️ **[Google Piracy Groups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_google_piracy_discussion_groups)**
* [mega.archive (Discord)](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive * ⭐ **[Directory Lister](https://directorylister.com/)** - Open Directory Explorer
* [GDrive Server](https://telegra.ph/GDrive-Server-Direct-Links-06-28) * ⭐ **[EyeDex](https://www.eyedex.org/)**, [ODCrawler](https://odcrawler.xyz/), [OpenSho](https://opendirindex.opensho.com/), [ODS](https://sites.google.com/view/l33tech/tools/ods) or [mmnt](https://www.mmnt.net/) - Open Directory Search Engines
* [Napalm FTP](https://www.searchftps.net/), [Mamont](https://www.mmnt.ru/int/) or [Search-22](https://search-22.com/ftp-search-tools) - FTP Search * ⭐ **[TG Archive](https://tgarchive.eu.org/)** - Telegram File Search
* [dedigger](https://www.dedigger.com/) - GDrive File Search * [mega.archive](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive
* [Sala De Espera](https://matrix.to/#/!qbOtnJEDGsPuWZBHLX:matrix.org?via=matrix.org) - Drive Sharing Community * [GDrive Server](https://telegra.ph/GDrive-Server-Direct-Links-06-28)
* [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer * [Napalm FTP](https://www.searchftps.net/), [Mamont](https://www.mmnt.ru/int/) or [Search-22](https://search-22.com/ftp-search-tools) - FTP Search
* [Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0) - Search Pastebin Directories * [dedigger](https://www.dedigger.com/) - GDrive File Search
* [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive * [Sala De Espera](https://matrix.to/#/!qbOtnJEDGsPuWZBHLX:matrix.org?via=matrix.org) / [Discord](https://discord.gg/ZRhpUtzvkC) - Drive Sharing Community
* [Defacto2](https://defacto2.net/home) - Scene / Sub-Scene Database * [Create Open Directory Search Engine](https://redd.it/d3w2fu)
* [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer
*** * [Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0) - Search Pastebin Directories
* [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive
# ► Download Sites * [Defacto2](https://defacto2.net/home) - Scene / Sub-Scene Database
* **Note** - General DDL sites use a lot of different sources, so it's best to avoid them for anything you install, like software, games or APKs. You can also use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners. ***
*** # ► Download Sites
* ⭐ **[Archive.org](https://archive.org/)** - Video / Audio / Magazines / Newspapers / ROMs / [Downloader](https://github.com/MiniGlome/Archive.org-Downloader) / [CLI](https://github.com/jjjake/internetarchive) **Note** - General DDL sites use a lot of different sources, so it's best to avoid them for anything you install, like software, games or APKs. You can also use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners.
* ⭐ **[The Eye](https://beta.the-eye.eu/)** - Audio / Books / Comics / Magazines / [Discord](https://discord.com/invite/the-eye)
* ⭐ **[DirtyWarez](https://forum.dirtywarez.com/)** - Video / Audio / Books / Comics ***
* ⭐ **[/r/DataHoarder](https://reddit.com/r/DataHoarder)**, [Data Horde](https://datahorde.org/), [Archive Team](https://wiki.archiveteam.org/) / [Subreddit](https://www.reddit.com/r/Archiveteam/), [Gnutella Forums](https://www.gnutellaforums.com/) or [FileSharingTalk](https://filesharingtalk.com/forum.php) - File Hoarding Forums
* [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end) * ⭐ **[Archive.org](https://archive.org/)** - Video / Audio / Magazines / Newspapers / ROMs / [Downloader](https://github.com/MiniGlome/Archive.org-Downloader) / [CLI](https://github.com/jjjake/internetarchive)
* [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics * ⭐ **[The Eye](https://beta.the-eye.eu/)** - Audio / Books / Comics / Magazines / [Discord](https://discord.com/invite/the-eye)
* [rlsbb](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://comment.rlsbb.cc/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker) * ⭐ **[DownloadHa](https://www.downloadha.com)** - Video / Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [Adit-HD](https://www.adit-hd.com/) - Video / Audio / Books * ⭐ **[DirtyWarez](https://forum.dirtywarez.com/)** - Video / Audio / Books / Comics
* [AsanDL](http://asandl.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * ⭐ **[/r/DataHoarder](https://reddit.com/r/DataHoarder)**, [Data Horde](https://datahorde.org/), [Archive Team](https://wiki.archiveteam.org/) / [Subreddit](https://www.reddit.com/r/Archiveteam/), [Gnutella Forums](https://www.gnutellaforums.com/) or [FileSharingTalk](https://filesharingtalk.com/forum.php) - File Hoarding Forums
* [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses * [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end)
* [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW * [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics
* [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines * [rlsbb](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://comment.rlsbb.cc/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker)
* [Sbenny's Forum](https://forum.sbenny.com/) - Video / Audio / ROMs / Books / [Discord](https://discord.gg/kf9FKQx) * [Adit-HD](https://www.adit-hd.com/) - Video / Audio / Books
* [CyberPhoenix](http://www.cyberphoenix.org/forum/) - Video / Audio / ROMs / Books / Magazines / Comics * [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses
* [dreamteamdownloads1](https://www.dreamteamdownloads1.com/index.php) - Video / Audio / ROMs / Books / Magazines * [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW
* [DownDuck](https://www.downduck.com/) - Video / Audio / Books / Magazines * [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines
* [AllYouLike](https://allyoulike.org/) - Video / Audio Books / Magazines / ROMs / Comics / NSFW * [Sbenny's Forum](https://forum.sbenny.com/) - Video / Audio / ROMs / Books / [Discord](https://discord.gg/kf9FKQx)
* [DDLValley](https://www.ddlvalley.me/) - Video / Audio / ROMs / Books / Comics / Magazines / [Forum](https://forum.ddlvalley.me/) * [CyberPhoenix](http://www.cyberphoenix.org/forum/) - Video / Audio / ROMs / Books / Magazines / Comics
* [MaxRelease](https://max-rls.com/) - Video / Audio / Magazines * [dreamteamdownloads1](https://www.dreamteamdownloads1.com/index.php) - Video / Audio / ROMs / Books / Magazines
* [DarkSoftware](https://darksoftware.net/) - Video / Audio / ROMs * [DownDuck](https://www.downduck.com/) - Video / Audio / Books / Magazines
* [2DDL](https://2ddl.it/) - Video / Audio / Books / Comics / Magazines * [AllYouLike](https://allyoulike.org/) - Video / Audio Books / Magazines / ROMs / Comics / NSFW
* [WarezLover](https://warezlover.xyz/) - Video / Audio / ROMs / Books / Magazines * [DDLValley](https://www.ddlvalley.me/) - Video / Audio / ROMs / Books / Comics / Magazines / [Forum](https://forum.ddlvalley.me/)
* [TFPDL](https://tfpdl.se/), [2](https://tfpdl.to/) - Video / Magazines / NSFW * [MaxRelease](https://max-rls.com/) - Video / Audio / Magazines
* [WarezLoad](https://warezload.net/index.php) - Video / Audio / Books * [DarkSoftware](https://darksoftware.net/) - Video / Audio / ROMs
* [Katz DDL](https://katzddl.net/) - Video / Audio / Books / NSFW * [2DDL](https://2ddl.it/) - Video / Audio / Books / Comics / Magazines
* [FreshWAP](https://www.freshwap.us/), [2](https://freshwap.cc/) - Video / Audio / Books / Magazines * [WarezLover](https://warezlover.xyz/) - Video / Audio / ROMs / Books / Magazines
* [BadshahUploads](https://badshahuploads.xyz/) - Video / Audio / Books / Leech Required * [TFPDL](https://tfpdl.se/), [2](https://tfpdl.to/) - Video / Magazines / NSFW
* [FrostClick](https://www.frostclick.com/wp/) - Video / Audio / Books * [WarezLoad](https://warezload.net/index.php) - Video / Audio / Books
* [The Ambassador](https://ambassadorddl.site/) - Video / Books * [Katz DDL](https://katzddl.net/) - Video / Audio / Books / NSFW
* [Leaker](https://leaker.me/) - Video / Audio * [FreshWAP](https://www.freshwap.us/), [2](https://freshwap.cc/) - Video / Audio / Books / Magazines
* [TehParadox](https://www.tehparadox.net/) - Video / Audio / Books / Magazines / ROMs * [BadshahUploads](https://badshahuploads.xyz/) - Video / Audio / Books / Leech Required
* [wJungle](https://wjungle.net/) - Video / Audio / Books / NSFW * [FrostClick](https://www.frostclick.com/wp/) - Video / Audio / Books
* [PuZo](https://www.puzo.org/) - Video / Audio / Books / Audiobooks / NSFW * [The Ambassador](https://ambassadorddl.site/) - Video / Books
* [Warez-Serbia](https://www.warez-serbia.com/) - Video / Audio / Books / Magazines / NSFW * [Leaker](https://leaker.me/) - Video / Audio
* [Warez Heaven](https://www.warezheaven.com/index.php) - Video / Audio / ROMs / Books / NSFW * [TehParadox](https://www.tehparadox.net/) - Video / Audio / Books / Magazines / ROMs
* [Download.ir](https://download.ir/) - Video / ROMs * [wJungle](https://wjungle.net/) - Video / Audio / Books / NSFW
* [SceneSource](https://www.scnsrc.me/), [2](https://www.scenesource.me/) - Video / Audio / ROMs / Books * [PuZo](https://www.puzo.org/) - Video / Audio / Books / Audiobooks / NSFW
* [Amader Forum](https://amaderforum.net/) - Video / Books / NSFW * [Warez-Serbia](https://www.warez-serbia.com/) - Video / Audio / Books / Magazines / NSFW
* [Download For All](https://dl4all.org/), [2](https://dl4all.biz/) - Video / Audio / Books / Magazines * [Warez Heaven](https://www.warezheaven.com/index.php) - Video / Audio / ROMs / Books / NSFW
* [ddlspot](https://www.ddlspot.com/) - Video / Audio * [Download.ir](https://download.ir/) - Video / ROMs
* [Uploadgig](https://uploadgig.me/) - Video / Audio / Books / Audiobooks / Magazines / NSFW * [SceneSource](https://www.scnsrc.me/), [2](https://www.scenesource.me/) - Video / Audio / ROMs / Books
* [Warez-World](https://warez-world.org/) - Video / Audio / Books / Magazines / NSFW * [Amader Forum](https://amaderforum.net/) - Video / Books / NSFW
* [0DayDDL](https://0dayddl.com/) - Video / Audio / Books / Magazines * [Download For All](https://dl4all.org/), [2](https://dl4all.biz/) - Video / Audio / Books / Magazines
* [Downturk.net](https://www.downturk.net/) - Video / Audio / Books * [ddlspot](https://www.ddlspot.com/) - Video / Audio
* [SoftArchive](https://softarchive.is/), [2](https://sanet.lc/), [3](https://sanet.st) - Video / Audio / Books / Comics / Newspapers / Magazines / [Status](https://sastatus.com/) / [Avoid Software / Games](https://pastebin.com/DyXv0MGR) * [Uploadgig](https://uploadgig.me/) - Video / Audio / Books / Audiobooks / Magazines / NSFW
* [Pouet](https://www.pouet.net/prodlist.php) - Demos / Cracktros * [Warez-World](https://warez-world.org/) - Video / Audio / Books / Magazines / NSFW
* [Redump](http://redump.org/) - Disc Preservation Project * [0DayDDL](https://0dayddl.com/) - Video / Audio / Books / Magazines
* [DemoZoo](https://demozoo.org/) or [scene.org](https://files.scene.org/) - Demoscene Archive / [Wiki](https://en.wikipedia.org/wiki/Demoscene) * [Downturk.net](https://www.downturk.net/) - Video / Audio / Books
* [Ubu](https://ubuweb.com/) - Avant-Garde Artifacts * [SoftArchive](https://softarchive.is/), [2](https://sanet.lc/), [3](https://sanet.st) - Video / Audio / Books / Comics / Newspapers / Magazines / [Status](https://sastatus.com/) / [Avoid Software / Games](https://pastebin.com/DyXv0MGR)
* [Pouet](https://www.pouet.net/prodlist.php) - Demos / Cracktros
*** * [Redump](http://redump.org/) - Disc Preservation Project
* [DemoZoo](https://demozoo.org/) or [scene.org](https://files.scene.org/) - Demoscene Archive / [Wiki](https://en.wikipedia.org/wiki/Demoscene)
## ▷ Search Sites * [Ubu](https://ubuweb.com/) - Avant-Garde Artifacts
* **Note** - These aggregate from multiple sources, so it's best to avoid them for software / games. ***
*** ## ▷ Search Sites
* ⭐ **[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h) - Multi-Site Search **Note** - These aggregate from multiple sources, so it's best to avoid them for software / games.
* ⭐ **[FilePursuit](https://filepursuit.com)** - [Discord](https://discord.gg/xRfFd8h)
* ⭐ **[4Shared](https://www.4shared.com/)** ***
* ⭐ **[Hatt](https://github.com/FrenchGithubUser/Hatt)** - File Search App
* [Meawfy](https://meawfy.com/) - Mega.nz Search * ⭐ **[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h) - Multi-Site Search
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1) * ⭐ **[FilePursuit](https://filepursuit.com)** - [Discord](https://discord.gg/xRfFd8h)
* [scnlog](https://scnlog.me/) * ⭐ **[4Shared](https://www.4shared.com/)**
* [fidigger](https://fidigger.com/) * ⭐ **[Hatt](https://github.com/FrenchGithubUser/Hatt)** - File Search App
* [filesearch.link](https://filesearch.link/) * [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1)
* [Linktury](https://www.linktury.com/) * [scnlog](https://scnlog.me/)
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search * [filesearch.link](https://filesearch.link/)
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine * [Linktury](https://www.linktury.com/)
* [SunXDCC](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine * [WarezOmen](https://warezomen.com/) - Indexer / Search Engine
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files * [SunXDCC](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files
***
***
## ▷ [Video Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_download_sites)
## ▷ [Video Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_download_sites)
***
***
## ▷ [Anime Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25B7_anime_downloading)
## ▷ [Anime Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25B7_anime_downloading)
***
***
## ▷ [Educational Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25BA_downloading)
## ▷ [Educational Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25BA_downloading)
***
***
## ▷ [Game Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25BA_download_games)
## ▷ [Game Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25BA_download_games)
***
***
## ▷ [Audio Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_audio_downloading)
## ▷ [Audio Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_audio_downloading)
***
***
# ► Software Sites
# ► Software Sites
* **Note** - Remember to always scan software before installing with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
**Note** - Remember to always scan software before installing with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
***
***
* ↪️ **[Windows ISOs / Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)**
* ⭐ **[LRepacks](https://lrepacks.net/)** * ⭐ **[LRepacks](https://lrepacks.net/)**
* ⭐ **[CRACKSurl](https://cracksurl.com/)** - [Telegram](https://t.me/cracksurldotcom) * ⭐ **[CRACKSurl](https://cracksurl.com/)** - [Telegram](https://t.me/cracksurldotcom)
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/) * ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/)
* ⭐ **[soft98](https://soft98.ir/)** - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * ⭐ **[nsane.down](https://www.nsaneforums.com/)** - Signup Required
* ⭐ **[Game Bounty Software](https://gamebounty.world/software/)** - Download / [Discord](https://dsc.gg/gamebounty) * ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search
* ⭐ **[Nsane Forums](https://www.nsaneforums.com/)** - Signup Required * [AIOWares](https://www.aiowares.com/)
* ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search * [TheMicroTech](https://programs.themicrotech.net/)
* [AIOWares](https://www.aiowares.com/) * [soft98](https://soft98.ir/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [TheMicroTech](https://programs.themicrotech.net/) * [Patoghu](https://patoghu.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [DownloadHa](https://www.downloadha.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [Softlay](https://www.softlay.com/downloads/)
* [Patoghu](https://patoghu.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [Mutaz.net](https://www.mutaz.net/)
* [Softlay](https://www.softlay.com/downloads/) * [Heidoc](https://www.heidoc.net/joomla/)
* [Mutaz](https://www.mutaz.pro/) * [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/)
* [Heidoc](https://www.heidoc.net/joomla/) * [SamLab](https://samlab.ws/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [AsanDL](http://asandl.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns)
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/) * [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels
* [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns) * [Rarewares](https://www.rarewares.org/) - Rare Software
* [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels * [PLC4Me](https://plc4me.com/) - Automation Software
* [Rarewares](https://www.rarewares.org/) - Rare Software * [civileng_soft](https://t.me/civileng_soft) - Civil Engineering Software
* [PLC4Me](https://plc4me.com/) - Automation Software * [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive
* [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive * [Team V.R releases](https://codec.kiev.ua/releases.html) - Professional Video, Audio & Adobe Software / Plugins
* [Team V.R releases](https://codec.kyiv.ua/releases.html) - Professional Video, Audio & Adobe Software / Plugins * [WLSetup-All](https://rentry.co/FMHYBase64#wlsetup-all) - Windows Live Essentials 2012 Archive
* [WLSetup-All](https://rentry.co/FMHYBase64#wlsetup-all) - Windows Live Essentials 2012 Archive * [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Discord](https://discord.com/invite/X9ZuegSM4N)
* [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Discord](https://discord.gg/BVBh2XVn9s) * [ZXPInstaller](https://github.com/elements-storage/ZXPInstaller) - Adobe Extension Installer
* [ZXPInstaller](https://zxpinstaller.com/) - Adobe Extension Installer
***
***
## ▷ Freeware Sites
## ▷ Freeware Sites
* 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)** - Freeware Index
* 🌐 **[Awesome Open Source](https://awesomeopensource.com/)**, [OpenAlternative](https://openalternative.co/), [Opensource Builders](https://opensource.builders/), [OSSSoftware](https://osssoftware.org/), [OSS Gallery](https://oss.gallery/), [Awesome OSS](https://github.com/RunaCapital/awesome-oss-alternatives), [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) or [FossHub](https://www.fosshub.com/) - FOSS Indexes * 🌐 **[Awesome Selfhosted](https://github.com/awesome-selfhosted/awesome-selfhosted)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) - Selfhosted Software Index
* 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)**, [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/), [Free Lunch](https://github.com/auctors/free-lunch), [MajorGeeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) or [TinyApps](https://tinyapps.org/) - Freeware Indexes * 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) or [Selfh.st](https://selfh.st/apps/) - Selfhosted Software Indexes * ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
* 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index * ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)**
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)** * ↪️ **[Alternative Software Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_alternative_software_.2F_app_sites)**
* ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)** * ⭐ **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend
* ⭐ **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend * ⭐ **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore)
* ⭐ **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore) * [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/) - Freeware Index
* [SourceForge](https://sourceforge.net/)- FOSS Repositories * [OldVersion](http://www.oldversion.com/) - Old Versions of Software
* [Fossies](https://fossies.org/all.html) - FOSS Archive * [OlderGeeks](https://oldergeeks.com/) - Freeware Index
* [Free Software Directory](https://directory.fsf.org/wiki/Main_Page) or [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories) - FOSS Wikis * [Free Software MF](https://whoisdsmith.gitbook.io/free-software-mf) - Freeware Index
* [Softpedia](https://www.softpedia.com/), [Realityripple](https://realityripple.com/), [OlderGeeks](https://oldergeeks.com/), [FilePuma](https://www.filepuma.com/), [FileEagle](https://www.fileeagle.com/), [LO4D](https://www.lo4d.com/), [GRC](https://www.grc.com/freepopular.htm), [Uwe Sieber's Homepage](https://www.uwe-sieber.de/english.html) or [Software Informer](https://software.informer.com/) - Freeware * [Softpedia](https://www.softpedia.com/) - Freeware Index
* [PortableApps.com](https://portableapps.com/), [Portapps](https://portapps.io/) or [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps * [Realityripple](https://realityripple.com/) - Freeware Index
* [Nirsoft](https://www.nirsoft.net/), [Windows-Utilities](https://orga.cat/windows-utilities), [OS Vault](https://osvault.weebly.com/directory.html) or [WinTools](https://www.wintools.info/) - Windows Software * [Software Informer](https://software.informer.com/) - Freeware Index
* [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG) * [Awesome Windows](https://github.com/Awesome-Windows/Awesome) - Freeware Index
* [RaymondFreeSoftware](https://t.me/raymondfreesoftware) - Telegram * [Major Geeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) - Freeware Index
* [Suckless](https://suckless.org/) - Simple Software Archive * [SourceForge](https://sourceforge.net/)- FOSS Index
* [OldVersion](http://www.oldversion.com/) - Old Versions of Software * [FossHub](https://www.fosshub.com/)- FOSS Index
* [WinWorldPC](https://winworldpc.com/) - Abandonware / Operating Systems * [Fossies](https://fossies.org/all.html)- FOSS Index
* [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games * [Free Software Directory](https://directory.fsf.org/wiki/Main_Page)- FOSS Index
* [MS-DOS Index](http://www.lanet.lv/simtel.net/msdos/index-msdos.html) - MS-DOS Software * [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories)- FOSS Index
* [The Vintage Software Collection](https://rentry.co/fmhybase64#the-vintage-software-collection) or [SCiZE's Classic Warez Collection](https://scenelist.org/) - Retro Software * [OSSSoftware](https://osssoftware.org/) - FOSS Index
* [BelowAverage](https://belowaverage.org/) - I.T. Software * [Awesome Open Source](https://awesomeopensource.com/) - FOSS Index
* [Open-Source Alternatives](https://github.com/btw-so/open-source-alternatives) - FOSS Index
*** * [Opensource Builders](https://opensource.builders/) - FOSS Index
* [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) - FOSS Index
## ▷ Alt Software Sites * [LO4D](https://www.lo4d.com/) - Freeware Index
* [FilePuma](https://www.filepuma.com/) - Freeware Index
* ⭐ **[AlternativeTo](https://alternativeto.net/)** - Crowdsourced Recommendations * [GRC](https://www.grc.com/freepopular.htm) - Freeware Index
* [Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives) - Adobe Software Alternative Index * [TinyApps](https://tinyapps.org/) - Freeware Index
* [SaaSHub](https://www.saashub.com/) * [Phrozen](https://www.phrozen.io/) - Freeware Index
* [Alternative.me](https://alternative.me/) * [FileEagle](https://www.fileeagle.com/) - Freeware Index
* [opensourcealternative.to](https://www.opensourcealternative.to/) - Open-source Alternatives * [PortableApps.com](https://portableapps.com/) - Portable Apps
* [TopAlter.com](https://topalter.com/) * [Portapps](https://portapps.io/) - Portable Apps
* [ListAlternative](https://www.listalternative.com/) * [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps
* [Alternative Internet](https://github.com/redecentralize/alternative-internet) * [Uwe Sieber's Homepage](https://www.uwe-sieber.de/english.html)
* [Appmus](https://appmus.com/) * [Nirsoft](https://www.nirsoft.net/), [Windows-Utilities](https://orga.cat/windows-utilities), [OS Vault](https://osvault.weebly.com/directory.html) or [WinTools](https://www.wintools.info/) - Windows Software
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [Sitelike.org](https://www.sitelike.org/), [SitesLike](https://www.siteslike.com/) - Similar Site Lists * [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG)
* [RaymondFreeSoftware](https://t.me/raymondfreesoftware) - Telegram
*** * [Suckless](https://suckless.org/) - Simple Software Archive
* [WinWorldPC](https://winworldpc.com/) - Abandonware / Operating Systems
## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites) * [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games
* [MS-DOS Index](http://www.lanet.lv/simtel.net/msdos/index-msdos.html) - MS-DOS Software
*** * [The Vintage Software Collection](https://rentry.co/fmhybase64#the-vintage-software-collection) or [SCiZE's Classic Warez Collection](https://scenelist.org/) - Retro Software
* [BelowAverage](https://belowaverage.org/) - I.T. Software
## ▷ [Mac Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites2)
***
***
## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites)
# ► File Sharing Apps
***
* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - File Sharing App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd)
* [DC++](https://dcplusplus.sourceforge.io/index.html) - File Sharing App / [Clients](https://dchublists.com/clients/) / [Hubs](https://dchublists.com/), [2](https://dchublist.org/), [3](https://dchublist.biz/) ## ▷ [Mac Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites2)
* [eMule](https://www.emule-project.net/), [Fopnu](https://fopnu.com/), [Shareaza](https://shareaza.sourceforge.net/) or [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App
* [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/) ***
*** # ► File Sharing Apps
## ▷ IRC Tools * ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - File Sharing App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd)
* [DC++](https://dcplusplus.sourceforge.io/index.html) - File Sharing App / [Clients](https://dchublists.com/clients/) / [Hubs](https://dchublists.com/), [2](https://dchublist.org/), [3](https://dchublist.biz/)
* 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources * [eMule](https://www.emule-project.net/), [Fopnu](https://fopnu.com/), [Shareaza](https://shareaza.sourceforge.net/) or [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App
* ⭐ **[IRC Tutorial](https://rentry.org/irc)**, [Libera Guides](https://libera.chat/guides/), [LoadGuru](https://www.theloadguru.com/xdcc-irc-beginners-guide/), [New Blood](https://anonops.com/newblood/) or [Simple Wiki Guide](https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial) - IRC Guides * [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/)
* [AdiIRC](https://adiirc.com/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html) or [Bitchx](https://bitchx.sourceforge.net/) - IRC Clients * [WireShare](https://sourceforge.net/projects/wireshare/) - File Sharing App / LimeWire Fork
* [Hexchat](https://hexchat.github.io/) - Private IRC Client
* [KiwiIRC](https://kiwiirc.com/) or [TheLounge](https://thelounge.chat/) - WebIRC Client ***
* [irc2go](https://en.irc2go.com/) - Browse IRC Chat Rooms / [Top 1000](https://netsplit.de/networks/top100.php)
* [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks ## ▷ IRC Tools
* [Mibbit](https://search.mibbit.com/) - IRC Channel Search
* 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources
*** * ⭐ **[IRC Tutorial](https://rentry.org/irc)**, [Libera Guides](https://libera.chat/guides/), [LoadGuru](https://www.theloadguru.com/xdcc-irc-beginners-guide/), [New Blood](https://anonops.com/newblood/) or [Simple Wiki Guide](https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial) - IRC Guides
* [AdiIRC](https://adiirc.com/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html) or [Bitchx](https://bitchx.sourceforge.net/) - IRC Clients
# ► Usenet * [KiwiIRC](https://kiwiirc.com/) or [TheLounge](https://thelounge.chat/) - WebIRC Client
* [irc2go](https://en.irc2go.com/) - Browse IRC Chat Rooms / [Top 1000](https://netsplit.de/networks/top100.php)
* 🌐 **[Usenet Tools / Services](https://curlie.org/en/Computers/Usenet)** or [UsenetTools](http://www.usenettools.net/) * [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks
* ⭐ **[Usenet Guide / Automation Setup](https://docs.google.com/document/d/1TwUrRj982WlWUhrxvMadq6gdH0mPW0CGtHsTOFWprCo/mobilebasic)** / [2](https://redd.it/4x2mc9) / [3](https://www.iitk.ac.in/LDP/HOWTO/Usenet-News-HOWTO/x27.html) / [4](https://graph.org/EVERYTHING-YOU-NEED-TO-KNOW-ABOUT-USENET-09-04) / [5](https://www.reddit.com/r/usenet/wiki/index/) / [6](https://blog.decryption.net.au/t/a-fully-automated-usenet-piracy-machine-with-plex-sabnzbd-and-sonarr/130) * [Mibbit](https://search.mibbit.com/) - IRC Channel Search
* [/r/usenet](https://reddit.com/r/usenet)
* [Usenet-Uploaders](https://github.com/animetosho/Nyuu/wiki/Usenet-Uploaders), [ngPost](https://github.com/mbruel/ngPost) or [Nyuu](https://github.com/animetosho/Nyuu) - Usenet Uploaders ***
*** # ► Usenet
## ▷ Indexers * 🌐 **[Usenet Tools / Services](https://curlie.org/en/Computers/Usenet)** or [UsenetTools](http://www.usenettools.net/)
* ⭐ **[Usenet Guide / Automation Setup](https://docs.google.com/document/d/1TwUrRj982WlWUhrxvMadq6gdH0mPW0CGtHsTOFWprCo/mobilebasic)** / [2](https://redd.it/4x2mc9) / [3](https://www.iitk.ac.in/LDP/HOWTO/Usenet-News-HOWTO/x27.html) / [4](https://graph.org/EVERYTHING-YOU-NEED-TO-KNOW-ABOUT-USENET-09-04) / [5](https://www.reddit.com/r/usenet/wiki/index/) / [6](https://blog.decryption.net.au/t/a-fully-automated-usenet-piracy-machine-with-plex-sabnzbd-and-sonarr/130)
* 🌐 **[Indexer List](https://www.reddit.com/r/usenet/wiki/indexers/)** - Indexer List * [/r/usenet](https://reddit.com/r/usenet)
* [/r/UsenetInvites](https://reddit.com/r/UsenetInvites) * [Usenet-Uploaders](https://github.com/animetosho/Nyuu/wiki/Usenet-Uploaders), [ngPost](https://github.com/mbruel/ngPost) or [Nyuu](https://github.com/animetosho/Nyuu) - Usenet Uploaders
* [NZBHydra2](https://github.com/theotherp/nzbhydra2) - NZB Meta search
* [nzbplanet](https://nzbplanet.net/) ## ▷ Indexers
* [orionoid](https://orionoid.com/)
* [binsearch](https://binsearch.info/) * 🌐 **[Indexer List](https://www.reddit.com/r/usenet/wiki/indexers/)** - Indexer List
* [abnzb](https://www.abnzb.com/) * [/r/UsenetInvites](https://reddit.com/r/UsenetInvites)
* [NZB Index](https://www.nzbindex.com/), [2](https://www.nzbindex.nl/) * [NZBHydra2](https://github.com/theotherp/nzbhydra2) - NZB Meta search
* [Newznab](https://www.newznab.com/) * [nzbplanet](https://nzbplanet.net/)
* [NZBStars](https://nzbstars.com/) * [orionoid](https://orionoid.com/)
* [usenet-crawler](https://www.usenet-crawler.com/) * [binsearch](https://binsearch.info/)
* [GingaDaddy](https://www.gingadaddy.com/) * [abnzb](https://www.abnzb.com/)
* [NZBFinder](https://nzbfinder.ws/) * [NZB Index](https://www.nzbindex.com/)
* [NZBKing](https://nzbking.com/) * [Newznab](https://www.newznab.com/)
* [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404 * [NZBIndex](https://www.nzbindex.nl/)
* [OldUSe](https://article.olduse.net/) - Search Usenet Articles * [NZBGrabit](https://www.nzbgrabit.xyz/)
* [althub](https://althub.co.za) - Unlimited Free Trials * [NZBStars](https://nzbstars.com/)
* [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client * [GingaDaddy](https://www.gingadaddy.com/)
* [NZBFinder](https://nzbfinder.ws/)
*** * [NZBKing](https://nzbking.com/)
* [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404
## ▷ Providers * [OldUSe](https://article.olduse.net/) - Search Usenet Articles
* [althub](https://althub.co.za) - Unlimited Free Trials
* 🌐 **[/r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists * [nZEDb](https://github.com/nZEDb/nZEDb) - Self-Hosted
* 🌐 **[/r/usenet Deals](https://www.reddit.com/r/usenet/wiki/providerdeals)** - Provider Deals * [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client
* [Usenet Providers Map](https://mediavoid.io/map.svg)
* [usenetmax](https://www.usenetmax.com/) ## ▷ Providers
* [xsusenet](https://xsusenet.com/)
* [usenet.farm](https://usenet.farm/#trial) * 🌐 **[/r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists
* [Free Trials](https://www.ngprovider.com/free-usenet-trials.php) * 🌐 **[/r/usenet Deals](https://www.reddit.com/r/usenet/wiki/providerdeals)** - Provider Deals
* [Usenet Providers Map](https://mediavoid.io/map.svg)
*** * [usenetmax](https://www.usenetmax.com/)
* [xsusenet](https://xsusenet.com/)
## ▷ Downloaders * [usenet.farm](https://usenet.farm/#trial)
* [Free Trials](https://www.ngprovider.com/free-usenet-trials.php)
* ⭐ **[sabnzbd](https://sabnzbd.org/)** / [Grabber](https://github.com/lem6ns/sabgrab) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/nzb-unity/) / [Chrome](https://chromewebstore.google.com/detail/nzb-unity/mpejfoghnejnbfkpbiafklkmlhebkapb)
* ⭐ **[NZBUnity](https://github.com/tumblfeed/nzbunity)** - Send Usenet Files to Client ## ▷ Downloaders
* [nzbget](https://nzbget.com/) / [GitHub](https://github.com/nzbgetcom/nzbget)
* [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes * ⭐ **[sabnzbd](https://sabnzbd.org/)** / [Grabber](https://github.com/lem6ns/sabgrab) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/nzb-unity/) / [Chrome](https://chromewebstore.google.com/detail/nzb-unity/mpejfoghnejnbfkpbiafklkmlhebkapb)
* [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot * ⭐ **[NZBUnity](https://github.com/tumblfeed/nzbunity)** - Send Usenet Files to Client
* [nzbget](https://github.com/nzbgetcom/nzbget), [2](https://nzbget.com/download/)
*** * [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes
* [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot
# ► Leeches / Debrid
***
* 🌐 **[Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches)** or [leechlisting](https://www.leechlisting.com/) - Leech Lists
* [@Transload](https://t.me/transload) - Telegram Leech Bots # ► Leeches / Debrid
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Send Premium Files to Leeches / 2 Hosts Only
* [RapidGrab](https://rapidgrab.ovh/) or [Newscon](https://www.newscon.net/d1/) / [2](https://www.newscon.org/d3/) - Leech * 🌐 **[Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Main_Page)** or [leechlisting](https://www.leechlisting.com/) - Leech Lists
* [Real-Debrid](https://real-debrid.com/) - Paid Debrid service / [Torrent Client](https://github.com/rogerfar/rdt-client) / [Movies / TV](https://hdencode.org/) * [@Transload](https://t.me/transload) - Telegram Leech Bots
* [Debrid-Link](https://debrid-link.com) - Debrid with Free Tier * [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Send Premium Files to Leeches / 2 Hosts Only
* [AllDebrid](https://alldebrid.com/) - Paid Debrid service with seven day trial * [RapidGrab](https://rapidgrab.pl/) or [Newscon](https://www.newscon.net/d1/) - Leech
* [Debrid Media Manager](https://debridmediamanager.com/) - Manage / Stream / Download RD Files * [Real-Debrid](https://real-debrid.com/) - Paid Debrid service / [Torrent Client](https://github.com/rogerfar/rdt-client) / [Movies / TV](https://hdencode.org/)
* [Debrid-Link](https://debrid-link.com) - Debrid w/ Free Tier / [Limits](https://i.imgur.com/vZtlvtA.png)
*** * [AllDebrid](https://alldebrid.com/) - Paid Debrid service with seven day trial
# ► [File Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools) ***
# ► [File Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools)

File diff suppressed because it is too large Load Diff

View File

@ -1,461 +1,474 @@
*** ***
*** ***
**[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/tools-index)** **[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/tools-index)**
*** ***
*** ***
# ► File Tools # ► File Tools
* ↪️ **[File Scanners](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_file_scanners)** * ⭐ **[OpenWith](https://www.openwith.org/)** or [OpenMyFiles](https://www.openmyfiles.com/) - File Extension Libraries
* ⭐ **[Fileinfo](https://fileinfo.com/)**, [Filext](https://filext.com/) or [OpenMyFiles](https://www.openmyfiles.com/) - File Extension Libraries * ⭐ **[czkawka](https://github.com/qarmin/czkawka)** or [dupeGuru](https://dupeguru.voltaicideas.net/) - Duplicate File Finders
* ⭐ **[czkawka](https://github.com/qarmin/czkawka)** or [dupeGuru](https://dupeguru.voltaicideas.net/) - Duplicate File Finders * [horsicq](https://horsicq.github.io/) - File Tools / [GitHub](https://github.com/horsicq/)
* [horsicq](https://horsicq.github.io/) - File Tools / [GitHub](https://github.com/horsicq/) * [Beyond Compare](https://www.scootersoftware.com/) - File / Directory Comparison Tool / [Crack](https://rentry.co/FMHYBase64#beyond-compare-crack)
* [Beyond Compare](https://www.scootersoftware.com/) - File / Directory Comparison Tool / [Pro](https://rentry.co/FMHYBase64#beyond-compare-crack) * [UnLock IT](https://emcosoftware.com/unlock-it/download), [Lock Hunter](https://lockhunter.com/) or [FileExile](https://sourceforge.net/projects/filexile/) - File Unlocker / Deleter
* [UnLock IT](https://emcosoftware.com/unlock-it/download) or [Lock Hunter](https://lockhunter.com/) - File Unlocker / Deleter * [File Juggler](https://www.filejuggler.com/) - Organize Files Automatically
* [Magika](https://github.com/google/magika) - AI File Content Type Detector * [Phockup](https://github.com/ivandokov/phockup) - Organize Photo / Video Files by Date
* [Phockup](https://github.com/ivandokov/phockup) - Organize Photo / Video Files by Date * [Random Executor](https://sneakysnail.net/random-executor/) - Random File Executor
* [Icaros](https://github.com/Xanashi/Icaros) - Add Explorer Thumbnails to any Video Format * [TMSU](https://github.com/oniony/TMSU) or [Tagging for Windows](https://tagging.connectpaste.com/) - Tag-Based Filesystem
* [Tagging for Windows](https://tagging.connectpaste.com/) - Tag-Based Filesystem * [filetree](https://github.com/roboyoshi/datacurator-filetree) - Data Filetree
* [HTTPDirfs](https://github.com/fangfufu/httpdirfs) - HTTP File System * [HTTPDirfs](https://github.com/fangfufu/httpdirfs) - HTTP File System
* [mergerfs](https://github.com/trapexit/mergerfs) - Union Filesystem * [mergerfs](https://github.com/trapexit/mergerfs) - Union Filesystem
* [filebrowser](https://github.com/filebrowser/filebrowser/) - Online File Viewer * [Snap2HTML](https://rlvision.com/snap2html/about.php) - Take HTML Snapshots of Folder / File Structures
* [File-Examples](https://file-examples.com/) - Dummy File Examples * [filebrowser](https://github.com/filebrowser/filebrowser/) or [Filext](https://filext.com/) - Online File Viewers
* [OpenHashTab](https://github.com/namazso/OpenHashTab) - Compare / Display File Hashes * [File-Examples](https://file-examples.com/) - Dummy File Examples
* [WinMerge](https://winmerge.org/) - Compare / Merge Files & Folders * [What](https://github.com/bee-san/pyWhat) - File Analyzer
* [Attribute Changer](https://www.petges.lu/) - Edit File & Folder Properties * [OpenHashTab](https://github.com/namazso/OpenHashTab) - Compare / Display File Hashes
* [TagSpaces](https://www.tagspaces.org/) - Add Tags to Files and Folders * [FilesMerge](https://www.filesmerge.com/) - Online File Merger
* [SKTimeStamp](https://tools.stefankueng.com/SKTimeStamp.html) - Change File Created / Modified Time * [WinMerge](https://winmerge.org/) - Compare / Merge Files & Folders
* [Corrupt My File](https://www.corruptmyfile.com/) or [Corrupt-A-File](https://corrupt-a-file.net/) - Intentionally Corrupt your Files * [Attribute Changer](https://www.petges.lu/) - Edit File & Folder Properties
* [ExtractMetadata](https://www.extractmetadata.com/) or [Metadata2Go](https://www.metadata2go.com/) - Metadata Viewers / Editors * [TagSpaces](https://www.tagspaces.org/) - Add Tags to Files and Folders
* [lessmsi](https://lessmsi.activescott.com/) - .msi Content Extractor / [GitHub](https://github.com/activescott/lessmsi) * [DefaultProgramsEditor](https://defaultprogramseditor.com/) - File Association Editor
* [ProperTree](https://github.com/corpnewt/ProperTree) - GUI Plist Editor * [SKTimeStamp](https://tools.stefankueng.com/SKTimeStamp.html) - Change File Created / Modified Time
* [OpenBoardView](https://github.com/OpenBoardView/OpenBoardView) - View .brd Files * [Corrupt My File](https://www.corruptmyfile.com/) or [Corrupt-A-File](https://corrupt-a-file.net/) - Intentionally Corrupt your Files
* [infekt](https://infekt.ws/) / [GitHub](https://github.com/syndicodefront/infekt), [nfoview](https://otsaloma.io/nfoview/) / [GitHub](https://github.com/otsaloma/nfoview) or [NFOmation](https://nfomation.net/) - NFO Viewers * [ExtractMetadata](https://www.extractmetadata.com/) or [Metadata2Go](https://www.metadata2go.com/) - Metadata Viewers / Editors
* [lessmsi](https://lessmsi.activescott.com/) - .msi Content Extractor / [GitHub](https://github.com/activescott/lessmsi)
*** * [ProperTree](https://github.com/corpnewt/ProperTree) - GUI Plist Editor
* [OpenBoardView](https://github.com/OpenBoardView/OpenBoardView) - View .brd Files
## ▷ Download Managers * [pe_tree](https://github.com/blackberry/pe_tree) - PE File Tree View
* [infekt](https://infekt.ws/) / [GitHub](https://github.com/syndicodefront/infekt), [nfoview](https://otsaloma.io/nfoview/) / [GitHub](https://github.com/otsaloma/nfoview) or [NFOmation](https://nfomation.net/) - NFO File Viewers
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
* ⭐ **[Go Speed](https://gopeed.com/)** - Download Manager / [GitHub](https://github.com/GopeedLab/gopeed) / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories) ***
* ⭐ **[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager
* [XDM](https://xtremedownloadmanager.com/) - Download Manager / [GitHub](https://github.com/subhra74/xdm) ## ▷ Download Managers
* [Motrix](https://www.motrix.app/) or [imFile](https://github.com/imfile-io/imfile-desktop) - Download Manager / [GitHub](https://github.com/agalwood/Motrix)
* [aria2](https://aria2.github.io/) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager / [GitHub](https://github.com/aria2/aria2) / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/) * ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Captcha Solver](https://github.com/cracker0dks/CaptchaSolver) / [Dark Theme](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
* [FDM](https://www.freedownloadmanager.org/) - Download Manager / [YTDL Addon](https://github.com/meowcateatrat/elephant) / [Note](https://pastebin.com/Vgwf3avH) * ⭐ **[IDM](https://www.internetdownloadmanager.com/)** - Download Manager / [Activation](https://massgrave.dev/idm-activation-script.html)
* [ArrowDL](https://github.com/setvisible/ArrowDL/) - Download Manager * ⭐ **[XDM](https://xtremedownloadmanager.com/)** - Download Manager / [GitHub](https://github.com/subhra74/xdm)
* [pyLoad](https://pyload.net/) - Lightweight Download Manager * [Motrix](https://www.motrix.app/) - Download Manager / [Web Extensions](https://github.com/gautamkrishnar/motrix-webextension/) / [GitHub](https://github.com/agalwood/Motrix)
* [File Centipede](https://filecxx.com/) - Upload / Download Manager * [Mipony](https://www.mipony.net/) - Download Manager
* [DownThemAll](https://www.downthemall.org/) or [Turbo Download Manager](https://add0n.com/turbo-download-manager-v2.html) / [GitHub](https://github.com/inbasic/turbo-download-manager-v2/) - Download Management Extensions * [pyLoad](https://pyload.net/) - Lightweight Download Manager
* [HTTP Downloader](https://erickutcher.github.io/#HTTP_Downloader/) - Download Manager for HTTP / FTP / SFTP Protocols * [File Centipede](https://filecxx.com/) - Upload / Download Manager
* [Downloader](https://downloader.la/) or [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - File Download Tools * [HTTP Downloader](https://erickutcher.github.io/#HTTP_Downloader/) - Download Manager for HTTP / FTP / SFTP Protocols
* [mf-dl](https://gitgud.io/Pyxia/mf-dl/) or [mediafire_bulk_downloader](https://github.com/NicKoehler/mediafire_bulk_downloader) - Mediafire File Downloaders * [Downloader](https://downloader.la/) or [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - File Download Tools
* [WhatsLink](https://whatslink.info/) - View File Download Metadata * [mf-dl](https://gitgud.io/Pyxia/mf-dl/) or [mediafire_bulk_downloader](https://github.com/NicKoehler/mediafire_bulk_downloader) - Mediafire File Downloaders
* [One Leaf](https://oneleaf.icu/) or [PanDownload](https://baidu.gamesdrive.net/) - Baidu Netdisk Downloaders
*** * [WhatsLink](https://whatslink.info/) - View File Download Metadata
## ▷ File Archivers ***
* 🌐 **[SuperCompression](https://supercompression.org/)** - File Compression Resources ## ▷ File Archivers
* ⭐ **[7-Zip](https://www.7-zip.org/)** - File Archiver
* ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** - File Archiver * ⭐ **[7-Zip](https://www.7-zip.org/)** / [Colab](https://github.com/dropcreations/7zip-in-Google-Colab) / [Dark Mode](https://github.com/huanrenfeng/7zipDarkmode) / [Benchmarks](https://s1.hoffart.de/7zip-bench/) / [Additional Codecs](https://github.com/mcmilk/7-Zip-zstd) - File Archiver
* ⭐ **[PeaZip](https://peazip.github.io/)** - Cross Platform File Archiver * ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** - File Archiver
* ⭐ **[CompactGUI](https://github.com/IridiumIO/CompactGUI)** or [Compactor](https://github.com/Freaky/Compactor) - Transparent Compression * ⭐ **[PeaZip](https://peazip.github.io/)** - Cross Platform File Archiver
* [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums * [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums
* [TurboBench](https://github.com/powturbo/TurboBench) - Compression Benchmark * [TurboBench](https://github.com/powturbo/TurboBench) - Compression Benchmark
* [unzip-http](https://github.com/saulpw/unzip-http) - Unzip via HTTP without Downloading * [unzip-http](https://github.com/saulpw/unzip-http) - Unzip via HTTP Without Downloading
* [WinRAR](https://www.win-rar.com/) - File Archiver / [Licenses](https://rentry.co/FMHYBase64#winrar-licenses) * [CompactGUI](https://github.com/IridiumIO/CompactGUI) or [Compactor](https://github.com/Freaky/Compactor) - Transparent Compression
* [Efficient Compression Tool](https://github.com/fhanau/Efficient-Compression-Tool) or [Minuimus](https://birds-are-nice.me/software/minuimus.html) - File Archivers / Optimizers * [WinRAR](https://www.win-rar.com/) - File Archiver / [Licenses](https://rentry.co/FMHYBase64#winrar-licenses)
* [ZIP Extractor](https://zipextractor.app/) - Google Drive / Gmail File Archiver * [Bandizip](https://www.bandisoft.com/bandizip/) - File Archiver
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online * [IZArc](https://www.izarc.org/) - File Archiver
* [unzip-online](https://unzip-online.com/en) - Unzip Files Online * [FileOptimizer](https://nikkhokkho.sourceforge.io/static.php?page=FileOptimizer), [Efficient Compression Tool](https://github.com/fhanau/Efficient-Compression-Tool) or [Minuimus](https://birds-are-nice.me/software/minuimus.html) - File Archivers / Optimizers
* [Unrar online](https://unrar.online/) - Unrar Files Online * [ZIP Extractor](https://zipextractor.app/) - Google Drive / Gmail File Archiver
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online
*** * [unzip-online](https://unzip-online.com/en) - Unzip Files Online
* [Unrar online](https://unrar.online/) - Unrar Files Online
## ▷ File Converters
***
* 🌐 **[.to Sites](https://rentry.co/tosites)** - File Converters Index
* ⭐ **[File Converter](https://file-converter.io/)** / [GitHub](https://github.com/Tichau/FileConverter) - Convert / Compress Files ## ▷ File Converters
* ⭐ **[CloudConvert](https://cloudconvert.com/)** - Convert Files / 1 GB Limit
* [Pandoc](https://pandoc.org/) - Document Converter * 🌐 **[.to Sites](https://rentry.co/nsq29)** - File Converters Index
* [ConvertCSV](https://www.convertcsv.com/) - CSV Data Conversion * ⭐ **[File Converter](https://file-converter.org/)** / [GitHub](https://github.com/Tichau/FileConverter) - Convert / Compress Files
* [Encoding Converter](https://encoding-converter.netlify.app/) - File Encoding Converter * ⭐ **[CloudConvert](https://cloudconvert.com/)** - Convert Files / 1 GB Limit
* [Deark](https://entropymine.com/deark/) - Decode and Convert Files / [GitHub](https://github.com/jsummers/deark) * [Pandoc](https://pandoc.org/) - Document Converter
* [text2img](https://master.ayra.ch/text2img/) - NFO Files to Image Converter * [ConvertCSV](https://www.convertcsv.com/) - CSV Data Conversion
* [FreeConvert](https://www.freeconvert.com/) - File Converter / 1 GB Limit * [Encoding Converter](https://encoding-converter.netlify.app/) - File Encoding Converter
* [videoutils](https://www.videoutils.com/) - File Converter / 500 MB * [Deark](https://entropymine.com/deark/) - Decode and Convert Files / [GitHub](https://github.com/jsummers/deark)
* [Xconvert](https://www.xconvert.com) - File Converter / 400 MB * [text2img](https://master.ayra.ch/text2img/) - NFO Files to Image Converter
* [ConvertFiles](https://www.convertfiles.com/) - File Converter / 250 MB Limit * [FreeConvert](https://www.freeconvert.com/) - File Converter / 1 GB Limit
* [Convertio](https://convertio.co/) - File Converter / 100 MB Limit * [videoutils](https://www.videoutils.com/) - File Converter / 500 MB
* [AnyConvert](https://anyconv.com/) - File Converter / 100 MB Limit * [Xconvert](https://www.xconvert.com) - File Converter / 400 MB
* [onlineconvertfree](https://onlineconvertfree.com/) - File Converter / 100 MB Limit * [ConvertFiles](https://www.convertfiles.com/) - File Converter / 250 MB Limit
* [MiConv](https://miconv.com/) - File Converter / 75 MB Limit * [Convertio](https://convertio.co/) - File Converter / 100 MB Limit
* [Converter 365](https://www.converter365.com/) - File Converter / 50 MB Limit * [AnyConvert](https://anyconv.com/) - File Converter / 100 MB Limit
* [Aconvert](https://www.aconvert.com/) - File Converter / 40 MB Limit * [onlineconvertfree](https://onlineconvertfree.com/) - File Converter / 100 MB Limit
* [PPT Online](https://www.aspose.app/) - File Converter / 35 MB Limit * [MiConv](https://miconv.com/) - File Converter / 75 MB Limit
* [LetsConvert](https://letsconvert.io/) - File Converter / 250 MB Limit * [Converter 365](https://www.converter365.com/) - File Converter / 50 MB Limit
* [Online Convert](https://www.online-convert.com/) - File Converter * [ACConvert](https://www.aconvert.com/) - File Converter / 40 MB Limit
* [Zamzar](https://www.zamzar.com/) - File Converter * [PPT Online](https://www.aspose.app/) - File Converter / 35 MB Limit
* [Online Converter](https://www.onlineconverter.com/) - File Converter * [Online Convert](https://www.online-convert.com/) - File Converter
* [File-Coversion](https://www.files-conversion.com/) - File Converter * [Zamzar](https://www.zamzar.com/) - File Converter
* [11zon](https://www.11zon.com/) - File Converter * [Online Converter](https://www.onlineconverter.com/) - File Converter
* [Convert Town](https://convert.town/) - File Converter * [File-Coversion](https://www.files-conversion.com/) - File Converter
* [Docspal](https://www.docspal.com/) - File Converter * [11zon](https://www.11zon.com/) - File Converter
* [Better Converter](https://better-converter.com/) - File Converter * [Convert Town](https://convert.town/) - File Converter
* [conversion-tool](https://www.conversion-tool.com/) - File Converter * [Better Converter](https://better-converter.com/) - File Converter
* [go4convert](https://go4convert.com/) - File Converter * [conversion-tool](https://www.conversion-tool.com/) - File Converter
* [101convert](https://www.101convert.com/) - File Converter * [go4convert](https://go4convert.com/) - File Converter
* [FormatSwap](https://formatswap.com/) - File Converter * [101convert](https://www.101convert.com/) - File Converter
* [FormatSwap](https://formatswap.com/) - File Converter
***
***
## ▷ File Explorers
## ▷ File Explorers
* ⭐ **[Files](https://files.community/)** - Customizable Windows File Manager
* [Xplorer](https://xplorer.space/) / [GitHub](https://github.com/kimlimjustin/xplorer) / [Discord](https://discord.com/invite/MHGtSWvfUS), [DoubleCMD](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross Platform File Explorers * [Xplorer](https://xplorer.space/) / [GitHub](https://github.com/kimlimjustin/xplorer) / [Discord](https://discord.com/invite/MHGtSWvfUS), [DoubleCMD](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross Platform File Explorers
* [Sigma](https://sigma-file-manager.vercel.app) - Modern File Manager for Windows / Linux / [GitHub](https://github.com/aleksey-hoffman/sigma-file-manager) * [Files](https://files.community/) - Customizable Windows File Manager
* [ChromaFiler](https://chroma.zone/chromafiler/) - Column-based Windows File Manager * [Sigma](https://github.com/aleksey-hoffman/sigma-file-manager) - Modern File Manager for Windows / Linux
* [WinFile](https://github.com/microsoft/winfile) - Original Windows File Explorer * [ChromaFiler](https://chroma.zone/chromafiler/) - Column-based Windows File Manager
* [One Commander](https://www.onecommander.com/), [Free Commander](https://freecommander.com/), [Q-Dir](https://www.softwareok.com/?seite=Freeware/Q-Dir), [Quick Access Popup](https://www.quickaccesspopup.com/) or [FileExplorer](https://github.com/omeryanar/FileExplorer) - Alt Windows File Explorers * [ExplorerPatcher](https://github.com/valinet/ExplorerPatcher) - Improve Windows Explorer
* [Explorer++](https://explorerplusplus.com/) - Lightweight Windows File Manager * [WinFile](https://github.com/microsoft/winfile) - Original Windows File Explorer
* [Far Manager](https://www.farmanager.com/) - Windows File / Archive Manager * [One Commander](https://www.onecommander.com/), [Free Commander](https://freecommander.com/), [Q-Dir](https://www.softwareok.com/?seite=Freeware/Q-Dir), [Quick Access Popup](https://www.quickaccesspopup.com/) or [FileExplorer](https://github.com/omeryanar/FileExplorer) - Alt Windows File Explorers
* [Total Commander](https://www.ghisler.com/) - Shareware Windows File Manager * [Explorer++](https://explorerplusplus.com/) - Lightweight Windows File Manager
* [Organize](http://organize.readthedocs.io) - Automated File Manager * [Far Manager](https://www.farmanager.com/) - Windows File / Archive Manager
* [TrayDir](https://github.com/SamuelSVD/TrayDir) - System Tray File Manager * [Total Commander](https://www.ghisler.com/) - Shareware Windows File Manager
* [TablacusExplorer](https://tablacus.github.io/explorer_en.html), [QTTabBar](https://github.com/indiff/qttabbar), [Multi Commander](https://multicommander.com/) or [ExplorerEx](https://github.com/DearVa/ExplorerEx) - Tab File Managers * [Organize](https://github.com/tfeldmann/organize) - Automated File Manager
* [Vifm](https://vifm.info/) - Vim-based File Manager * [TrayDir](https://github.com/SamuelSVD/TrayDir) - System Tray File Manager
* [WinSetView](https://github.com/LesFerch/WinSetView) - Globally Set Explorer Folder Views * [TablacusExplorer](https://tablacus.github.io/explorer_en.html) / [GitHub](https://github.com/tablacus/TablacusExplorer) - File Manager with Addon Support
* [Multi Commander](https://multicommander.com/) or [ExplorerEx](https://github.com/DearVa/ExplorerEx) - Multi-Tabbed File Managers
*** * [Vifm](https://vifm.info/) - Vim-based File Manager
* [WinSetView](https://github.com/LesFerch/WinSetView) - Globally Set Explorer Folder Views
## ▷ File Searching
***
* ⭐ **[Everything](https://voidtools.com/)** - File Search Engine
* [Recoll](https://www.lesbonscomptes.com/recoll/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [Spyglass](https://github.com/spyglass-search/spyglass), [DocFetcher](https://docfetcher.sourceforge.net/) or [Orange](https://0-range.github.io/) - Cross Platform Search Engines ## ▷ File Searching
* [AnyTXT](https://anytxt.net/) or [FluentSearch](https://fluentsearch.net/) - Windows Search Engines
* [AstroGrep](https://sourceforge.net/projects/astrogrep/), [grepWin](https://github.com/stefankueng/grepWin) or [dnGrep](https://dngrep.github.io/) - Windows GUI Grep Utilities * ⭐ **[Everything](https://voidtools.com/)** - File Search Engine
* [fselect](https://github.com/jhspetersson/fselect) - SQL-like Search Engine * [Recoll](https://www.lesbonscomptes.com/recoll/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [Spyglass](https://github.com/spyglass-search/spyglass), [DocFetcher](https://docfetcher.sourceforge.net/) or [Orange](https://github.com/naaive/orange) - Cross Platform Search Engines
* [fd](https://github.com/sharkdp/fd) - User Friendly "find" Alternative * [AnyTXT](https://anytxt.net/) or [FluentSearch](https://fluentsearch.net/) - Windows Search Engines
* [sist2](https://github.com/simon987/sist2) - Simple Incremental Search Tool * [AstroGrep](https://sourceforge.net/projects/astrogrep/), [grepWin](https://github.com/stefankueng/grepWin) or [dnGrep](https://dngrep.github.io/) - Windows GUI Grep Utilities
* [fselect](https://github.com/jhspetersson/fselect) - SQL-like Search Engine
*** * [fd](https://github.com/sharkdp/fd) - User Friendly "find" Alternative
* [sist2](https://github.com/simon987/sist2) - Simple Incremental Search Tool
## ▷ File Encryption
***
* ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)**
* ⭐ **[Picocrypt](https://github.com/HACKERALERT/Picocrypt)** ## ▷ File Encryption
* [Hat](https://hat.sh/), [GNUPG](https://gnupg.org/)
* [GPG4Win](https://www.gpg4win.org/) * ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)**
* [Encrypto](https://macpaw.com/encrypto) * ⭐ **[Picocrypt](https://github.com/HACKERALERT/Picocrypt)**
* [FreeCrypt](https://freecrypt.org/) * [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS partition
* [Vmola](https://vmola.com/) * [EncFS MP](https://encfsmp.sourceforge.io/index.html)
* [Kryptor](https://www.kryptor.co.uk/) * [Hat](https://hat.sh/), [GNUPG](https://gnupg.org/)
* [SecureFolderFS](https://github.com/securefolderfs-community/SecureFolderFS) * [GPG4Win](https://www.gpg4win.org/)
* [wdcrypt](https://github.com/stefins/wdcrypt) * [Encrypto](https://macpaw.com/encrypto)
* [age](https://github.com/FiloSottile/age) * [FreeCrypt](https://freecrypt.org/)
* [Vmola](https://vmola.com/)
*** * [Kryptor](https://www.kryptor.co.uk/)
* [SecureFolderFS](https://github.com/securefolderfs-community/SecureFolderFS)
## ▷ File Backup / Sync * [wdcrypt](https://github.com/stefins/wdcrypt)
* [age](https://github.com/FiloSottile/age)
* ⭐ **[SyncThing](https://syncthing.net/)** - File Sync / [Tray Support](https://martchus.github.io/syncthingtray/)
* ⭐ **[KDEConnect](https://kdeconnect.kde.org/)** - Phone / File Sync ***
* ⭐ **[freefilesync](https://freefilesync.org/)** - File Backup
* ⭐ **[Kopia](https://kopia.io/)** - File Backup ## ▷ File Backup / Sync
* [MyPhoneExplorer](https://www.fjsoft.at/) - Phone / Desktop Sync
* [SyncFolder](https://apps.microsoft.com/detail/9nc73mjwhsww?rtc=1&hl=en-us&gl=US) - Phone / Desktop Sync * ⭐ **[SyncThing](https://syncthing.net/)** - File Sync
* [etesync](https://www.etesync.com/) - File Sync * ⭐ **[KDEConnect](https://kdeconnect.kde.org/)** - Phone / File Sync
* [allwaysync](https://allwaysync.com/) - File Sync * ⭐ **[freefilesync](https://freefilesync.org/)** - File Backup
* [Resilio](https://www.resilio.com/individuals/) - File Sync * [MyPhoneExplorer](https://www.fjsoft.at/) - Phone / Desktop Sync
* [SmartFTP](https://www.smartftp.com/) - File Sync * [etesync](https://www.etesync.com/) - File Sync
* [rsync](https://rsync.samba.org) - File Sync / [GitHub](https://github.com/WayneD/rsync) * [allwaysync](https://allwaysync.com/) - File Sync
* [Unison](https://github.com/bcpierce00/unison) - File Sync * [Resilio](https://www.resilio.com/individuals/) - File Sync
* [FolderClone](https://www.folderclone.com/) - Clone / Backup Folders * [SmartFTP](https://www.smartftp.com/) - File Sync
* [BackupPC](https://backuppc.github.io/backuppc/) - File Backup * [rsync](https://github.com/WayneD/rsync) - File Sync
* [TeraCopy](https://www.codesector.com/teracopy) - File Backup * [Unison](https://github.com/bcpierce00/unison) - File Sync
* [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic) - File Backup * [FolderClone](https://www.folderclone.com/) - Clone / Backup Folders
* [UrBackup](https://www.urbackup.org/) - File Backup * [BackupPC](https://backuppc.github.io/backuppc/) - File Backup
* [Aomei](https://www.ubackup.com/) - File Backup * [TeraCopy](https://www.codesector.com/teracopy) - File Backup
* [Duplicati](https://www.duplicati.com/) - File Backup * [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic) - File Backup
* [Borg](https://www.borgbackup.org/) - File Backup * [UrBackup](https://www.urbackup.org/) - File Backup
* [USBImager](https://bztsrc.gitlab.io/usbimager/) - File Backup * [BlobBackup](https://github.com/BlobBackup/BlobBackup) - File Backup
* [Toucan](https://github.com/PortableApps/Toucan) - File Backup * [SafeCopy](https://www.elwinsoft.com/safecopy-free.html) - File Backup
* [duplicity](https://duplicity.gitlab.io/) - File Backup * [FastCopy](https://fastcopy.jp/) - File Backup
* [OCCT](https://www.ocbase.com/) - File Backup
*** * [Aomei](https://www.ubackup.com/) - File Backup
* [Duplicati](https://www.duplicati.com/) - File Backup
## ▷ File Recovery * [Borg](https://www.borgbackup.org/) - File Backup
* [USBImager](https://bztsrc.gitlab.io/usbimager/) - File Backup
* ⭐ **[TestDisk](https://www.cgsecurity.org/wiki/TestDisk)** - File Recovery * [Toucan](https://github.com/PortableApps/Toucan) - File Backup
* [R-Undelete](https://www.r-undelete.com/Download.shtml) - File Recovery * [Kopia](https://kopia.io/) - File Backup
* [PhotoRec](https://www.cgsecurity.org/wiki/PhotoRec) - File Recovery * [duplicity](https://duplicity.gitlab.io/) - File Backup
* [DMDE](https://dmde.com/download.html) - File Recovery
* [Recuva](https://www.ccleaner.com/recuva) - File Recovery ***
* [MultiPar](https://github.com/Yutaka-Sawada/MultiPar) - Prevent File Corruption / [Guide](https://youtu.be/5TsExiAsCXA)
* [ShadowExplorer](https://www.shadowexplorer.com/) or [ShadowCopyView](https://www.nirsoft.net/utils/shadow_copy_view.html/) - Shadow Copy Explorers ## ▷ File Recovery
*** * ⭐ **[TestDisk](https://www.cgsecurity.org/wiki/TestDisk)** - File Recovery
* [R-Undelete](https://www.r-undelete.com/Download.shtml) - File Recovery
## ▷ Formatting / Deletion * [PhotoRec](https://www.cgsecurity.org/wiki/PhotoRec) - File Recovery
* [DMDE](https://dmde.com/download.html) - File Recovery
* ⭐ **[SDelete](https://learn.microsoft.com/en-us/sysinternals/downloads/sdelete)** * [Recuva](https://www.ccleaner.com/recuva) - File Recovery
* [Eraser](https://eraser.heidi.ie/) * [MultiPar](https://github.com/Yutaka-Sawada/MultiPar) - Prevent File Corruption / [Guide](https://youtu.be/5TsExiAsCXA)
* [File Shredder](https://fileshredder.org/) * [ShadowExplorer](https://www.shadowexplorer.com/) or [ShadowCopyView](https://www.nirsoft.net/utils/shadow_copy_view.html/) - Shadow Copy Explorers
* [SSuite File Shredder and Burner](https://www.ssuiteoffice.com/software/ssuitefileshredder.htm)
* [Low Level Format](https://www.lowlevelformat.info/) ***
* [Alternate File Shredder](https://www.alternate-tools.com/pages/c_fileshredder.php?lang=ENG)
* [Permadelete](https://developerstree.github.io/permadelete/) ## ▷ Formatting / Deletion
* [nwipe](https://github.com/martijnvanbrummelen/nwipe)
* [ShredOS](https://github.com/PartialVolume/shredos.x86_64) * ⭐ **[SDelete](https://learn.microsoft.com/en-us/sysinternals/downloads/sdelete)**
* [Delapp](https://github.com/differentrain/Delapp) * [Eraser](https://eraser.heidi.ie/)
* [RED](https://www.jonasjohn.de/red.htm) - Remove Empty Directories * [File Shredder](https://fileshredder.org/)
* [SSuite File Shredder and Burner](https://www.ssuiteoffice.com/software/ssuitefileshredder.htm)
*** * [Low Level Format](https://www.lowlevelformat.info/)
* [Alternate File Shredder](https://www.alternate-tools.com/pages/c_fileshredder.php?lang=ENG)
## ▷ Data Automation * [Permadelete](https://developerstree.github.io/permadelete/)
* [nwipe](https://github.com/martijnvanbrummelen/nwipe)
* ⭐ **[Advanced Renamer](https://www.advancedrenamer.com/)** - Bulk Renamer * [ShredOS](https://github.com/PartialVolume/shredos.x86_64)
* ⭐ **[Bulk Rename Utility](https://www.bulkrenameutility.co.uk/)** - Bulk Renamer * [Delapp](https://github.com/differentrain/Delapp)
* [MediaMonkey](https://www.mediamonkey.com/) - Data Automation
* [mnamer](https://github.com/jkwill87/mnamer) - Data Automation ***
* [MediaInfo](https://mediaarea.net/en/MediaInfo) / [Online](https://mediaarea.net/MediaInfoOnline) - Data Automation
* [tinyMediaManager](https://www.tinymediamanager.org/) - Data Automation ## ▷ Data Automation
* [Bruji](https://www.bruji.com/) - Data Automation
* [FileBot](https://www.filebot.net/) - Data Automation * ⭐ **[Advanced Renamer](https://www.advancedrenamer.com/)** - Bulk Renamer
* [MediaElch](https://www.kvibes.de/mediaelch/) - Data Automation * ⭐ **[Bulk Rename Utility](https://www.bulkrenameutility.co.uk/)** - Bulk Renamer
* [TVRename](https://www.tvrename.com/) - TV File Data Automation * [MediaMonkey](https://www.mediamonkey.com/) - Data Automation
* [Shoko](https://github.com/shokoanime) - Anime File Data Automation * [mnamer](https://github.com/jkwill87/mnamer) - Data Automation
* [Szyszka](https://github.com/qarmin/szyszka) - Bulk Renamer * [MediaInfo](https://mediaarea.net/en/MediaInfo) / [Online](https://mediaarea.net/MediaInfoOnline) - Data Automation
* [PowerRename](https://learn.microsoft.com/en-us/windows/powertoys/powerrename) - Bulk Renamer * [tinyMediaManager](https://www.tinymediamanager.org/) - Data Automation
* [Ant Renamer](https://www.antp.be/software/renamer) - Bulk Renamer * [Bruji](https://www.bruji.com/) - Data Automation
* [Flut Renamer](https://github.com/sun-jiao/flut-renamer) - Bulk Renamer * [FileBot](https://www.filebot.net/) - Data Automation
* [MediaElch](https://www.kvibes.de/mediaelch/) - Data Automation
*** * [TVNamer](https://github.com/dbr/tvnamer) or [TVRename](https://www.tvrename.com/) - TV File Data Automation
* [Shoko](https://github.com/shokoanime) - Anime File Data Automation
## ▷ PDF Tools * [Szyszka](https://github.com/qarmin/szyszka) - Bulk Renamer
* [Massren](https://github.com/laurent22/massren) - Bulk Renamer
* ⭐ **[Sejda](https://www.sejda.com/)**, [ILovePDF](https://www.ilovepdf.com/), [DigiPDF](https://digipdf.app/?lang=en_US), [PDF2Go](https://www.pdf2go.com/), [Stirling PDF](https://pdf.app.danian.co/) or [SimplePDF](https://simplepdf.eu/) - Online PDF Toolkits * [PowerRename](https://learn.microsoft.com/en-us/windows/powertoys/powerrename) - Bulk Renamer
* ⭐ **[PDFGear](https://www.pdfgear.com/)**, **[PDF24](https://www.pdf24.org/)**, [xPDFReader](https://www.xpdfreader.com/), [PDF Arranger](https://github.com/pdfarranger/pdfarranger), [PrivatePDF](https://photown.github.io/private-pdf/), [PDFBox](https://pdfbox.apache.org/) or [OpenPDF](https://github.com/LibrePDF/OpenPDF) - Offline PDF Toolkits * [Ant Renamer](https://www.antp.be/software/renamer) - Bulk Renamer
* [PDFGrep](https://pdfgrep.org/) - PDF Text Search
* [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on GDrive ***
* [online2pdf](https://online2pdf.com/) or [2PDFConverter](https://www.2pdfconverter.com/) - Convert Files to PDF
* [PDFConverter](https://www.pdfconverter.com/) or [PDFconvert](https://docupub.com/pdfconvert/) - PDF File Converters ## ▷ PDF Tools
* [PDF Mergy](https://pdfmerge.w69b.com/) or [PDFSnake](https://pdfsnake.app/) - Merge PDF Files
* [PDFLayoutTextStripper](https://github.com/JonathanLink/PDFLayoutTextStripper) - PDF to Text Converter * ⭐ **[Sejda](https://www.sejda.com/)**, [ILovePDF](https://www.ilovepdf.com/) or [SimplePDF](https://simplepdf.eu/) - Online PDF Toolkits
* [VancedPDF](https://vancepdf.com/) or [PDFtoWordConverter](https://xodo.com/pdf-to-word-converter) - PDF to Word Converter * ⭐ **[PDFGear](https://www.pdfgear.com/)**, [xPDFReader](https://www.xpdfreader.com/), [PrivatePDF](https://github.com/photown/private-pdf), [PDFBox](https://pdfbox.apache.org/) or [OpenPDF](https://github.com/LibrePDF/OpenPDF) - PDF Editors / Toolkits
* [Marker](https://github.com/VikParuchuri/marker) - PDF to Markdown * [PDFGrep](https://pdfgrep.org/) - PDF Text Search
* [Images to PDF](https://github.com/Swati4star/Images-to-PDF) or [Adobe Converter](https://www.adobe.com/acrobat/online/jpg-to-pdf.html) - Image to PDF Converter * [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on GDrive
* [PDFCrowd](https://pdfcrowd.com/), [HTMLaPDF](https://www.htmlapdf.com/), [TailWindPDF](https://tailwindpdf.com/) or [wkhtmltopdf](https://wkhtmltopdf.org/) - HTML to PDF / Image Converter * [online2pdf](https://online2pdf.com/) or [2PDFConverter](https://www.2pdfconverter.com/) - Convert Files to PDF
* [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/), [2](https://vebuka.com/) * [PDFConverter](https://www.pdfconverter.com/) or [PDFconvert](https://docupub.com/pdfconvert/) - PDF File Converters
* [WebToPDF](https://webtopdf.com/) or [Percollate](https://github.com/danburzo/percollate) - Webpage to PDF Converters * [Adobe Compress PDF](https://www.adobe.com/acrobat/online/compress-pdf.html) - PDF Compressor
* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs * [PDF Mergy](https://pdfmerge.w69b.com/) or [PDFSnake](https://pdfsnake.app/) - Merge PDF Files
* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover * [Adobe Word Converter](https://www.adobe.com/acrobat/online/word-to-pdf.html) - Word to PDF Converter
* [Scan Your PDF](https://www.scanyourpdf.com/) - Make PDFs look Scanned * [PDFLayoutTextStripper](https://github.com/JonathanLink/PDFLayoutTextStripper) - PDF to Text Converter
* [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs * [VancedPDF](https://vancepdf.com/) or [PDFtoWordConverter](https://xodo.com/pdf-to-word-converter) - PDF to Word Converter
* [JustSignPDF](https://justsignpdf.com/) - Sign PDF Online * [Marker](https://github.com/VikParuchuri/marker) - PDF to Markdown
* [FalsiScan](https://gitlab.com/edouardklein/falsisign) - PDF Hand Signature Generator * [Adobe Excel to PDF](https://www.adobe.com/acrobat/online/excel-to-pdf.html) - Convert Excel Files to PDF
* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected GDrive PDFs * [Images to PDF](https://github.com/Swati4star/Images-to-PDF), [JPG2PDFBot](https://t.me/JPG2PDFBot), [Adobe Converter](https://www.adobe.com/acrobat/online/jpg-to-pdf.html) or [img2pdf](https://pypi.org/project/img2pdf/) - Image to PDF Converter
* [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files * [PDFCrowd](https://pdfcrowd.com/), [HTMLaPDF](https://www.htmlapdf.com/), [TailWindPDF](https://tailwindpdf.com/) or [wkhtmltopdf](https://wkhtmltopdf.org/) - HTML to PDF / Image Converter
* [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - Fill & sign a PDF * [PSTOEdit](http://pstoedit.net/) - Convert PDF to other Vector Formats
* [PrintFriendly](https://www.printfriendly.com/) - Printer Formatting Tools * [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/), [2](https://vebuka.com/)
* [Percollate](https://github.com/danburzo/percollate), [WebToPDF](https://webtopdf.com/) or [PDFmyURL](https://pdfmyurl.com/) - Webpage to PDF Converters
*** * [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs
* [PPT To PDF](https://www.adobe.com/acrobat/online/ppt-to-pdf.html) - Convert PowerPoint to PDF Adobe
# ► File Hosts * [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover
* [Scan Your PDF](https://www.scanyourpdf.com/) - Make PDFs look Scanned
* **Note** - Keep in mind that it's **never** a good idea to upload personal or confidential files to any file host, even if they claim to be encrypted. Most file hosts remove files after inactivity, while some delete them regardless. Check each host if you're concerned about file expiry. * [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs
* [JustSignPDF](https://justsignpdf.com/) - Sign PDF Online
*** * [FalsiScan](https://gitlab.com/edouardklein/falsisign) - PDF Hand Signature Generator
* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected GDrive PDFs
* ↪️ **[Video File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_video_file_hosts)** * [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files
* ⭐ **[Buzzheavier](https://buzzheavier.com/)** - Unlimited / Forever / [Discord](https://discord.gg/ttQjgC28WP) * [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - Fill & sign a PDF
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 Days
* ⭐ **[1fichier.com](https://1fichier.com/)** - 300GB / 15 Days (30 Days With Account) ***
* ⭐ **[file.haus](https://filehaus.top/)** - 200GB / Forever / [.pk](https://filehaus.pk/) / [.su](https://filehaus.su/) / [.onion](http://fileha3hjvudqs2moembtaegnpjo5ptec3tomf5dlxx6ydwtajkkahyd.onion/) / [.i2p](http://xr256v4weabr3rdz3nqzb27bv3gkwjisuf2d57urqtmh3gx3w7da.b32.i2p/) / [.loki](http://nipqehne9zrtpryw6ig5y9gu7c8gwt8ymrrncufxg1g8wf5t4rqo.loki/) / [Discord](https://discord.gg/5Ac25XZfv6) / [Telegram](https://t.me/tsutajanet)
* ⭐ **[Send.cm](https://send.cm/)** - 100GB / 15 Days # ► File Hosts
* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB With Account) / Forever
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever **Note** - Size is per file and time is after the last time someone downloaded that file unless specified.
* ⭐ **[HIDAN](https://hidan.sh/)** - Unlimited / 10+ Days (from upload)
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX) ***
* ⭐ **Pixeldrain Tools** - [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz) / [Limit Bypass Userscript](https://greasyfork.org/en/scripts/491326-pixeldrain-download-bypass)
* [MultiUp.io](https://multiup.io/) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct), [MirrorAce](https://mirrorace.com/), or [Mirrored.to](https://www.mirrored.to/) - Multi Host Uploaders * ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 90 days / [Discord](https://discord.gg/TWKGvYAFvX) / [Speedtest File](https://pixeldrain.com/speedtest) / [Bypass](https://pixeldrain-bypass.cybar.xyz) / [Bypass Note](https://pastebin.com/Ab1mZXXV)
* [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App * ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 days
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Account Required * ⭐ **[FileDitch](https://fileditch.com/)** - 15GB / Forever
* [Qiwi](https://qiwi.gg) - Account Required * ⭐ **[1fichier](https://1fichier.com/)** - 300GB / 15 days (30 days if you sign up)
* [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://pastebin.com/W0j4VDAN) * ⭐ **[Buzzheavier](https://buzzheavier.com/)** - Unlimited / Forever / [Discord](https://discord.gg/ttQjgC28WP)
* [file.kiwi](https://file.kiwi/) - Unlimited / [File Expiry Explanation](https://file.kiwi/en/price) * ⭐ **[Send.cm](https://send.cm/)** - 100GB / 15 days
* [FEX.NET](https://fex.net/) - 100GB / 7 Days * ⭐ **[Oshi](https://oshi.at/)** - 5GB / 90 days
* [SwissTransfer](https://www.swisstransfer.com/) - 50GB / 30 Days / 250 Downloads * ⭐ **[Hexupload](https://www.hexupload.net/)** - 15GB / 60 days
* [BowFile](https://bowfile.com/) - 20GB / 20 Days * ⭐ **[Mixdrop](https://mixdrop.ag/)** - 2GB / 60 Days / Signup Required
* [Hexupload](https://www.hexupload.net/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days * ⭐ **[Qiwi](https://qiwi.gg)** - [Warning](https://pastebin.com/jn90QMEt) / Signup Required
* [FileLu](https://filelu.com/) - 15GB / 1 Day (Unlimited With Account) / [Note](https://pastebin.com/Rr9ZqD2F) * ⭐ **[Catbox.moe](https://catbox.moe/)** - 200MB / Forever
* [Fastupload.io](https://fastupload.io/en) - 10GB / 30 Days (60 Days With Account) * [MultiUp](https://multiup.io/), [MirrorAce](https://mirrorace.com/) or [Mirrorcreator](https://www.mirrored.to/) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct) - Multi Host Uploaders
* [eDisk](https://www.edisk.cz/) or [Easyupload.io](https://easyupload.io/) - 10GB / 30 Days * [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App
* [Drop Download](https://drop.download/) - 10GB / 30 Days / Account Required * [Archive.org](https://archive.org/create/) - Signup Required
* [DesiUpload](https://desiupload.co/) - 10GB / 15 Days (15GB / 30 Days With Account) * [send](https://send.vis.ee/) / [instances](https://gitlab.com/timvisee/send-instances) - 2.5gb / 1 day
* [GrosFichiers](https://www.grosfichiers.com/) - 10GB / 14 Days * [File.cm](https://file.cm/) - 100GB / 30 days / Signup Required
* [Fshare](https://www.fshare.vn/) - 10GB / 5 Days * [edisk](https://www.edisk.cz/) - 10GB / 30 days
* [Uploadraja.com](https://uploadraja.com/) - 10GB / 4 Days (30GB / 15 Days With Account) * [file.kiwi](https://file.kiwi/) - Unlimited / 3.5 Days / [Free Download Duration](https://ibb.co/85z9D1s)
* [FileTransfer.io](https://filetransfer.io/) - 6GB / 21 Days / 50 Downloads * [easyupload](https://easyupload.io/) - 10GB / 50gb total / 30 days
* [Tempfile](https://tempfile.me/) - 10GB / 90 Days * [fastupload](https://fastupload.io/en) - 10GB / 30 days
* [FileDitch](https://fileditch.com/), [Oshi](https://oshi.at/) or [SendGB](https://www.sendgb.com/) - 5GB / 90 Days * [desiupload](https://desiupload.co/) or [uploadraja](https://uploadraja.com/) - 10GB / 15 days
* [MegaUp](https://megaup.net/) - 5GB / 60 Days * [fshare](https://www.fshare.vn/) - 10GB / 5 days
* [ufile.io](https://ufile.io/) - 5GB / 30 Days * [megaup](https://megaup.net/) - 5GB / 60 days
* [Internxt Send](https://send.internxt.com/) - 5GB / 15 Days * [ufile](https://ufile.io/) - 5GB / 30 days
* [pCloud Transfer](https://transfer.pcloud.com/) or [Tresorit Send](https://send.tresorit.com/) - 5GB / 7 Days / Email Required * [sendbig](https://www.sendbig.com/) - 5GB / 7 days
* [Temp.sh](https://temp.sh/) - 4GB / 3 Days * [Smash](https://fromsmash.com/) - 2GB / 7Days
* [File Convoy](https://www.fileconvoy.com/) - 3GB / 21 Days * [alfafile](https://www.alfafile.net/) - 5GB / 30 days / Signup Required
* [FilePost](https://file-post.net/) - 3GB / 7 Days / Email Required * [drop.download](https://drop.download/) - 5GB / 15 days / Signup Required
* [Send](https://send.vis.ee/) - 2.5GB / 3 Days / 10 Downloads / [Instances](https://gitlab.com/timvisee/send-instances) * [clicknupload](https://clicknupload.co/) - 2GB / 12 days / 5gb / 30 days on sign-up
* [DropMB](https://dropmb.com/) - 2GB / 1 Year * [doodrive](https://doodrive.com/) - 2GB / 30 days / Signup Required
* [FireLoad](https://www.fireload.com/) - 2GB / 60 Days / Account Required * [sfile](https://sfile.mobi/) - 100MB / 5gb total / Forever
* [Lufi](https://upload.disroot.org/) - 2GB / 30 Days * [krakenfiles](https://krakenfiles.com/) - 1GB / 90 days
* [DooDrive](https://doodrive.com/) - 2GB / 30 Days / Account Required * [Imagenetz](https://www.imagenetz.de/) - 2GB / 90 days
* [Clicknupload](https://clicknupload.co/) - 2GB / 8 Days (10GB / 25 Days With Account) * [filelu](https://filelu.com/) - ?GB / 10 days
* [WeTransfer](https://wetransfer.com/) - 2GB / 7 Days * [fileconvoy](https://www.fileconvoy.com/) - 3GB / 21 days total
* [Smash](https://fromsmash.com/) - 2GB / 7 Days / Email Required * [filetransfer](https://filetransfer.io/) - 6GB / 21 days total / 50 download limit
* [Limited Upload Hosts](https://rentry.org/xc48kg) - More Hosts / 1GB or Below * [swisstransfer](https://www.swisstransfer.com/en) - 50GB / 30 days total / 250 download limit
* [bowfile](https://bowfile.com/) - 5GB / 30 days total
*** * [grosfichiers](https://www.grosfichiers.com/) - 10GB / 14 days total
* [filebin](https://filebin.net/) - Unlimited / 6 days total / Anyone w/ a link can delete
## ▷ P2P File Transfer * [fex](https://fex.net/) - 100GB total / 7 days total
* [Encl](https://encl.io/) - 10gb / 7 days total
* ⭐ **[ToffeeShare](https://toffeeshare.com/)** * [SendGB](https://www.sendgb.com/) - 5GB / 7 days total
* ⭐ **[Blaze](https://blaze.vercel.app/)** / [GitHub](https://github.com/blenderskool/blaze) * [pCloud Transfer](https://transfer.pcloud.com/) - 5GB / 7 days total
* ⭐ **[LocalSend](https://localsend.org/)** - Phone / Desktop Transfer / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png) * [tresorit](https://send.tresorit.com/) - 5GB / 7 days total
* ⭐ **[wormhole](https://wormhole.app/)** * [temp.sh](https://temp.sh/) - 4GB / 3 days total
* ⭐ **[justbeamit](https://justbeamit.com/)** * [file-post](https://file-post.net/) - 3GB / 7 days total
* ⭐ **[Tailscale](https://tailscale.com/)** * [FireLoad](https://www.fireload.com/) - 2GB / 60 days total / Signup Required
* ⭐ **[spacedrop](https://spacedrop.app/)** * [WeTransfer](https://wetransfer.com/) - 2GB / 7 days total
* [Warpinator](https://github.com/linuxmint/warpinator) - Phone / Desktop Transfer * [LitterBox](https://litterbox.catbox.moe/) - 1GB / 3 days total
* [QRServ](https://play.google.com/store/apps/details?id=dev.uint.qrserv) - Phone / Desktop Transfer / [GitHub](https://github.com/uintdev/qrserv) * [Limited Upload Hosts](https://rentry.org/xc48kg) - 1GB or below
* [pairdrop](https://pairdrop.net/) or [Snapdrop](https://snapdrop.net/)
* [sharedrop](https://www.sharedrop.io/) ***
* [new.space](https://new.space/)
* [file.pizza](https://file.pizza/) ## ▷ P2P File Transfer
* [Transfernow](https://www.transfernow.net/en)
* [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole) * ⭐ **[ToffeeShare](https://toffeeshare.com/)**
* [onionshare](https://onionshare.org/) * ⭐ **[Transfer.sh](https://transfer.sh/)**
* [Horizon Send](https://send.hrzn.cool/) * ⭐ **[Blaze](https://blaze.vercel.app/)** / [GitHub](https://github.com/blenderskool/blaze)
* [OwnCloud](https://owncloud.com/) * ⭐ **[wormhole](https://wormhole.app/)**
* [WinSCP](https://winscp.net/eng/index.php) * ⭐ **[justbeamit](https://justbeamit.com/)**
* [FileBrowser](https://filebrowser.org/) * ⭐ **[Tailscale](https://tailscale.com/)**
* [croc](https://github.com/schollz/croc) / [GUI](https://github.com/howeyc/crocgui) * ⭐ **[LocalSend](https://localsend.org/)** - Phone / Desktop Transfer / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png)
* [landrop](https://landrop.app/) * [Warpinator](https://github.com/linuxmint/warpinator) - Phone / Desktop Transfer
* [Surge](https://getsurge.io/) * [QRServ](https://github.com/uintdev/qrserv) - Phone / Desktop Transfer
* [saladroom](https://saladroom.net/) * [pairdrop](https://pairdrop.net/)
* [blymp.io](https://blymp.io/) / [GitHub](https://github.com/vantezzen/blymp-io) * [sharedrop](https://www.sharedrop.io/)
* [drop.lol](https://drop.lol/) / [GitHub](https://github.com/mat-sz/filedrop-web) * [new.space](https://new.space/)
* [sendfiles](https://sendfiles.online/) * [file.pizza](https://file.pizza/)
* [XD-Torrent](https://xd-torrent.github.io/) * [Transfernow](https://www.transfernow.net/en)
* [lightning](https://lightning-share.vercel.app/) * [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole)
* [RDrop](https://rdrop.link/) * [onionshare](https://onionshare.org/)
* [webdrop](https://webdrop.space/) * [Horizon Send](https://send.hrzn.cool/)
* [MyAirBridge](https://www.myairbridge.com/) * [OwnCloud](https://owncloud.com/)
* [Sprend](https://sprend.com/) * [WinSCP](https://winscp.net/eng/index.php)
* [JumboMail](https://www.jumbomail.me/) * [FileBrowser](https://filebrowser.org/)
* [PlusTransfer](https://www.plustransfer.com/) * [croc](https://github.com/howeyc/crocgui)
* [Wing FTP](https://www.wftpserver.com/) * [landrop](https://landrop.app/)
* [Xlight](https://xlightftpd.com/) * [Surge](https://getsurge.io/)
* [FileZilla](https://filezilla-project.org/) * [saladroom](https://saladroom.net/)
* [uschovna](https://www.uschovna.cz/) * [blymp.io](https://blymp.io/) / [GitHub](https://github.com/vantezzen/blymp-io)
* [posilej](https://posilej.cz/) * [drop.lol](https://drop.lol/) / [GitHub](https://github.com/mat-sz/filedrop-web)
* [filetransfer](https://filetransfer.kpn.com/) * [sendfiles](https://sendfiles.online/)
* [Diode](https://diode.io/) * [XD-Torrent](https://xd-torrent.github.io/)
* [WebWormhole](https://webwormhole.io/) * [lightning](https://lightning-share.vercel.app/)
* [Destiny](https://github.com/LeastAuthority/destiny) * [RDrop](https://rdrop.link/)
* [filepress](https://new.filepress.store/) * [webdrop](https://webdrop.space/)
* [sharrr](https://www.sharrr.com/) * [MyAirBridge](https://www.myairbridge.com/)
* [Photon](https://photondev.netlify.app/) * [Sprend](https://sprend.com/)
* [EchoDuck](https://echoduck.com/) * [JumboMail](https://www.jumbomail.me/)
* [ffsend](https://github.com/timvisee/ffsend) * [PlusTransfer](https://www.plustransfer.com/)
* [File.love](https://file.love/) * [Wing FTP](https://www.wftpserver.com/)
* [IPFS](https://ipfs.tech/) or [kubo](https://github.com/ipfs/kubo) - P2P Hypermedia Protocol * [Xlight](https://xlightftpd.com/)
* IPFS Tools - [Resources](https://github.com/ipfs/awesome-ipfs) / [Extension](https://github.com/ipfs/ipfs-companion) / [Desktop](https://github.com/ipfs/ipfs-desktop) / [IPFS Cluster](https://ipfscluster.io/) * [uschovna](https://www.uschovna.cz/)
* [posilej](https://posilej.cz/)
*** * [filetransfer](https://filetransfer.kpn.com/)
* [Diode](https://diode.io/)
## ▷ Cloud Storage * [WebWormhole](https://webwormhole.io/)
* [Destiny](https://github.com/LeastAuthority/destiny)
* **Note** - Monthly prices are based on annual plans. 2TB prices are halved for comparison if a 1TB plan doesn't exist for a service. * [filepress](https://new.filepress.store/)
* [sharrr](https://www.sharrr.com/)
*** * [Photon](https://photondev.netlify.app/)
* [ffsend](https://github.com/timvisee/ffsend)
* ⭐ **[Cloud Storage Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** - Compare Cloud Storage Polices * [File.love](https://file.love/)
* ⭐ **[Rclone](https://rclone.org/)** - Cloud Storage Manager * [spacedrop](https://spacedrop.app/)
* ⭐ **Rclone Tools** - [Guide](https://telegra.ph/Simple-rclone-usage-01-13) / [WebUI](https://github.com/rclone/rclone-webui-react), [2](https://github.com/MinorMole/RcloneBrowser-Portable) / [GUI](https://github.com/kapitainsky/RcloneBrowser) / [Colab](https://colab.research.google.com/github/szyha/RcloneLabArchive/blob/master/RcloneLab.ipynb) / [Telegram](https://t.me/rclonexbot) / [Transfer Tool](https://github.com/TheCaduceus/Multi-Cloud-Transfer-Tool) * [IPFS](https://ipfs.tech/) - P2P Hypermedia Protocol / [Resources](https://github.com/ipfs/awesome-ipfs) / [Extension](https://github.com/ipfs/ipfs-companion) / [Desktop](https://github.com/ipfs/ipfs-desktop)
* ⭐ **[gclone](https://github.com/dogbutcat/gclone)**, [2](https://github.com/l3v11/gclone) - Cloud Storage Manager * [IPFS Cluster](https://ipfscluster.io/) - Automated data availability and redundancy on IPFS
* ⭐ **gclone Tools** - [Guide](https://telegra.ph/Gclone-Guide-for-Windows-07-20) / [Telegram](https://github.com/wrenfairbank/telegram_gcloner) / [Bot](https://github.com/MsGsuite/CloneBot) / [Discord Bot](https://github.com/Rekulous/CloneCord-bot), [2](https://github.com/jsmsj/GcloneDiscordify)
* ⭐ **[Air Explorer](https://airexplorer.net/en/)** - Cloud Storage Manager ***
* ⭐ **[RaiDrive](https://www.raidrive.com/)** - Cloud Storage Manager
* ⭐ **[GDrive](https://drive.google.com/)** - 15GB Free / ~$3.25 for 1TB ## ▷ Cloud Storage
* ⭐ **[mega](https://mega.nz/)** - 20GB Free / ~$4.5 for 1TB / [GitHub](https://github.com/meganz)
* ⭐ **[disk.yandex](https://disk.yandex.com/)** - 5GB Free / $2.42 for 1TB * **Note** - Monthly prices are based on annual plans. 2TB prices are halved for comparison if a 1TB plan doesn't exist for a service.
* ⭐ **[filen](https://filen.io/)** - 10GB Free / ~$8 for 1TB
* ⭐ **[Cyberduck](https://cyberduck.io/)** - Libre Server / Cloud Storage Browser ***
* [Cloud Storage Archiving Guide](https://pastebin.com/kLhLHsXg) - How To Safely Archive Files on Cloud Storage Sites
* [terabox](https://terabox.com/) - 1TB Free / $3.50 for 2TB / [Downloader](https://indexsubtitle.cc/terabox-direct-link-generator) * ⭐ **[Cloud Storage Comparisions](https://eylenburg.github.io/cloud_comparison.htm)** - Compare Cloud Storage Polices
* [dropbox](https://www.dropbox.com/) - 1 or 2 GB Free / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral) * ⭐ **[RClone](https://rclone.org/)** - Cloud Storage Manager
* [mediafire](https://www.mediafire.com/) - 10GB Free / $5.83 for 1TB * ⭐ **RClone Tools** - [Guide](https://telegra.ph/Simple-rclone-usage-01-13) / [WebUI](https://github.com/rclone/rclone-webui-react), [2](https://github.com/MinorMole/RcloneBrowser-Portable) / [GUI](https://github.com/kapitainsky/RcloneBrowser) / [Colab](https://colab.research.google.com/github/szyha/RcloneLabArchive/blob/master/RcloneLab.ipynb) / [Telegram](https://t.me/rclonexbot) / [Transfer Tool](https://github.com/TheCaduceus/Multi-Cloud-Transfer-Tool)
* [icedrive](https://icedrive.net/) - 10GB Free / $5 for 1TB * ⭐ **[gclone](https://github.com/dogbutcat/gclone)**, [2](https://github.com/l3v11/gclone) - Cloud Storage Manager
* [PCloud](https://www.pcloud.com/) - 10GB Free / ~$4.16 for 1TB * ⭐ **gclone Tools** - [Guide](https://telegra.ph/Gclone-Guide-for-Windows-07-20) / [Telegram](https://github.com/wrenfairbank/telegram_gcloner) / [Bot](https://github.com/MsGsuite/CloneBot) / [Discord Bot](https://github.com/Rekulous/CloneCord-bot), [2](https://github.com/jsmsj/GcloneDiscordify) / [Colab](https://github.com/Rekulous/GCloneLab), [2](https://colab.research.google.com/github/Rekulous/GCloneLab/blob/main/GCloneLab.ipynb)
* [JumpShare](https://jumpshare.com/) - 2GB Free / $8.25 for 1TB * ⭐ **[Air Explorer](https://airexplorer.net/en/)** - Cloud Storage Manager
* [CyberFile](https://cyberfile.me/) - 10GB Free * ⭐ **[RaiDrive](https://www.raidrive.com/)** - Cloud Storage Manager
* [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16.67 for 1TB * ⭐ **[GDrive](https://drive.google.com/)** - 15GB Free / ~$3.25 for 1TB
* [storj](https://www.storj.io/) - 25GB Free / ~$4 for 1TB * ⭐ **[mega](https://mega.nz/)** - 20GB Free / ~$4.5 for 1TB / [GitHub](https://github.com/meganz)
* [Blomp](https://www.blomp.com/) - 20GB Free / ~$3 for 2TB * ⭐ **[disk.yandex](https://disk.yandex.com/)** - 5GB Free / $2.42 for 1TB
* [internxt](https://internxt.com/) - 10GB Free / ~4.85 for 1TB * ⭐ **[filen](https://filen.io/)** - 10GB Free / ~$8 for 1TB
* [1Cloud File](https://1cloudfile.com/) - 10GB Free * ⭐ **[internxt](https://internxt.com/)** - 10GB Free / ~4.85 for 1TB
* [xpipe](https://xpipe.io) - Remote File Manager * ⭐ **[Cyberduck](https://cyberduck.io/)** - Libre Server / Cloud Storage Browser
* [bookmarkfs](https://github.com/CoolElectronics/bookmarkfs) - Chrome's Profile Sync Cloud Storage * [Cloud Storage Archiving Guide](https://pastebin.com/kLhLHsXg) - How To Safely Archive Files on Cloud Storage Sites
* [InfiniDrive](https://github.com/nicomda/InfiniDrive) - Amazon Prime Photos Cloud Storage * [terabox](https://terabox.com/) - 1TB Free / $3.50 for 2TB
* [OneDriveFly](https://github.com/Tai7sy/OneDriveFly) or [OneDrive Vercel Index](https://ovi.swo.moe/) - OneDrive Indexes * [CyberFile](https://cyberfile.me/) - 1TB Free
* [Fix-OneDrive-Zip](https://github.com/pmqs/Fix-OneDrive-Zip) - Fix OneDrive Zip Files >4gb * [HelURL](https://helurl.com/) - 50GB Free
* [Koofr](https://koofr.eu/) - Cloud Storage Manager * [dropbox](https://www.dropbox.com/) - 5GB Free / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral)
* [SpaceDrive](https://www.spacedrive.com/) - Cloud Storage Manager * [mediafire](https://www.mediafire.com/) - 10GB Free / $5.83 for 1TB
* [CarotDAV](http://rei.to/carotdav_en.html) - Cloud Storage Manager * [icedrive](https://icedrive.net/) - 10GB Free / $5 for 1TB
* [MultCloud](https://www.multcloud.com/) - Cloud Storage Manager * [PCloud](https://www.pcloud.com/) - 10GB Free / ~$4.16 for 1TB
* [MSP360](https://www.msp360.com/explorer.aspx) - Cloud Storage Manager * [JumpShare](https://jumpshare.com/) - 2GB Free / $8.25 for 1TB
* [AList](https://alist.nn.ci) - Cloud Storage Manager * [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16.67 for 1TB
* [SeaFile](https://www.seafile.com/en/home/) or [FileStash](https://www.filestash.app/) - Self-Hosted Cloud Storage / [Fork](https://github.com/ZizzyDizzyMC/linx-server/) * [storj](https://www.storj.io/) - 25GB Free / ~$4 for 1TB
* [xpipe](https://github.com/xpipe-io/xpipe) - Remote File Manager
*** * [bookmarkfs](https://github.com/CoolElectronics/bookmarkfs) - Chrome's Profile Sync Cloud Storage
* [InfiniDrive](https://github.com/nicomda/InfiniDrive) - Amazon Prime Photos Cloud Storage
## ▷ GDrive Tools * [OneDriveFly](https://github.com/Tai7sy/OneDriveFly) or [OneDrive Vercel Index](https://ovi.swo.moe/) - OneDrive Indexes
* [Fix-OneDrive-Zip](https://github.com/pmqs/Fix-OneDrive-Zip) - Fix OneDrive Zip Files >4gb
* ↪️ **[GDrive File Sharing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_gdrive_file_sharing)** * [Microsoft-E5-Auto-Renewal](https://github.com/TheCaduceus/Microsoft-E5-Auto-Renewal) - Developer E5 Auto Renewal
* ⭐ **[OneClickRun](https://colab.research.google.com/github/biplobsd/OneClickRun/blob/master/OneClickRun.ipynb)** - Google Drive Tools Colab / [GitHub](https://github.com/biplobsd/OneClickRun) / [Features](https://i.ibb.co/BfF3djW/f0ab560a3aef.png) / Use Throwaways * [Koofr](https://koofr.eu/) - Cloud Storage Manager
* ⭐ **[SA Drive](https://github.com/jsmsj/sa-drive/)** - Service Account Drive Manager * [SpaceDrive](https://www.spacedrive.com/) - Cloud Storage Manager
* [Any File to GDrive](https://github.com/menukaonline/Any-file-to-Google-Drive) - DDL to GDrive Tool * [CarotDAV](http://rei.to/carotdav_en.html) - Cloud Storage Manager
* [DriveUploader](https://driveuploader.com/) - Receive Files via GDrive * [MultCloud](https://www.multcloud.com/) - Cloud Storage Manager
* [GDrive CLI](https://github.com/glotlabs/gdrive) - Google Drive CLI Client * [MSP360](https://www.msp360.com/explorer.aspx) - Cloud Storage Manager
* [goodls](https://github.com/tanaikech/goodls) - Google Drive Downloader * [AList](https://github.com/alist-org/alist) - Cloud Storage Manager
* [gogdl-ng](https://github.com/gogdl-ng/gogdl-ng) - Google Drive Bulk Downloader * [SeaFile](https://www.seafile.com/en/home/) or [FileStash](https://www.filestash.app/) - Self-Hosted Cloud Storage / [Fork](https://github.com/ZizzyDizzyMC/linx-server/)
* [GDrive Downloader](https://github.com/Akianonymus/gdrive-downloader) - Google Drive Folder Downloader
* [gdrivedl](https://github.com/matthuisman/gdrivedl) - Google Drive Python Download Script ***
* [GDriveSearcherBot](https://github.com/TheHamkerCat/GdriveSearcherBot) - GDrive Search Bot
* [ISAAC](https://github.com/harryeffinpotter/ISAAC) - Google Service Account Generators ## ▷ GDrive Tools
* [goindex](https://github.com/alx-xlx/goindex) / [Extended](https://github.com/menukaonline/goindex-extended) / [Themes](https://install.kenci.workers.dev/) or [Google-Drive-Index](https://gitlab.com/GoogleDriveIndex/Google-Drive-Index) - Google Drive Indexers
* [Decrypt.Hashhackers](https://decrypt.hashhackers.com/) - Encrypt / Decrypt GDrive * ↪️ **[GDrive File Sharing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_gdrive_file_sharing)**
* [gdurl](https://gdurl.com/), [google-drive-direct-link-generator/](https://www.wonderplugin.com/online-tools/google-drive-direct-link-generator/),[Direct.GDrive](https://direct.gdrive.vip/en/), [Maulvi](https://maulvi.github.io/), [GDriveWebAppPublic ](https://github.com/CloudflareHackers/GDriveWebAppPublic), [Google Drive Direct Links](https://greasyfork.org/en/scripts/10052) or [Sharer](https://sharer.pw/) - Host Direct Links on GDrive * ↪️ **[Copy Google Drives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_copy_google_drives)**
* [GdriveCloneWeb](https://github.com/jsmsj/GdriveCloneWeb), [Google Drive Copy Folder](https://github.com/ericyd/gdrive-copy), [Copy Folder](https://chromewebstore.google.com/detail/copy-folder/kfbicpdhiofpicipfggljdhjokjblnhl) or [Google Drive Clone Bot](https://jsmsj.github.io/GdriveCloneBot/) - Copy Google Drives * ⭐ **[OneClickRun](https://colab.research.google.com/github/biplobsd/OneClickRun/blob/master/OneClickRun.ipynb)** or [MiXLab](https://github.com/shirooo39/MiXLab) - Google Drive Tools Colab / [GitHub](https://github.com/biplobsd/OneClickRun) / [Features](https://i.ibb.co/BfF3djW/f0ab560a3aef.png) / Use Throwaways
* [CloneBot](https://github.com/MsGsuite/CloneBot_Heroku) - Copy GDrive to TeamDrive * ⭐ **[SA Drive](https://github.com/jsmsj/sa-drive/)** - Service Account Drive Manager
* [GD-EFC Link Encryptor](https://rekulous.github.io/gd-efc-encryptor/) - Google Drive Link Encryptor for GD-EFC * [Any File to GDrive](https://github.com/menukaonline/Any-file-to-Google-Drive) - DDL to GDrive Tool
* [gd-efc](https://anadius.github.io/gd-efc/) - Copy Encrypted Google Drive * [DriveUploader](https://driveuploader.com/) - Receive Files via GDrive
* [Gdrive Guide-Noob Friendly](https://telegra.ph/Gdrive-Guide-Noob-Friendly-04-10) - GDrive Guide * [GDrive CLI](https://github.com/glotlabs/gdrive) - Google Drive CLI Client
* [DriveRename](https://driverename.iblogbox.com/) - Bulk GDrive File Rename * [goodls](https://github.com/tanaikech/goodls) - Google Drive Downloader
* [gogdl-ng](https://github.com/gogdl-ng/gogdl-ng) - Google Drive Bulk Downloader
*** * [GDrive Downloader](https://github.com/Akianonymus/gdrive-downloader) - Google Drive Folder Downloader
* [gdrivedl](https://github.com/matthuisman/gdrivedl) - Google Drive Python Download Script
## ▷ Mega Tools * [GDriveSearcherBot](https://github.com/TheHamkerCat/GdriveSearcherBot) - GDrive Search Bot
* [ISAAC](https://github.com/harryeffinpotter/ISAAC) - Google Service Account Generators
* ⭐ **[Mega-to-Google-Drive](https://github.com/menukaonline/Mega-to-Google-Drive)** - Transfer Files from Mega to GDrive * [G-Index](https://github.com/LeeluPradhan/G-Index), [goindex](https://github.com/alx-xlx/goindex) / [Extended](https://github.com/menukaonline/goindex-extended) / [Themes](https://install.kenci.workers.dev/), [GDIndex](https://github.com/maple3142/GDIndex), [Google-Drive-Index](https://gitlab.com/GoogleDriveIndex/Google-Drive-Index) or [libDrive](https://github.com/libDrive/heroku) - Google Drive Indexers
* ⭐ **[Megabasterd](https://github.com/tonikelope/megabasterd)** - MEGA Quota Bypass / [Note](https://pastebin.com/BpS2mwKX) * [Decrypt.Hashhackers](https://decrypt.hashhackers.com/) - Encrypt / Decrypt GDrive
* ⭐ **[Mega_account_generator](https://github.com/qtchaos/py_mega_account_generator)** - Unlimited Upload Size / [Note](https://pastebin.com/Jwuc5Tpf) * [Direct.GDrive](https://direct.gdrive.vip/en/), [Maulvi](https://maulvi.github.io/), [Google Drive Direct Links](https://greasyfork.org/en/scripts/10052) or [Sharer](https://sharer.pw/) - Host Direct Links on GDrive
* ⭐ **[MegaDoctor](https://github.com/tonikelope/megadoctor)** - Mega Upload Manager * [CloneBot](https://github.com/MsGsuite/CloneBot_Heroku) - Copy GDrive to TeamDrive
* [MEGASync](https://mega.io/desktop) - Mega Desktop App * [GD-EFC Link Encryptor](https://rekulous.github.io/gd-efc-encryptor/) - Google Drive Link Encryptor for GD-EFC
* [MegaCMD](https://mega.io/cmd) or [megatools](https://megatools.megous.com/) - Mega CLIs * [gd-efc](https://anadius.github.io/gd-efc/) - Copy Encrypted Google Drive
* [Mega-Downloader](https://github.com/ZonD80/mega-downloader) - Mega Download Script * [gdurl](https://gdurl.com/), [google-drive-direct-link-generator/](https://www.wonderplugin.com/online-tools/google-drive-direct-link-generator/) - Direct GDrive Link Generators
* [Mega.nz-Rclone-Index-Heroku](https://github.com/developeranaz/Mega-index-heroku) - Mega to HTTP * [Gdrive Guide-Noob Friendly](https://telegra.ph/Gdrive-Guide-Noob-Friendly-04-10) - GDrive Guide
* [MegaKeep](https://github.com/maybecryptic/MegaKeep) - Login to Multiple Mega Accounts
***
## ▷ Mega Tools
* ⭐ **[Mega-to-Google-Drive](https://github.com/menukaonline/Mega-to-Google-Drive)** - Transfer Files from Mega to GDrive
* ⭐ **[Megabasterd](https://github.com/tonikelope/megabasterd)** - MEGA Quota Bypass / [Note](https://pastebin.com/BpS2mwKX)
* ⭐ **[Mega_account_generator](https://github.com/qtchaos/py_mega_account_generator)** - Unlimited Upload Size / [Note](https://pastebin.com/Jwuc5Tpf)
* ⭐ **[MegaDoctor](https://github.com/tonikelope/megadoctor)** - Mega Upload Manager
* [MEGASync](https://mega.io/desktop) - Mega Desktop App
* [MegaCMD](https://mega.io/cmd) or [megatools](https://megatools.megous.com/) - Mega CLIs
* [Mega-Downloader](https://github.com/ZonD80/mega-downloader) - Mega Download Script
* [Mega.nz-Rclone-Index-Heroku](https://github.com/developeranaz/Mega-index-heroku) - Mega to HTTP
* [MegaKeep](https://github.com/maybecryptic/MegaKeep) - Login to Multiple Mega Accounts

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -6,11 +6,12 @@
# ► Linux Distros # ► Linux Distros
* **Note** - We don't curate individual distros ourselves as we feel the indexes listed are good enough to stand on their own. **Note** - We don't curate individual distros ourselves as we feel the indexes listed are good enough to stand on their own.
*** ***
* ⭐ **[Linux Difficulty Chart](https://i.ibb.co/kXJdBrF/98e87fc317dd.png)** * ⭐ **[Linux Difficulty Chart](https://i.ibb.co/kXJdBrF/98e87fc317dd.png)**
* ⭐ **[Beginner Distros](https://ash.fail/distros.html)**
* ⭐ **[DistroChooser](https://distrochooser.de/)** * ⭐ **[DistroChooser](https://distrochooser.de/)**
* ⭐ **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)** * ⭐ **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)**
* ⭐ **[Babbies First Linux](https://wiki.installgentoo.com/index.php/Babbies_First_Linux)** * ⭐ **[Babbies First Linux](https://wiki.installgentoo.com/index.php/Babbies_First_Linux)**
@ -21,81 +22,7 @@
* [OS.click](https://os.click/en) * [OS.click](https://os.click/en)
* [LinuxTracker](https://linuxtracker.org/) * [LinuxTracker](https://linuxtracker.org/)
* [OpenSourceFeed](https://www.opensourcefeed.org/) * [OpenSourceFeed](https://www.opensourcefeed.org/)
* [Pkgs](https://pkgs.org/) / [Repology](https://repology.org/) * [Pkgs](https://pkgs.org/)
***
## ▷ Linux Communities
* ⭐ **[All Things Linux](https://discord.gg/linux)** - Linux Discord Server
* [Linux.Chat](https://discord.gg/linuxchat) - Linux Discord Server
* [Linux x Technology](https://linuxdiscord.com/) - Linux Discord Server
* [Discord-Linux](https://discord.gg/discord-linux) - Linux Discord Server
* [Linux.org](https://linux.org/) - Linux Forum
* [Ezlinux](https://ezlinux.net/) - Linux Forum
***
## ▷ Linux Guides
* ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
* ⭐ **[Archwiki](https://wiki.archlinux.org/)** - Arch Linux Guide / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
* ⭐ **[InstallGentoo](https://wiki.installgentoo.com/)** - Linux Guides
* [GameShell](https://github.com/phyver/GameShell) - Unix Shell Learning Game
* [Gentoo Wiki](https://wiki.gentoo.org/wiki/Main_Page) - Gentoo Guides
* [HowToLinux](https://howtolinux.vercel.app) - Linux Guides
* [HowtoForge](https://www.howtoforge.com/) - Linux Guides
* [Sindresorhus Guides](https://github.com/sindresorhus/guides) - Linux Guides
* [Erik Dubois](https://www.youtube.com/c/ErikDubois) - Linux Guides
* [LinuxJourney](https://linuxjourney.com/) - Linux Guides
* [Linuxtopia](https://www.linuxtopia.org/) - Linux Guides
* [Mental Outlaw](https://www.youtube.com/channel/UC7YOGHUfC1Tb6E4pudI9STA) - Linux Guides
* [Boot-Repair](https://help.ubuntu.com/community/Boot-Repair) - Grub Repair Guide for Linux Systems
***
## ▷ Linux System
* 🌐 **[Awesome Gnome](https://github.com/Kazhnuz/awesome-gnome)** - GNOME Resources
* ⭐ **[Ventoy](https://www.ventoy.net)** / [GitHub](https://github.com/ventoy/Ventoy) or [Impression](https://gitlab.com/adhami3310/Impression) - Create Bootable USB Linux Drives
* ⭐ **[Btop](https://github.com/aristocratos/btop)**, **[fastfetch](https://github.com/fastfetch-cli/fastfetch)**, **[MangoHud](https://github.com/flightlessmango/MangoHud)**, [CPU-X](https://github.com/TheTumultuousUnicornOfDarkness/CPU-X), [Macchina](https://github.com/Macchina-CLI/macchina), [Archey4](https://github.com/HorlogeSkynet/archey4), [Hyfetch](https://github.com/hykilpikonna/hyfetch) or [s-tui](https://github.com/amanusk/s-tui) - System Info / Resource Monitors
* ⭐ **[TimeShift](https://github.com/linuxmint/timeshift)** - System Restore / Backup
* [DistroSea](https://distrosea.com/), [anuraOS](https://github.com/MercuryWorkshop/anuraOS) - Linux Browser Emulator
* [SysmonForLinux](https://github.com/Sysinternals/SysmonForLinux) - Monitor / Log System Activity
* [screenFetch](https://github.com/KittyKatt/screenFetch) - Bash Screenshot Information Tool
* [Nanobench](https://github.com/andreas-abel/nanoBench) - CPU Microbenchmark / [Documentation](https://nanobench.ankerl.com/)
* [ScanMem](https://github.com/scanmem/scanmem) - Memory Scanner / Debugger
* [pacwall](https://github.com/Kharacternyk/pacwall) - Live Wallpaper Dependency Graph / Package Status
* [keyd](https://github.com/rvaiya/keyd) or [xremap](https://github.com/k0kubun/xremap) - Keyboard Remapping
* [LAN Mouse](https://github.com/feschber/lan-mouse) - Mouse & Keyboard Sharing
* [Input Leap](https://github.com/input-leap/input-leap) - Multi-Computer Control
* [auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) - CPU Speed & Power Optimization Automation
* [node-startup](https://github.com/ralyodio/node-startup) - Startup Script
* [winapps](https://github.com/Fmstrat/winapps) - Run Windows Apps on Linux
* [Teleport](https://teleportsite.pages.dev/) - Windows App Compatibility Analyzer
* [WoeUSB](https://github.com/WoeUSB/WoeUSB) or [Windows2USB](https://github.com/ValdikSS/windows2usb) - Create Bootable USB Windows Drives
* [NetBoot](https://netboot.xyz/) - Distro Installer
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
* [zfsBootMenu](https://docs.zfsbootmenu.org/) - ZFS Bootloader
* [Linux Heads](https://osresearch.net/) - Minimal CoreBoot / [GitHub](https://github.com/osresearch/heads)
* [GParted](https://gparted.org/) - Partition Manager
* [Archinstall](https://github.com/archlinux/archinstall) - Arch Linux Installers
* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME
* [CoreELEC](https://coreelec.org) / [GitHub](https://github.com/CoreELEC/CoreELEC) or [LibreELEC](https://libreelec.tv/) - Kodi-Based Operating System
* [WSL](https://learn.microsoft.com/en-us/windows/wsl/) - Run Linux on Windows / [Resources](https://github.com/sirredbeard/Awesome-WSL) / [Startup Launcher](https://github.com/nullpo-head/wsl-distrod) / [Wayland / X Server](https://github.com/microsoft/wslg)
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
* [fvwm](https://www.fvwm.org/) or [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Virtual Machines
* [WebVM](https://webvm.io/) - Browser Virtual Machine / [Discord](https://discord.gg/yTNZgySKGa)
* [OSX-KVM](https://github.com/kholia/OSX-KVM), [OneClick-macOS-Simple-KVM](https://notAperson535.github.io/OneClick-macOS-Simple-KVM) or [macOS-Simple-KVM](https://github.com/foxlet/macOS-Simple-KVM) - macOS Virtual Machines
* [kmon](https://kmon.cli.rs/) - Kernel Manager and Activity Monitor
* [Kernel Map](https://makelinux.github.io/kernel/map/) - Interactive Linux Kernel Map
* [SystemRescue](https://www.system-rescue.org/) or [Super Grub2 Disk](https://www.supergrubdisk.org/super-grub2-disk/) - Bootable System Rescue Toolkits
* [coreboot](https://coreboot.org/) or [Libreboot](https://libreboot.org/) - Replace Proprietary BIOS/UEFI Firmware
* [bt-dualboot](https://github.com/x2es/bt-dualboot) - Dual-Boot Bluetooth Sync Tool
* [Hardcode Tray](https://github.com/bilelmoussaoui/Hardcode-Tray) - Hardcoded Tray Icon Fix
* [open-gpu-kernel-modules](https://github.com/NVIDIA/open-gpu-kernel-modules) - NVIDIA Linux Open GPU Kernel Module
* [nosystemd](https://nosystemd.org/) - Alternatives to Systemd
* [greetd](https://sr.ht/~kennylevinsen/greetd/) - Login Manager Daemon
*** ***
@ -109,36 +36,6 @@
*** ***
## ▷ Window Managers
* **Note** - Most Window Managers have a steep learning curve. Customization (or "ricing") is a requirement. [See below](https://fmhy.net/linuxguide#ricing-customization) for some resources.
***
* 🌐 **[Window Manager Index](https://wiki.archlinux.org/title/Window_manager)** - List of Window Managers
* [awesomewm](https://github.com/awesomeWM/awesome) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Awesome)
* [dwm](https://dwm.suckless.org) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Dwm)
* [qtile](https://qtile.org/) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Qtile)
* [xmonad](https://xmonad.org/) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Xmonad)
* [Compix](https://github.com/xeome/compix) - Window Manager
* [bspwm](https://github.com/baskerville/bspwm) - Tiling Window Manager / [Binds](https://github.com/baskerville/sxhkd) / [Arch Wiki](https://wiki.archlinux.org/title/Bspwm)
***
## ▷ Wayland Compositors
* 🌐 **[Wayland Compositor Index](https://wiki.archlinux.org/title/Wayland#Compositors)** - List of Wayland Compositors
* ⭐ **[Hyprland](https://hyprland.org/)** - Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://end-4.github.io/dots-hyprland-wiki/en/)
* ⭐ **[Sway](https://github.com/swaywm/sway)** or [SwayFx](https://github.com/WillPower3309/swayfx) - i3-compatible Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Sway)
* [Wayland](https://wayland.freedesktop.org/) - Linux Display Server Protocol / [Tools](https://arewewaylandyet.com/)
* [river](https://github.com/riverwm/river/) - Wayland Compositors
* [LabWC](https://github.com/labwc/labwc) - Wayland Compositors
* [kiwmi](https://github.com/buffet/kiwmi) - Wayland Compositors
* [picom](https://github.com/yshui/picom) - Wayland Compositors
* [wayfire](https://github.com/WayfireWM/wayfire/) - Wayland Compositors
***
# ► Linux Apps # ► Linux Apps
* ⭐ **[Bottles](https://usebottles.com/)** - Manage Wine containers * ⭐ **[Bottles](https://usebottles.com/)** - Manage Wine containers
@ -146,39 +43,39 @@
* ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI * ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI
* ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** - Integrate AppImages to your App Launcher * ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** - Integrate AppImages to your App Launcher
* ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes * ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes
* ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers * ⭐ **[rofi](https://github.com/davatorium/rofi)** / [Emoji Selector](https://github.com/Mange/rofi-emoji) or [Ulauncher](https://ulauncher.io/) - App Launchers
* [wslu](https://wslutiliti.es/wslu) / [GitHub](https://github.com/wslutilities/wslu) - Utilities for Windows 10 Linux Subsystem * [wslu](https://github.com/wslutilities/wslu) - Utilities for Windows 10 Linux Subsystem
* [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux * [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux
* [innoextract](https://constexpr.org/innoextract/) - Windows Installer Unpacker * [DeskCut](https://github.com/NayamAmarshe/DeskCut) - Desktop Shortcuts App
* [nativefier_tauri](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps * [nativefier_tauri](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps
* [Autokey](https://autokey.github.io/index.html) / [GitHub](https://github.com/autokey/autokey) - Linux Automation Utility * [Autokey](https://github.com/autokey/autokey) - Linux Automation Utility
* [Touchégg](https://github.com/JoseExposito/touchegg) - Multi-Touch Gesture Recognizer * [Touchégg](https://github.com/JoseExposito/touchegg) - Multi-Touch Gesture Recognizer
* [Enlightment](https://www.enlightenment.org/), [worm](https://github.com/codic12/worm), [dwm](https://dwm.suckless.org/), [qtile](https://qtile.org/), [xmonad](https://xmonad.org/), [zentile](https://github.com/blrsn/zentile) or [bspwm](https://github.com/baskerville/bspwm) - Window Managers / [Sub](https://www.reddit.com/r/bspwm/) / [Binds](https://github.com/baskerville/sxhkd)
* [Material Shell](https://material-shell.com/) or [Forge](https://github.com/forge-ext/forge) - GNOME Tiling Extension * [Material Shell](https://material-shell.com/) or [Forge](https://github.com/forge-ext/forge) - GNOME Tiling Extension
* [Polonium](https://zeroxoneafour.github.io/polonium/) - KDE6 Tiling Manager Extension / [GitHub](https://github.com/zeroxoneafour/polonium) * [Bismuth](https://bismuth-forge.github.io/bismuth/) - KDE Tiling Extension / [GitHub](https://github.com/Bismuth-Forge/bismuth)
* [Bismuth](https://bismuth-forge.github.io/bismuth/) - KDE5 Tiling Extension / [GitHub](https://github.com/Bismuth-Forge/bismuth)
* [Ghostwriter](https://ghostwriter.kde.org/) or [Remarkable](https://remarkableapp.github.io/) - Markdown Editor * [Ghostwriter](https://ghostwriter.kde.org/) or [Remarkable](https://remarkableapp.github.io/) - Markdown Editor
* [Gedit](https://wiki.gnome.org/Apps/Gedit), [Geany](https://www.geany.org/), [Leafpad](http://tarot.freeshell.org/leafpad/), [NotepadNext](https://github.com/dail8859/NotepadNext), [taskbook](https://github.com/klaudiosinani/taskbook), [Notepadqq](https://github.com/notepadqq/notepadqq), [Featherpad](https://github.com/tsujan/FeatherPad) or [nb](https://xwmx.github.io/nb) / [GitHub](https://github.com/xwmx/nb) - Text Editor / Note Apps * [Gedit](https://wiki.gnome.org/Apps/Gedit), [Geany](https://www.geany.org/), [Leafpad](http://tarot.freeshell.org/leafpad/), [NotepadNext](https://github.com/dail8859/NotepadNext), [Featherpad](https://github.com/tsujan/FeatherPad), [Mousepad](https://github.com/codebrainz/mousepad) or [Notepadqq](https://notepadqq.com/) - Text Editor
* [TextPieces](https://gitlab.com/liferooter/textpieces) - Quick Text Transformations / [Github](https://github.com/liferooter/textpieces) * [TextPieces](https://github.com/liferooter/textpieces) - Quick Text Transformations
* [ly](https://github.com/fairyglade/ly) - Display Manager with Console UI * [ly](https://github.com/fairyglade/ly) - Display Manager with Console UI
* [GammaStep](https://gitlab.com/chinstrap/gammastep) - Adjust Screen Temperature * [GammaStep](https://gitlab.com/chinstrap/gammastep) - Adjust Screen Temperature
* [VirtScreen](https://github.com/kbumsik/VirtScreen) - Use Mobile Device as Monitor
* [Weylus](https://github.com/H-M-H/Weylus) - Use Mobile Device as Trackpad * [Weylus](https://github.com/H-M-H/Weylus) - Use Mobile Device as Trackpad
* [AudioSource](https://github.com/gdzx/audiosource) - Use Mobile Device as Microphone
* [Ollama](https://ollama.ai/) / [Discord](https://discord.gg/ollama) - Run LLMs * [Ollama](https://ollama.ai/) / [Discord](https://discord.gg/ollama) - Run LLMs
* [nyrna](https://nyrna.merritt.codes) - Suspend Apps / Games * [nyrna](https://github.com/Merrit/nyrna) - Suspend Apps / Games
* [Solaar](https://github.com/pwr-Solaar/Solaar) - Logitech Device Manager * [Solaar](https://github.com/pwr-Solaar/Solaar) - Logitech Device Manager
* [bluetuith](https://github.com/darkhz/bluetuith) - Bluetooth Manager * [bluetuith](https://github.com/darkhz/bluetuith) - Bluetooth Manager
* [QR Scan](https://github.com/sayanarijit/qrscan) - QR Code Scanner * [QR Scan](https://github.com/sayanarijit/qrscan) - QR Code Scanner
* [libimobiledevice](https://libimobiledevice.org) - Communicate with iOS Devices * [libimobiledevice](https://github.com/libimobiledevice/libimobiledevice) - Communicate with iOS Devices
* [Meteo](https://gitlab.com/bitseater/meteo) - Weather App * [Meteo](https://gitlab.com/bitseater/meteo) - Weather App
* [Client Evolution](https://help.gnome.org/users/evolution/stable/) - Calendar * [Client Evolution](https://help.gnome.org/users/evolution/stable/) - Calendar
* [todo](https://github.com/sioodmy/todo/) or [Planify](https://github.com/alainm23/planify) - To-Do Apps * [todo](https://github.com/sioodmy/todo/) - To-Do Apps
* [Timestrap](https://timestrap.bythewood.me/) or [Mindfulness at the Computer](https://fswb.codeberg.page/mindfulness-at-the-computer/) - Productivity Managers * [Timestrap](https://timestrap.bythewood.me/) or [Mindfulness at the Computer](https://mindfulness-at-the-computer.gitlab.io/) - Productivity Managers
* [SafeEyes](https://slgobinath.github.io/SafeEyes/) - Break Reminders * [SafeEyes](https://slgobinath.github.io/SafeEyes/) - Break Reminders
* [Dijo](https://github.com/NerdyPepper/dijo) - Activity Tracker * [Dijo](https://github.com/NerdyPepper/dijo) - Activity Tracker
* [libmui](https://github.com/buserror/libmui) - Mac Style Widget Library * [Manga Reader](https://flathub.org/apps/details/com.georgefb.mangareader) - Manga Reader
* [Railway](https://flathub.org/apps/de.schmidhuberj.DieBahn) - Travel Info Manager * [dunst](https://dunst-project.org/) - Customizable Notification Daemon / [GitHub](https://github.com/dunst-project/dunst)
* [Komikku](https://valos.gitlab.io/Komikku/), [Suwayomi-VaadinUI](https://github.com/Suwayomi/Tachidesk-VaadinUI) or [Manga Reader](https://flathub.org/apps/details/com.georgefb.mangareader) - Manga Readers * [A2LN](https://github.com/patri9ck/a2ln-app) - Display Android Notifications on Linux
* [Mako](https://github.com/emersion/mako), [dunst](https://dunst-project.org/) - Customizable Notification Daemon / [GitHub](https://github.com/dunst-project/dunst) * [Breathing](https://github.com/SeaDve/Breathing) - Relaxation / Breathing Tool
* [DidYouMean](https://github.com/hisbaan/didyoumean) - Grammar Check * [DidYouMean](https://github.com/hisbaan/didyoumean) - Grammar Check
* [KTouch](https://apps.kde.org/ktouch/), [typer](https://github.com/maaslalani/typer) or [Toipe](https://github.com/Samyak2/toipe) - Typing Practice * [KTouch](https://apps.kde.org/ktouch/), [typer](https://github.com/maaslalani/typer) or [Toipe](https://github.com/Samyak2/toipe) - Typing Practice
@ -186,31 +83,27 @@
## ▷ Software Sites ## ▷ Software Sites
* 🌐 **[ArchWiki App Sites](https://wiki.archlinux.org/title/List_of_applications)** - Linux Software / Site Index * 🌐 **[Awesome Linux](https://luong-komorebi.github.io/Awesome-Linux-Software/)** or [Awesome KDE](https://github.com/francoism90/awesome-kde) - FOSS Software / [Image](https://i.ibb.co/KyTkKHz/ae00a5177857.png)
* 🌐 **[Awesome Linux](https://luong-komorebi.github.io/Awesome-Linux-Software/)** - FOSS Software Index
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=5.0)** / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) * ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=5.0)** / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
* ⭐ **[RuTracker](https://rutracker.org/forum/viewforum.php?f=1381)** / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) * ⭐ **[RuTracker](https://rutracker.org/forum/viewforum.php?f=1381)** / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
* ⭐ **[Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b)** - Multi-Site Software Search * ⭐ **[Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b)** - Multi-Site Software Search
* [Awesome Linux Minimalism](https://github.com/knassar702/awesome-linux-minimalism) - FOSS Software
* [Awesome KDE](https://github.com/francoism90/awesome-kde) - FOSS Software
* [FOSS Torrents](https://fosstorrents.com/) - FOSS Software Torrents
* [Linux FOSS Image](https://i.ibb.co/KyTkKHz/ae00a5177857.png) - FOSS Software List
* [KDE Applications](https://apps.kde.org/) - KDE Apps
* [The Book of Secret Knowledge](https://github.com/trimstray/the-book-of-secret-knowledge) * [The Book of Secret Knowledge](https://github.com/trimstray/the-book-of-secret-knowledge)
* [Ultimate Cheatsheet](https://gist.github.com/bgoonz/be5c5be77169ef333b431bc37d331176) * [Ultimate Cheatsheet](https://gist.github.com/bgoonz/be5c5be77169ef333b431bc37d331176)
* [ArchWiki List of Applications](https://wiki.archlinux.org/title/list_of_applications) * [ArchWiki List of Applications](https://wiki.archlinux.org/title/list_of_applications)
* [LinuxAlt](https://www.linuxalt.com/) * [LinuxAlt](https://www.linuxalt.com/)
* [Plan9Port](https://9fans.github.io/plan9port/) / [GitHub](https://github.com/9fans/plan9port) * [Plan9Port](https://github.com/9fans/plan9port)
* [tlanyan](https://itlanyan.com/) * [tlanyan](https://itlanyan.com/)
* [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories * [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories
* [SnapCraft](https://snapcraft.io/store) - Snap Repository * [SnapCraft](https://snapcraft.io/store) - Snap Repository
* [GearLever](https://flathub.org/apps/it.mijorus.gearlever) or [AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher) - Appimage Managers * [GearLever](https://flathub.org/apps/it.mijorus.gearlever) or [AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher) - Appimage Managers
* [NixOS](https://nixos.org/) / [Manager](https://github.com/nix-community/home-manager), [AppImagePool](https://github.com/prateekmedia/appimagepool), [Zap](https://zap.srev.in) / [GitHub](https://github.com/srevinsaju/zap), [pkgx](https://pkgx.sh/), [AM](https://github.com/ivan-hc/AM) or [Homebrew](https://brew.sh/) - Package Managers * [NixOS](https://nixos.org/) / [Manager](https://github.com/nix-community/home-manager), [AppImagePool](https://github.com/prateekmedia/appimagepool), [Zap](https://github.com/srevinsaju/zap), [AM-Application-Manager](https://github.com/ivan-hc/AM-Application-Manager) or [Homebrew](https://brew.sh/) - Package Managers
* [cheat.sh](http://cheat.sh/) - App Repos * [cheat.sh](http://cheat.sh/) - App Repos
* [AppImageHub](https://www.appimagehub.com/), [AppImages](https://appimage.github.io/) or [Get AppImage](https://g.srev.in/get-appimage/) - Download Appimages * [AppImageHub](https://www.appimagehub.com/), [AppImages](https://appimage.github.io/) or [Get AppImage](https://g.srev.in/get-appimage/) - Download Appimages
* [yay](https://github.com/Jguer/yay), [paru](https://github.com/morganamilo/paru) or [aura](https://fosskers.github.io/aura/) - Arch User Repository Helpers * [yay](https://github.com/Jguer/yay), [paru](https://github.com/morganamilo/paru) or [aura](https://github.com/fosskers/aura) - Arch User Repository Helpers
* [Apps for GNOME](https://apps.gnome.org/) - GNOME Apps * [Apps for GNOME](https://apps.gnome.org/) - GNOME Apps
* [emplace](https://github.com/tversteeg/emplace) - System Package Sync * [KDE Applications](https://apps.kde.org/) - KDE Apps
* [IzzySoft Apt Repositories](https://apt.izzysoft.de/)
* [Repology](https://repology.org/) - Package Repository Tracker
* [Pling](https://www.pling.com/) / [2](https://www.linux-apps.com/) - Linux Apps and Themes * [Pling](https://www.pling.com/) / [2](https://www.linux-apps.com/) - Linux Apps and Themes
* [Pacstall](https://pacstall.dev/) - AUR-Inspired Package Manager for Ubuntu * [Pacstall](https://pacstall.dev/) - AUR-Inspired Package Manager for Ubuntu
@ -218,17 +111,15 @@
## ▷ Linux Video ## ▷ Linux Video
* ⭐ **[mpv](https://mpv.io/)** - Video Player * ⭐ **[mpv](https://mpv.io/)** - Video Player / [Frontend](https://github.com/celluloid-player/celluloid)
* ⭐ **[Haruna](https://apps.kde.org/haruna/)** or **[Celluloid](https://github.com/celluloid-player/celluloid)** - MPV Frontends
* ⭐ **[Kdenlive](https://apps.kde.org/kdenlive/)** or [Flowblade](https://jliljebl.github.io/flowblade/) - Video Editors
* [MultiPlex](https://github.com/pojntfx/multiplex) - Torrent Watch Party / Use VPN * [MultiPlex](https://github.com/pojntfx/multiplex) - Torrent Watch Party / Use VPN
* [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation * [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation
* [Spectacle](https://apps.kde.org/spectacle/) - Screen Recorder / Clipping * [Plumber](https://github.com/keshavbhatt/plumber) - Screen Recorder / Clipping
* [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor * [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling * [Flowblade](https://github.com/jliljebl/flowblade) - Video Editor
* [4KTUBE](https://github.com/rishabh3354/4KTUBE) or [Video Downloader](https://github.com/Unrud/video-downloader) - Video Downloaders
* [Peek](https://github.com/phw/peek) - Simple Video / GIF recorder * [Peek](https://github.com/phw/peek) - Simple Video / GIF recorder
* [Linux-Fake-Background-Webcam](https://github.com/fangfufu/Linux-Fake-Background-Webcam/) - Fake Webcam Background * [Linux-Fake-Background-Webcam](https://github.com/fangfufu/Linux-Fake-Background-Webcam/) - Fake Webcam Background
* [fmedia](https://github.com/stsaz/fmedia) - Media Player and Converter
* [ani-cli](https://github.com/pystardust/ani-cli) - Anime Streaming Terminal * [ani-cli](https://github.com/pystardust/ani-cli) - Anime Streaming Terminal
* [Trackma](https://github.com/z411/trackma/) - Anime Tracking App * [Trackma](https://github.com/z411/trackma/) - Anime Tracking App
* [LiveCaptions](https://github.com/abb128/LiveCaptions) - Real-time Captions * [LiveCaptions](https://github.com/abb128/LiveCaptions) - Real-time Captions
@ -237,48 +128,44 @@
## ▷ Linux Audio ## ▷ Linux Audio
* 🌐 **[Awesome Linux Audio](https://gitlab.com/nodiscc/awesome-linuxaudio)** - Live Audio Resources * ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)**, [spotify-adblock](https://github.com/abba23/spotify-adblock) or [SpotifyNoPremium](https://github.com/Daksh777/SpotifyNoPremium) - Spotify Adblockers
* ⭐ **[SpotX-Bash](https://github.com/SpotX-Official/SpotX-Bash)**, [spotify-adblock](https://github.com/abba23/spotify-adblock) or [SpotifyNoPremium](https://github.com/Daksh777/SpotifyNoPremium) - Spotify Adblockers
* ⭐ **[SongRec](https://github.com/marin-m/SongRec)** or [Mousai](https://github.com/SeaDve/Mousai) - Song Identifiers * ⭐ **[SongRec](https://github.com/marin-m/SongRec)** or [Mousai](https://github.com/SeaDve/Mousai) - Song Identifiers
* [Tidal Hi-Fi](https://github.com/Mastermindzh/tidal-hifi) - Hi-Fi Tidal for Linux * [Tidal Hi-Fi](https://github.com/Mastermindzh/tidal-hifi) - Hi-Fi Tidal for Linux
* [cmus](https://cmus.github.io/) - Audio Player * [cmus](https://cmus.github.io/) - Audio Player
* [Tauon Music Box](https://tauonmusicbox.rocks/) - Audio Player * [Tauon Music Box](https://tauonmusicbox.rocks/) - Audio Player
* [Lollypop](https://wiki.gnome.org/Apps/Lollypop), [2](https://gitlab.gnome.org/World/lollypop) - Audio Player * [Lollypop](https://wiki.gnome.org/Apps/Lollypop), [2](https://gitlab.gnome.org/World/lollypop) - Audio Player
* [Audacious](https://audacious-media-player.org/) - Audio Player * [Audacious](https://audacious-media-player.org/) - Audio Player
* [Rhythmbox](https://wiki.gnome.org/Apps/Rhythmbox) - Audio Player * [Rhythmbox](https://wiki.gnome.org/Apps/Rhythmbox) - Audio Player
* [Amberol](https://gitlab.gnome.org/World/amberol) - Audio Player * [Amberol](https://gitlab.gnome.org/World/amberol) - Audio Player
* [Subsonic](https://github.com/twostraws/Subsonic) - Audio Player * [Subsonic](https://github.com/twostraws/Subsonic) - Audio Player
* [Fooyin](https://github.com/ludouzi/fooyin) - Audio Player
* [g4music](https://gitlab.gnome.org/neithern/g4music) - Audio Player * [g4music](https://gitlab.gnome.org/neithern/g4music) - Audio Player
* [dopamine](https://github.com/digimezzo/dopamine) - Audio Player * [dopamine](https://github.com/digimezzo/dopamine) - Audio Player
* [AudioTube](https://invent.kde.org/multimedia/audiotube) - Audio Player * [AudioTube](https://invent.kde.org/multimedia/audiotube) - Audio Player
* [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Music Client * [Monophony](https://gitlab.com/Vistaus/monophony) - YouTube Music Client
* [ytermusic](https://github.com/ccgauche/ytermusic/) - YouTube Music Downloader * [Deezer Linux](https://github.com/aunetx/deezer-linux) - Deezer Client
* [Deezer Linux](https://github.com/aunetx/deezer-linux) or [DZR](https://github.com/yne/dzr) - Deezer Clients
* [Myuzi](https://gitlab.com/albanobattistella/myuzi) - Music Streaming App * [Myuzi](https://gitlab.com/albanobattistella/myuzi) - Music Streaming App
* [MusicPod](https://github.com/ubuntu-flutter-community/musicpod) - Podcast / Radio Player
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager * [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
* [Pipewire](https://wiki.archlinux.org/title/PipeWire#Noise_suppression_for_voice) / [Plugins](https://github.com/wwmm/easyeffects) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software * [Pipewire](https://wiki.archlinux.org/title/PipeWire#Noise_suppression_for_voice) / [Plugins](https://github.com/wwmm/easyeffects) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software
* [Qtractor](https://qtractor.org/) - Audio Editor * [Qtractor](https://qtractor.org/) - Audio Editor
* [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins * [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins
* [Ensembles](https://github.com/ensemblesaw/ensembles-app) - Musical Performance Arranger * [Ensembles](https://github.com/ensemblesaw/ensembles-app) - Musical Performance Arranger
* [Viper4Linux](https://github.com/Audio4Linux/Viper4Linux) / [GUI](https://github.com/Audio4Linux/Viper4Linux-GUI) or [JDSP4Linux](https://github.com/Audio4Linux/JDSP4Linux) - Audio Processors * [Viper4Linux](https://github.com/Audio4Linux/Viper4Linux) / [GUI](https://github.com/Audio4Linux/Viper4Linux-GUI) or [JDSP4Linux](https://github.com/Audio4Linux/JDSP4Linux) - Audio Processors
* [Parlatype](https://www.parlatype.org/) - Audio Transcription
* [cava](https://github.com/karlstav/cava) - Console Audio Visualizer * [cava](https://github.com/karlstav/cava) - Console Audio Visualizer
* [Sunamu](https://github.com/NyaomiDEV/Sunamu) - Now Playing Songs Display
* [CasterSoundboard](https://github.com/JupiterBroadcasting/CasterSoundboard) - Soundboard * [CasterSoundboard](https://github.com/JupiterBroadcasting/CasterSoundboard) - Soundboard
*** ***
## ▷ Linux Images ## ▷ Linux Images
* ⭐ **[Flameshot](https://flameshot.org/)** or [Scrot](https://github.com/resurrecting-open-source-projects/scrot) - Screenshot Tools * ⭐ **[Flameshot](https://flameshot.org/)** - Screenshot Tool
* ⭐ **[TextSnatcher](https://textsnatcher.rf.gd/)** or [Frog](https://getfrog.app/) / [GitHub](https://github.com/TenderOwl/Frog/) - Image to Text * ⭐ **[TextSnatcher](https://github.com/RajSolai/TextSnatcher)** or [Frog](https://tenderowl.com/work/frog/) - Image to Text
* [photoshopCClinux](https://github.com/Gictorbit/photoshopCClinux) - Linux Photoshop Installer * [photoshopCClinux](https://github.com/Gictorbit/photoshopCClinux) - Linux Photoshop Installer
* [V4L2Loopback](https://github.com/umlaeute/v4l2loopback) - Create Virtual Cameras * [V4L2Loopback](https://github.com/umlaeute/v4l2loopback) - Create Virtual Cameras
* [Drawing](https://maoschanz.github.io/drawing/) - Drawing App * [Drawing](https://github.com/maoschanz/drawing) - Drawing App
* [Feh](https://feh.finalrewind.org/) or [NSXIV](https://github.com/nsxiv/nsxiv) - Image Viewer * [Feh](https://feh.finalrewind.org/) or [NSXIV](https://github.com/nsxiv/nsxiv) - Image Viewer
* [lsix](https://github.com/hackerb9/lsix) - View Images in Terminal * [lsix](https://github.com/hackerb9/lsix) - View Images in Terminal
* [Upscaler](https://gitlab.gnome.org/World/Upscaler) - Image Upscaler * [Upscaler](https://gitlab.com/TheEvilSkeleton/Upscaler) - Image Upscaler
* [Trimage](https://trimage.org/) or [Curtail](https://github.com/Huluti/Curtail) - Image Compressor * [Trimage](https://trimage.org/) or [Curtail](https://github.com/Huluti/Curtail) - Image Compressor
* [MkPosters](https://github.com/patrick-kidger/mkposters) - Turn Markdown Files into Posters * [MkPosters](https://github.com/patrick-kidger/mkposters) - Turn Markdown Files into Posters
* [Rapid](https://damonlynch.net/rapid/) - Quick Linux Photo Importer * [Rapid](https://damonlynch.net/rapid/) - Quick Linux Photo Importer
@ -289,45 +176,40 @@
* 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games * 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games
Linux Gaming Guide Linux Gaming Guide
* 🌐 **[Are We Anti-Cheat Yet?](https://areweanticheatyet.com/)** - Anti-Cheat Game Database / GNU/Linux & Wine/Proton Compatibility * ⭐ **[Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** / [2](https://web.archive.org/web/20221022121735/https://www.reddit.com/r/Piracy/comments/ndrtlf/comment/gyccwhk/?context=3) / [3](https://www.reddit.com/r/LinuxCrackSupport/wiki/index) - Linux Gaming Guides
* ⭐ **[Comprehensive Gaming Guide](https://linux-gaming.kwindu.eu/index.php?title=Main_Page)** / [2](https://github.com/rimsiw/linux-gaming-omg) / [3](https://web.archive.org/web/20221022121735/https://www.reddit.com/r/Piracy/comments/ndrtlf/comment/gyccwhk/?context=3) / [4](https://www.reddit.com/r/LinuxCrackSupport/wiki/index) - Linux Gaming Guides * ⭐ **[protondb](https://www.protondb.com/)** - Proton Compatibility Descriptions
* ⭐ **[protondb](https://www.protondb.com/)**- Proton Compatibility Descriptions / [Steam Extension](https://github.com/Trsnaqe/protondb-community-extension)
* ⭐ **[Lutris](https://lutris.net/)** - Games Manager * ⭐ **[Lutris](https://lutris.net/)** - Games Manager
* ⭐ **[proton-ge-custom](https://github.com/GloriousEggroll/proton-ge-custom)** - Play Windows Games on Linux / [Guide](https://www.reddit.com/r/LinuxCrackSupport/comments/yqfirv/how_to_install_fitgirl_or_dodi_windows_repacks_in/) * ⭐ **[proton-ge-custom](https://github.com/GloriousEggroll/proton-ge-custom)** - Play Windows Games on Linux / [Guide](https://www.reddit.com/r/LinuxCrackSupport/comments/yqfirv/how_to_install_fitgirl_or_dodi_windows_repacks_in/)
* ⭐ **[ProtonUp-QT](https://github.com/DavidoTek/ProtonUp-Qt/)** - Install / Manage Proton-GE for Steam and Wine-GE for Lutris * ⭐ **[ProtonUp-QT](https://github.com/DavidoTek/ProtonUp-Qt/)** - Install / Manage Proton-GE for Steam and Wine-GE for Lutris
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) * ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games * ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games
* ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Support](https://gitlab.com/jc141x/portal) * ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Support](https://gitlab.com/jc141x/portal)
* [GameHub](https://tkashkin.github.io/projects/gamehub/), [Gnome Games](https://wiki.gnome.org/Apps/Games), [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) or [Steal](https://github.com/AbdelrhmanNile/steal) - Game Libraries / Launchers * [GameHub](https://tkashkin.github.io/projects/gamehub/), [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) or [Steal](https://github.com/AbdelrhmanNile/steal) - Game Managers
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) * [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
* [winesapOS](https://github.com/LukeShortCloud/winesapOS) - Play Games on Storage Devices * [winesapOS](https://github.com/LukeShortCloud/winesapOS) - Play Games on Storage Devices
* [Gamebuntu](https://discourse.ubuntu.com/t/gamebuntu/25544/13) - Setup Gaming Environment on Ubuntu / [GitLab](https://gitlab.com/rswat09/gamebuntu) * [Gamebuntu](https://discourse.ubuntu.com/t/gamebuntu/25544/13) - Setup Gaming Environment on Ubuntu / [GitLab](https://gitlab.com/rswat09/gamebuntu)
* [RetroPlus](https://github.com/Vysp3r/RetroPlus) - ROM Downloader
* [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games * [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games
* [steam-tui](https://github.com/dmadisetti/steam-tui) - Rust TUI for Steam * [steam-tui](https://github.com/dmadisetti/steam-tui) - Rust TUI for Steam
* [steam-cli](https://github.com/berenm/steam-cli) - CLI for Steam * [steam-cli](https://github.com/berenm/steam-cli) - CLI for Steam
* [Luxtorpeda](https://github.com/luxtorpeda-dev/luxtorpeda) or [Boxtron](https://github.com/dreamer/boxtron) - Run Steam Games on Linux * [Luxtorpeda](https://github.com/luxtorpeda-dev/luxtorpeda) or [Boxtron](https://github.com/dreamer/boxtron) - Run Steam Games on Linux
* [RetroDECK](https://retrodeck.net/) - Emulator for Steam Deck
* [CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities) - Steam Deck Utilities
* [GameScope](https://github.com/ValveSoftware/gamescope) - Steam Session Compositing Window Manager * [GameScope](https://github.com/ValveSoftware/gamescope) - Steam Session Compositing Window Manager
* [SamRewritten](https://github.com/PaulCombal/SamRewritten) - Steam Achievement Manager * [SamRewritten](https://github.com/PaulCombal/SamRewritten) - Steam Achievement Manager
* [Steam for Linux](https://github.com/ValveSoftware/steam-for-linux) - Steam Linux Beta Issue Tracker * [Steam for Linux](https://github.com/ValveSoftware/steam-for-linux) - Steam Linux Beta Issue Tracker
* [HeroicGamesLauncher](https://heroicgameslauncher.com/) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) - Epic Games Launcher * [HeroicGamesLauncher](https://heroicgameslauncher.com/) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) - Epic Games Launcher
* [Minigalaxy](https://sharkwouter.github.io/minigalaxy/) - GOG Client * [Minigalaxy](https://sharkwouter.github.io/minigalaxy/) - GOG Client
* [CWordle](https://github.com/velorek1/cwordle) - Wordle in Unix Terminal * [CWordle](https://github.com/velorek1/cwordle) - Wordle in Unix Terminal
* [NVBurner](https://github.com/iloveichigo/NVBurner) or [CoreCTRL](https://gitlab.com/corectrl/corectrl) - Overclocking Tool * [NVBurner](https://github.com/iloveichigo/NVBurner) or [CoreCTRL](https://gitlab.com/corectrl/corectrl) - Overclocking Tool
* [dxvk](https://github.com/doitsujin/dxvk) - D3D9, D3D10 and D3D11 for Linux / Wine * [dxvk](https://github.com/doitsujin/dxvk) - D3D9, D3D10 and D3D11 for Linux / Wine
* [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer * [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer
* [Liquorix](https://liquorix.net/), [Xanmod](https://xanmod.org/) or [Frogging](https://github.com/Frogging-Family/linux-tkg) - Linux Gaming Kernels * [Liquorix](https://liquorix.net/), [Xanmod](https://xanmod.org/) or [Frogging](https://github.com/Frogging-Family/linux-tkg) - Linux Gaming Kernels
* [Gamemode](https://github.com/FeralInteractive/gamemode) - Linux System Optimizer * [Gamemode](https://github.com/FeralInteractive/gamemode) - Linux System Optimizer
* [LibreGaming](https://github.com/Ahmed-Al-Balochi/LibreGaming) - Linux Game Package Downloader * [LibreGaming](https://github.com/Ahmed-Al-Balochi/LibreGaming) - Linux Game Package Downloader
* [Prism43](https://github.com/DomHeadroom/Prism43) - Prism Launcher / Unlocker
* [mcpelauncher](https://github.com/minecraft-linux/mcpelauncher-manifest) - Minecraft Android Bedrock Edition Launcher for Linux * [mcpelauncher](https://github.com/minecraft-linux/mcpelauncher-manifest) - Minecraft Android Bedrock Edition Launcher for Linux
* [VinegarHQ](https://vinegarhq.org/) - Bootstrapper for Roblox / [Studio Only](https://vinegarhq.org/Home/rol_faq.html) * [VinegarHQ](https://vinegarhq.org/) - Bootstrapper for Roblox Player / Studio
* [Anime Game Launcher](https://github.com/an-anime-team/an-anime-game-launcher) / [Discord](https://discord.gg/ck37X6UWBp) - Genshin Impact Launcher * [Bloxstrap](https://discord.com/invite/nKjV3mGq6R) - Roblox Launcher
* [Anime Game Launcher](https://github.com/an-anime-team/an-anime-game-launcher) - Genshin Impact Launcher
* [among-sus](https://git.sr.ht/~martijnbraam/among-sus) - Play Among Us in your Terminal (Recreation) * [among-sus](https://git.sr.ht/~martijnbraam/among-sus) - Play Among Us in your Terminal (Recreation)
* [Gameboy.live](https://github.com/HFO4/gameboy.live) - Terminal Game Boy Emulator * [Gameboy.live](https://github.com/HFO4/gameboy.live) - Terminal Game Boy Emulator
* [QuickPassthrough](https://github.com/HikariKnight/quickpassthrough) - Simplified Qemu GPU Passthrough
* [Gambit](https://github.com/maaslalani/gambit) - Terminal Chess * [Gambit](https://github.com/maaslalani/gambit) - Terminal Chess
* [Sssnake](https://github.com/AngelJumbo/sssnake) - Terminal Snake * [Sssnake](https://github.com/AngelJumbo/sssnake) - Terminal Snake
@ -337,105 +219,150 @@ Linux Gaming Guide
## ▷ Adblock / Privacy ## ▷ Adblock / Privacy
* ↪️ **[Linux 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)** * ↪️ **[Linux 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_two-factor_authentication)**
* ⭐ **[Arch Security Wiki](https://wiki.archlinux.org/title/Security)**, [Linux Hardening](https://vez.mrsk.me/linux-hardening.html) / [2](https://madaidans-insecurities.github.io/guides/linux-hardening.html) or [How to Secure a Linux Server](https://github.com/imthenachoman/How-To-Secure-A-Linux-Server) - Linux Security Guides * ⭐ **[Arch Security Wiki](https://wiki.archlinux.org/title/Security)**, [Linux Hardening](https://vez.mrsk.me/linux-hardening.html) / [2](https://madaidans-insecurities.github.io/guides/linux-hardening.html) or [How to Secure a Linux Server](https://github.com/imthenachoman/How-To-Secure-A-Linux-Server) - Linux Security Guides
* ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI circumvention * ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI circumvention
* ⭐ **[CryptSetup](https://gitlab.com/cryptsetup/cryptsetup)** or [Tomb](https://dyne.org/software/tomb/) - File Encryption * ⭐ **[CryptSetup](https://gitlab.com/cryptsetup/cryptsetup)** or [Tomb](https://dyne.org/software/tomb//) - File Encryption
* [Securely Wipe Disk](https://wiki.archlinux.org/title/Securely_wipe_disk) or [SSD Memory Cell Clearing](https://wiki.archlinux.org/title/Solid_state_drive/Memory_cell_clearing) - Linux Disk Wipe Guides
* [JShielder](https://github.com/Jsitech/JShielder) - Hardening Script for Linux Servers * [JShielder](https://github.com/Jsitech/JShielder) - Hardening Script for Linux Servers
* [SShuttle](https://github.com/sshuttle/sshuttle) - Proxy * [SShuttle](https://github.com/sshuttle/sshuttle) - Proxy
* [Lynis](https://github.com/CISOfy/lynis) - Linux Security Auditing Tool * [Lynis](https://github.com/CISOfy/lynis) - Linux Security Auditing Tool
* [Lockigest](https://elma.dev/work/lockigest/) / [GitHub](https://github.com/elmsec/lockigest) - Screen Locker * [Lockigest](https://github.com/elmsec/lockigest) - Screen Locker
* [Mistborn](https://gitlab.com/cyber5k/mistborn) - Manage Cloud Security Apps * [Mistborn](https://gitlab.com/cyber5k/mistborn) - Manage Cloud Security Apps
* [OpenSnitch](https://github.com/evilsocket/opensnitch) or [gufw](https://github.com/costales/gufw) - Linux Firewalls * [OpenSnitch](https://github.com/evilsocket/opensnitch) or [gufw](https://github.com/costales/gufw) - Linux Firewalls
* [Tracee](https://aquasecurity.github.io/tracee/latest) - Runtime Security and Forensics * [Tracee](https://github.com/aquasecurity/tracee) - Runtime Security and Forensics
* [Mofolinux](https://mofolinux.com/), [Tails](https://tails.boum.org/) or [Kodachi](https://www.digi77.com/linux-kodachi/) - Privacy-Based Operating System * [Mofolinux](https://mofolinux.com/), [Tails](https://tails.boum.org/) or [Kodachi](https://www.digi77.com/linux-kodachi/) - Privacy-Based Operating System
* [OpenVPN Wrapper](https://github.com/slingamn/namespaced-openvpn) - VPN Tunnel * [OpenVPN Wrapper](https://github.com/slingamn/namespaced-openvpn) - VPN Tunnel
* [Openconnect VPN Server](https://ocserv.gitlab.io/www/index.html) - Linux SSL VPN Server * [Openconnect VPN Server](https://ocserv.gitlab.io/www/index.html) - Linux SSL VPN Server
* [DSVPN](https://github.com/jedisct1/dsvpn) - Self-Hosted VPN * [arch-delugevpn](https://github.com/binhex/arch-delugevpn) - Docker with Torrent client and VPN on Arch Linux base
* [wireguird](https://github.com/UnnoTed/wireguird) - Wireguard GUI * [wireguird](https://github.com/UnnoTed/wireguird) - Wireguard GUI
* [Netbird](https://github.com/netbirdio/netbird) or [vnStat](https://github.com/vergoh/vnstat) - Network Monitors * [vnStat](https://github.com/vergoh/vnstat) - Network Monitor
* [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication * [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication
* [ShuffleStacks](https://shufflecake.net/) - Create Hidden Volumes * [ShuffleStacks](https://shufflecake.net/) - Create Hidden Volumes
* [Collision](https://flathub.org/apps/details/dev.geopjr.Collision) - Check File Hashes * [Collision](https://flathub.org/apps/details/dev.geopjr.Collision) - Check File Hashes
* [WhoAmI Project](https://owerdogan.github.io/whoami-project) / [GitHub](https://github.com/owerdogan/whoami-project) - Privacy / Anonymity Tool * [WhoAmI Project](https://github.com/owerdogan/whoami-project) - Privacy / Anonymity Tool
* [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS Partition * [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS Partition
* [DNSWarden](https://dnswarden.com/) / [GitHub](https://github.com/bhanupratapys/dnswarden) - DNS Adblocking * [BhanUpratpys](https://github.com/bhanupratapys/dnswarden) - DNS Adblocking
* [Firejail](https://firejail.wordpress.com/) or [Bubblewrap](https://github.com/containers/bubblewrap) - Sandboxing tools * [Firejail](https://firejail.wordpress.com/) or [Bubblewrap](https://github.com/containers/bubblewrap) - Sandboxing tools
* [GoogleTeller](https://github.com/berthubert/googerteller) - Google Tracking Notifications * [GoogleTeller](https://github.com/berthubert/googerteller) - Google Tracking Notifications
*** ***
## ▷ Linux System
* 🌐 **[Awesome Gnome](https://github.com/Kazhnuz/awesome-gnome)** - GNOME Resources
* ⭐ **[Linux.Chat](https://discord.gg/linuxchat)**, [Linux x Technology](https://linuxdiscord.com/), [Ezlinux](https://ezlinux.net/) or [Discord-Linux](https://discord.gg/discord-linux) - Linux Discussion / Forums
* ⭐ **[Archwiki](https://wiki.archlinux.org/)** - Arch Linux Wiki / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
* ⭐ **[Ventoy](https://github.com/ventoy/Ventoy)** - Create Bootable USB Linux Drives
* ⭐ **[Btop](https://github.com/aristocratos/btop)**, **[pfetch](https://github.com/dylanaraps/pfetch)**, **[MangoHud](https://github.com/flightlessmango/MangoHud)**, [CPU-X](https://github.com/TheTumultuousUnicornOfDarkness/CPU-X), [vtop](https://github.com/MrRio/vtop), [neofetch](https://github.com/dylanaraps/neofetch) / [Themes](https://github.com/chick2d/neofetch-themes) or [LM Sensors](https://github.com/lm-sensors/lm-sensors) - System Info / Resource Monitors
* [SysmonForLinux](https://github.com/Sysinternals/SysmonForLinux) - Monitor / Log System Activity
* [Nanobench](https://github.com/andreas-abel/nanoBench) - CPU Microbenchmark / [Documentation](https://nanobench.ankerl.com/)
* [ScanMem](https://github.com/scanmem/scanmem) - Memory Scanner / Debugger
* [Linux-dash](https://github.com/tariqbuilds/linux-dash) - Web-based System Dashboard
* [pacwall](https://github.com/Kharacternyk/pacwall) - Live Wallpaper Dependency Graph / Package Status
* [keyd](https://github.com/rvaiya/keyd) or [xremap](https://github.com/k0kubun/xremap) - Keyboard Remapping
* [auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) - CPU Speed & Power Optimization Automation
* [node-startup](https://github.com/ralyodio/node-startup) - Startup Script
* [die.net](https://linux.die.net/) - Linux Documentation
* [HowtoForge](https://www.howtoforge.com/), [Sindresorhus Guides](https://github.com/sindresorhus/guides), [Erik Dubois](https://www.youtube.com/c/ErikDubois), [LinuxJourney](https://linuxjourney.com/), [Mayfrost Guides](https://github.com/mayfrost/guides) or [Mental Outlaw](https://www.youtube.com/channel/UC7YOGHUfC1Tb6E4pudI9STA) - Linux Guides / Tutorials
* [howtodebuntu](https://github.com/themagicalmammal/howtolinux) - Tweaks for Debian Based Distros
* [winapps](https://github.com/Fmstrat/winapps) - Run Windows Apps on Linux
* [WoeUSB](https://github.com/WoeUSB/WoeUSB) or [Windows2USB](https://github.com/ValdikSS/windows2usb) - Create Bootable USB Windows Drives
* [NetBoot](https://netboot.xyz/) - Distro Installer
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
* [zfsBootMenu](https://github.com/zbm-dev/zfsbootmenu) - ZFS Bootloader
* [Linux Heads](https://osresearch.net/) - Minimal CoreBoot / [GitHub](https://github.com/osresearch/heads)
* [GParted](https://gparted.org/) - Partition Manager
* [ArchTitus](https://github.com/ChrisTitusTech/ArchTitus), [archinstall](https://github.com/archlinux/archinstall) or [Anarchy](https://anarchyinstaller.gitlab.io/) - Arch Linux Installer
* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME
* [OneClickDesktop](https://github.com/Har-Kuun/OneClickDesktop) - One-Click Remote Desktop
* [InstantBox](https://github.com/instantbox/instantbox) - Temporary Linux Systems
* [CoreELEC](https://github.com/CoreELEC/CoreELEC) or [LibreELEC](https://libreelec.tv/) - Kodi-Based Operating System
* [WSL](https://learn.microsoft.com/en-us/windows/wsl/) or [Tunic](https://github.com/mikeslattery/tunic) - Run Linux on Windows / [Resources](https://github.com/sirredbeard/Awesome-WSL) / [Startup Launcher](https://github.com/nullpo-head/wsl-distrod) / [Wayland / X Server](https://github.com/microsoft/wslg)
* [DistroSea](https://distrosea.com/) or [JSLinux](https://bellard.org/jslinux/) - Linux Browser Emulators
* [Vivek9Patel](https://vivek9patel.github.io/) - Run Ubuntu on Browser / [GitHub](https://github.com/vivek9patel/vivek9patel.github.io)
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
* [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Kernel-Based Virtual Machine
* [Ubuntu VNC](https://web.archive.org/web/20230729065457/https://cdn.discordapp.com/attachments/787671932957884416/787672107848302612/guicolab.ipynb) - Free Ubuntu VNC
* [OSX-KVM](https://github.com/kholia/OSX-KVM), [OneClick-macOS-Simple-KVM](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) or [macOS-Simple-KVM](https://github.com/foxlet/macOS-Simple-KVM) - macOS Virtual
* [kmon](https://kmon.cli.rs/) - Kernel Manager and Activity Monitor
* [Kernel Map](https://makelinux.github.io/kernel/map/) - Interactive Linux Kernel Map
* [UbuntuCleaner](https://github.com/gerardpuig/ubuntu-cleaner) - Easily clean Ubuntu(-based) Systems
* [TimeShift](https://github.com/linuxmint/timeshift) - System Restore / Backup
* [SystemRescue](https://www.system-rescue.org/) or [Super Grub2 Disk](https://www.supergrubdisk.org/super-grub2-disk/) - Bootable System Rescue Toolkits
* [Boot-Repair](https://help.ubuntu.com/community/Boot-Repair) - Grub Repair Guide for Linux Systems
* [sbupdate](https://github.com/andreyv/sbupdate) - Generate & Sign kernel images for UEFI Secure Boot Arch Linux
* [coreboot](https://coreboot.org/) or [Libreboot](https://libreboot.org/) - Replace Proprietary BIOS/UEFI Firmware
* [Hardcode Tray](https://github.com/bilelmoussaoui/Hardcode-Tray) - Hardcoded Tray Icon Fix
* [open-gpu-kernel-modules](https://github.com/NVIDIA/open-gpu-kernel-modules) - NVIDIA Linux Open GPU Kernel Module
* [nosystemd](https://nosystemd.org/) - Alternatives to Systemd
***
## ▷ Linux Internet ## ▷ Linux Internet
* ⭐ **[Soulseek](https://www.slsknet.org/SoulseekQt/Linux/SoulseekQt-2018-1-30-64bit-appimage.tgz)** - File Sharing App * ⭐ **[Soulseek](https://www.slsknet.org/SoulseekQt/Linux/SoulseekQt-2018-1-30-64bit-appimage.tgz)** - File Sharing App
* ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients * ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients
* [RuTorrent](https://github.com/Novik/ruTorrent) or [flood](https://flood.js.org/) - RTorrent Web Frontend / [Themes](https://github.com/artyuum/3rd-party-ruTorrent-Themes) * [RuTorrent](https://github.com/Novik/ruTorrent) or [flood](https://flood.js.org/) - RTorrent Web Frontend / [Themes](https://github.com/artyuum/3rd-party-ruTorrent-Themes)
* rTorrent Tools - [Extended](http://rtorrent-ps.readthedocs.io/) / [Tools](https://pyrocore.readthedocs.org/) / [GitHub](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html) * rTorrent Tools - [Extended](https://github.com/pyroscope/rtorrent-ps) / [Tools](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html)
* [BTFS](https://github.com/johang/btfs) - Bittorrent Filesystem * [Luakit](https://luakit.github.io/) - Lightweight Linux Browser
* [arch-delugevpn](https://github.com/binhex/arch-delugevpn) - Docker with Torrent client and VPN on Arch Linux base
* [Luakit](https://luakit.github.io/) - Lightweight Linux Browser
* [browsh](https://www.brow.sh/) - Text Based Browser * [browsh](https://www.brow.sh/) - Text Based Browser
* [ElectronMail](https://github.com/vladimiry/ElectronMail) or [dodo](https://github.com/akissinger/dodo) - Email Clients * [ElectronMail](https://github.com/vladimiry/ElectronMail) or [dodo](https://github.com/akissinger/dodo) - Email Clients
* [Akregator](https://apps.kde.org/akregator/) - RSS Feed Reader * [Akregator](https://apps.kde.org/akregator/) - RSS Feed Reader
* [pass](https://www.passwordstore.org/) - Unix Password Manager * [pass](https://www.passwordstore.org/) - Unix Password Manager
* [Seahorse](https://gitlab.gnome.org/GNOME/seahorse) or [GnomeKeyring](https://wiki.gnome.org/Projects/GnomeKeyring) - GNOME Password Manager * [Seahorse](https://gitlab.gnome.org/GNOME/seahorse) or [GnomeKeyring](https://wiki.gnome.org/Projects/GnomeKeyring) - GNOME Password Manager
* [gopass](https://www.gopass.pw/) - CLI Password Manager * [gopass](https://www.gopass.pw/) - CLI Password Manager
* [KGet](https://apps.kde.org/kget/), [Varia](https://github.com/giantpinkrobots/varia) or [GabutDM](https://github.com/gabutakut/gabutdm) - Download Managers * [KGet](https://apps.kde.org/kget/) or [GabutDM](https://github.com/gabutakut/gabutdm) - Download Manager
* [easy-google-drive-downloader](https://github.com/mzramna/easy-google-drive-downloader) or [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader * [easy-google-drive-downloader](https://github.com/mzramna/easy-google-drive-downloader) or [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader
* [google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) - Mount GDrive * [google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) - Mount GDrive
* [maestral](https://maestral.app/) - Dropbox Client * [maestral](https://maestral.app/) - Dropbox Client
* [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator * [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator
* [Nala](https://gitlab.com/volian/nala) - APT Frontend * [Nala](https://gitlab.com/volian/nala) - APT Frontend
* [aMule](https://www.amule.org/) - eMule-like P2P Client * [aMule](https://www.amule.org/) - eMule-like P2P Client
* [Linux Router](https://github.com/garywill/linux-router) - Set Linux as Router
* [EasyPanel](https://easypanel.io/) - Server Control Panel * [EasyPanel](https://easypanel.io/) - Server Control Panel
* [Wayland](https://wayland.freedesktop.org/) - Linux Display Server Protocol / [Tools](https://arewewaylandyet.com/)
* [river](https://github.com/riverwm/river/), [LabWC](https://github.com/labwc/labwc), [Hyprland](https://hyprland.org/), [kiwmi](https://github.com/buffet/kiwmi), [picom](https://github.com/yshui/picom), [wayfire](https://github.com/WayfireWM/wayfire/) or [sway](https://swaywm.org/) - Wayland Compositors
* [Compix](https://github.com/xeome/compix) - Xorg Compositor
* [Free Cloud Linux Server](https://rentry.co/FMHYBase64#free-cloud-linux-server) - Free Cloud Server Guide * [Free Cloud Linux Server](https://rentry.co/FMHYBase64#free-cloud-linux-server) - Free Cloud Server Guide
* [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script * [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script
* [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool * [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool
* [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner * [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner
* [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI * [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI
* [Knapsu](https://knapsu.eu/plex/) or [Cloudbox](https://cloudbox.works/) - Media Server * [Knapsu](https://knapsu.eu/plex/) or [Cloudbox](https://cloudbox.works/) - Media Server
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) or [DockSTARTer](https://github.com/GhostWriters/DockSTARTer) - Automated Docker Media Server Setups * [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) - Automated Media Server Setup
* [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy * [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy
* [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container * [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container
* [swizzin](https://swizzin.ltd/) - Seedbox for Ubuntu / Debian * [swizzin](https://swizzin.ltd/) - Seedbox for Ubuntu / Debian
* [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian * [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian
* [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox * [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox
* [GNU Social](https://gnusocial.network/) - Self-Hosted Social Networking Platform * [GNU Social](https://gnusocial.network/) - Self-Hosted Social Networking Platform
* [Teams for Linux](https://github.com/IsmaelMartinez/teams-for-linux) - Collaboration Platform
* [Hexchat](https://hexchat.github.io/), [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients * [Hexchat](https://hexchat.github.io/), [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients
* [Dino](https://dino.im/) - XMPP Client * [Dino](https://dino.im/) - XMPP Client
* [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client * [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client
* [ZapZap](https://rtosta.com/zapzap-web/) - WhatsApp Client * [YouTube-Viewer](https://github.com/trizen/youtube-viewer) - YouTube Linux Client / [Fork](https://github.com/trizen/pipe-viewer)
* [YouTube-Viewer](https://github.com/trizen/youtube-viewer), [Pipe Viewer](https://github.com/trizen/pipe-viewer) or [Pipeline](https://gitlab.com/schmiddi-on-mobile/pipeline) - YouTube Clients
* [Giara](https://aur.archlinux.org/packages/giara/) - Reddit Client * [Giara](https://aur.archlinux.org/packages/giara/) - Reddit Client
* [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172) * [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172)
* [Nextcord](https://docs.nextcord.dev/) - Discord API Wrapper * [Nextcord](https://github.com/nextcord/nextcord) - Discord API Wrapper
* [Discover](https://github.com/trigg/Discover) - Discord Overlay * [Discover](https://github.com/trigg/Discover) - Discord Overlay
* [dvm](https://github.com/diced/dvm) - Discord Version Manager * [dvm](https://github.com/diced/dvm) - Discord Version Manager
* [Rofimoji](https://github.com/fdw/rofimoji), [Shmoji](https://github.com/biox/shmoji) - Emoji CLI's * [Rofimoji](https://github.com/fdw/rofimoji), [Shmoji](https://github.com/biox/shmoji) - Emoji CLI's
* [Flash 32 Download](https://pastebin.com/0fNaeceW)
*** ***
## ▷ File Tools ## ▷ File Tools
* 🌐 **[Linux File Backup](https://github.com/restic/others)** - File Backup App List * 🌐 **[Linux File Backup](https://github.com/restic/others)** - File Backup App List
* ⭐ **[Warpinator](https://github.com/linuxmint/warpinator)**, [rQuickshare](https://github.com/Martichou/rquickshare), [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole), [syncthing](https://syncthing.net/) / [Tray Support](https://martchus.github.io/syncthingtray/), [portal](https://github.com/SpatiumPortae/portal), [Zrok](https://zrok.io/), [Celeste](https://flathub.org/apps/details/com.hunterwittenborn.Celeste) / [2](https://snapcraft.io/celeste) or [Sharing](https://github.com/parvardegr/sharing) - File Sync Apps * ⭐ **[Warpinator](https://github.com/linuxmint/warpinator)**, [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole), [syncthing](https://syncthing.net/), [portal](https://github.com/SpatiumPortae/portal) or [Sharing](https://github.com/parvardegr/sharing) - File Sync Apps
* ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)**, **[lf](https://github.com/gokcehan/lf)**, [ranger](https://ranger.fm), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [Superfile](https://github.com/yorukot/superfile), [Joshuto](https://github.com/kamiyaa/joshuto), [dut](https://codeberg.org/201984/dut), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers * ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)** - Disk Usage Analyzer
* [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [CatCLI](https://github.com/deadc0de6/catcli), [xplr](https://xplr.dev/) / [GitHub](https://github.com/sayanarijit/xplr) / [Discord](https://discord.com/invite/JmasSPCcz3), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://ugrep.com) / [GitHub](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers * [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [CatCLI](https://github.com/deadc0de6/catcli), [xplr](https://xplr.dev/) / [GitHub](https://github.com/sayanarijit/xplr) / [Discord](https://discord.com/invite/JmasSPCcz3), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers
* [Dolphin](https://userbase.kde.org/Dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
* [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop * [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop
* [Bash Upload](https://bashupload.com/) - Bash File Upload 50GB / 3 days
* [z](https://github.com/rupa/z) - Track Most used Directories * [z](https://github.com/rupa/z) - Track Most used Directories
* [Dolphin](https://userbase.kde.org/Dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
* [p7zip](https://p7zip.sourceforge.net/), [GNU Gzip](https://www.gnu.org/software/gzip/) or [pigz](https://zlib.net/pigz/) - File Archivers / Unzippers * [p7zip](https://p7zip.sourceforge.net/), [GNU Gzip](https://www.gnu.org/software/gzip/) or [pigz](https://zlib.net/pigz/) - File Archivers / Unzippers
* [Pika Backup](https://gitlab.gnome.org/World/pika-backup/) - File Backup Tool
* [Curlew](https://curlew.sourceforge.io/) - File Converter * [Curlew](https://curlew.sourceforge.io/) - File Converter
* [Boxxy](https://github.com/queer/boxxy) - Contain Files / Directories * [Boxxy](https://github.com/queer/boxxy) - Contain Files / Directories
* [Junction](https://github.com/sonnyp/Junction) - Change File Associations * [Junction](https://github.com/sonnyp/Junction) - Change File Associations
* [Krename](https://apps.kde.org/en-gb/krename/) - Bulk File Renamer * [Krename](https://apps.kde.org/en-gb/krename/) - Bulk File Renamer
* [FSLint](https://www.pixelbeat.org/fslint/), [Czkawka](https://qarmin.github.io/czkawka/), [kdiff3](https://apps.kde.org/en-gb/kdiff3/) or [fclones](https://github.com/pkolaczk/fclones) - Duplicate File Finder * [FSLint](https://www.pixelbeat.org/fslint/), [Czkawka](https://qarmin.github.io/czkawka/) or [fclones](https://github.com/pkolaczk/fclones) - Duplicate File Finder
* [xdg-ninja](https://github.com/b3nj5m1n/xdg-ninja) - Unwanted File Finder * [xdg-ninja](https://github.com/b3nj5m1n/xdg-ninja) - Unwanted File Finder
* [rcm](https://github.com/thoughtbot/rcm) - Manage Dotfiles * [rcm](https://github.com/thoughtbot/rcm) - Manage Dotfiles
* [Zathura](https://git.pwmt.org/pwmt) - Document Viewer * [Zathura](https://git.pwmt.org/pwmt) - Document Viewer
@ -447,12 +374,12 @@ Linux Gaming Guide
## ▷ Terminal / Shell ## ▷ Terminal / Shell
* 🌐 **[Awesome Shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://github.com/tldr-pages/tldr/) or [AltBox](https://altbox.dev/) - Linux Shell Resources * 🌐 **[Awesome-shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://github.com/tldr-pages/tldr/) or [AltBox](https://altbox.dev/) - Linux Shell Resources
* 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)** or [TerminalTrove](https://terminaltrove.com/) - List of TUIs * 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)** or [TerminalTrove](https://terminaltrove.com/) - List of TUIs
* ↪️ **[Linux Shell Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_command_line_shells)** or [Modern Unix](https://github.com/ibraheemdev/modern-unix) * ↪️ **[Linux Shell Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_command_line_shells)** or [Modern Unix](https://github.com/ibraheemdev/modern-unix)
* **[Alacritty](https://alacritty.org)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals * ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
* ⭐ **[Shell GPT](https://github.com/TheR1D/shell_gpt)**, [2](https://github.com/jiacai2050/shellgpt) - AI Terminal Chatbot / GPT * ⭐ **[lf](https://github.com/gokcehan/lf)**, [ranger](https://github.com/ranger/ranger), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [Joshuto](https://github.com/kamiyaa/joshuto), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers
* [Liquidprompt](https://github.com/liquidprompt/liquidprompt) - Bash / Zsh Prompt * **[Alacritty](https://github.com/alacritty/alacritty)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals
* [utils](https://github.com/Loupeznik/utils) or [UsefulLinuxShellScripts](https://github.com/jackrabbit335/UsefulLinuxShellScripts) - Linux Shell Tool Scripts * [utils](https://github.com/Loupeznik/utils) or [UsefulLinuxShellScripts](https://github.com/jackrabbit335/UsefulLinuxShellScripts) - Linux Shell Tool Scripts
* [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator * [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator
* [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check * [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check
@ -461,50 +388,45 @@ Linux Gaming Guide
* [Bash Crawl](https://gitlab.com/slackermedia/bashcrawl) - Linux Command Learning Game * [Bash Crawl](https://gitlab.com/slackermedia/bashcrawl) - Linux Command Learning Game
* [bash_loading_animations](https://github.com/Silejonu/bash_loading_animations) - Bash Loading Animations * [bash_loading_animations](https://github.com/Silejonu/bash_loading_animations) - Bash Loading Animations
* [bash-it](https://github.com/Bash-it/bash-it) or [Bashly](https://bashly.dannyb.co/) - Bash Frameworks * [bash-it](https://github.com/Bash-it/bash-it) or [Bashly](https://bashly.dannyb.co/) - Bash Frameworks
* [zx](https://google.github.io/zx/) or [dax](https://github.com/dsherret/dax) - Write Complex Scripts * [zx](https://github.com/google/zx) - Javascript Bash
* [Basher](https://www.basher.it/) or [bpkg](https://bpkg.sh/) - Bash Package Manager * [Basher](https://www.basher.it/) - Bash Script Package Manager
* [yakuake](https://apps.kde.org/yakuake/) - Terminal Emulator
* [XTerm](https://invisible-island.net/xterm/) - X Window System Terminal Emulator
* [hush](https://github.com/hush-shell/hush) - Unix Shell * [hush](https://github.com/hush-shell/hush) - Unix Shell
* [Extension Manager](https://mattjakeman.com/apps/extension-manager) - GNOME Shell Extensions * [Extension Manager](https://github.com/mjakeman/extension-manager) - GNOME Shell Extensions
* [Distrobox](https://distrobox.it/) - Use Distros via Terminal * [Distrobox](https://github.com/89luca89/distrobox) - Use Distros via Terminal
* [htop](https://htop.dev/) or [Zenith](https://github.com/bvaisvil/zenith) - Interactive Process Viewers * [htop](https://htop.dev/) - Interactive Process Viewer / [GitHub](https://github.com/htop-dev/htop)
* [eza](https://eza.rocks/) - Modern ls replacement * [eza](https://github.com/eza-community/eza) - Modern ls replacement
* [explainshell.com](https://explainshell.com/) - Match Command-Line Arguments to Help Text * [explainshell.com](https://explainshell.com/) - Match Command-Line Arguments to Help Text
* [PowerShell](https://github.com/powershell/powershell) - PowerShell * [PowerShell](https://github.com/powershell/powershell) - PowerShell
* [Tmux](https://github.com/tmux/tmux) - Terminal Multiplexer / [Cheatsheet](https://tmuxcheatsheet.com/) * [Tmux](https://github.com/tmux/tmux) - Terminal Multiplexer / [Cheatsheet](https://tmuxcheatsheet.com/)
* [Zellij](https://zellij.dev/) - Terminal Workspace
* [asciinema](https://asciinema.org/) - Terminal Recorder * [asciinema](https://asciinema.org/) - Terminal Recorder
* [Electerm](https://electerm.github.io/electerm) - Terminal / SSH / STP Client * [Electerm](https://electerm.github.io/electerm) - Terminal / SSH / STP Client
* [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/lotabout/skim) - Fuzzy Finders * [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/lotabout/skim) - Fuzzy Finders
* [atuin](https://atuin.sh/) - Shell History Management / [GitHub](https://github.com/atuinsh/atuin) * [atuin](https://github.com/ellie/atuin) - Shell History Management
* [cbonsai](https://gitlab.com/jallbrit/cbonsai) - Generate Bonsai Trees in Terminal * [cbonsai](https://gitlab.com/jallbrit/cbonsai) - Generate Bonsai Trees in Terminal
* [pipes.sh](https://pipeseroni.github.io/) or [pipes-rs](https://github.com/lhvy/pipes-rs) - Animated Pipes in Terminal * [pipes.sh](https://github.com/pipeseroni/pipes.sh) or [pipes-rs](https://github.com/lhvy/pipes-rs) - Animated Pipes in Terminal
* [Terminal Locomotive Train](https://pastebin.com/ayrFjrh6) - Train Terminal Easter Egg * [Terminal Locomotive Train](https://pastebin.com/ayrFjrh6) - Train Terminal Easter Egg
* [ASCIIQuarium](https://robobunny.com/projects/asciiquarium/html/) - Fish in Terminal * [ASCIIQuarium](https://robobunny.com/projects/asciiquarium/html/) - Fish in Terminal
*** ***
## ▷ Ricing / Customization ## ▷ Customization
* 🌐 **[Ricepedia](https://rizonrice.club/Main_Page)** - Linux Ricing Tools * 🌐 **[Ricepedia](https://rizonrice.club/Main_Page)** - Linux Ricing Tools
* ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux * ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux
* ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)** or **[Aylur's GTK Shell](https://github.com/Aylur/ags)** - Widgeting Systems
* [Nam's Ricing Guide](https://nam.is-a.dev/blog/ricing/) - Ricing Guide
* [Gradience](https://github.com/GradienceTeam/Gradience) - Customize GNOME's Adwaita
* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer * [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer
* [Akira](https://github.com/akiraux/Akira) - UI/UX Customization * [Akira](https://github.com/akiraux/Akira) - UI/UX Customization
* [Kvantum](https://github.com/tsujan/Kvantum) - Linux QT / KDE Theme Engine * [Kvantum](https://github.com/tsujan/Kvantum) - Linux QT / KDE Theme Engine
* [Polybar (X11)](https://github.com/polybar/polybar), [Iron Bar](https://github.com/JakeStanger/ironbar) (Wayland) or [Waybar](https://github.com/Alexays/Waybar) (Wayland) - Customizable Status Bars * [Polybar](https://github.com/polybar/polybar) or [lemonbar](https://github.com/LemonBoy/bar) - Customizable Status Bar
* [MacBuntu Transformation Pack](https://www.noobslab.com/2018/08/macbuntu-1804-transformation-pack-ready.html), [2](https://www.noobslab.com/2017/06/macbuntu-transformation-pack-ready-for.html) - Mac Theme * [MacBuntu Transformation Pack](https://www.noobslab.com/2018/08/macbuntu-1804-transformation-pack-ready.html), [2](https://www.noobslab.com/2017/06/macbuntu-transformation-pack-ready-for.html) - Mac Theme
* [Windows-10](https://b00merang.weebly.com/windows-10.html) - Windows 10 Theme * [Windows-10](https://github.com/B00merang-Project/Windows-10) - Windows 10 Theme
* [La Capitaine](https://github.com/keeferrourke/la-capitaine-icon-theme), [Moka](https://snwh.org/moka), [Numix](https://github.com/numixproject/numix-icon-theme) or [Papirus](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme) - Linux Icon Themes
* [xScreensaver](https://www.jwz.org/xscreensaver/) - Linux Screensavers * [xScreensaver](https://www.jwz.org/xscreensaver/) - Linux Screensavers
* [Fondo](https://github.com/calo001/fondo), [varietywalls](https://github.com/varietywalls/variety), [HydraPaper](https://hydrapaper.gabmus.org/), [styli.sh](https://github.com/thevinter/styli.sh) or [Komorebi](https://github.com/cheesecakeufo/komorebi) - Wallpaper Managers * [Fondo](https://github.com/calo001/fondo), [varietywalls](https://github.com/varietywalls/variety), [HydraPaper](https://hydrapaper.gabmus.org/), [styli.sh](https://github.com/thevinter/styli.sh) or [Komorebi](https://github.com/cheesecakeufo/komorebi) - Wallpaper Managers
* [Video Wallpaper](https://github.com/ghostlexly/gpu-video-wallpaper) - Use Videos as Animated Wallpaper * [Video Wallpaper](https://github.com/ghostlexly/gpu-video-wallpaper) - Use Videos as Animated Wallpaper
* [wallpaper-engine-kde-plugin](https://github.com/catsout/wallpaper-engine-kde-plugin) - Wallpaper Engine KDE Plugin * [wallpaper-engine-kde-plugin](https://github.com/catsout/wallpaper-engine-kde-plugin) - Wallpaper Engine KDE Plugin
* [Polychromatic](https://polychromatic.app/) or [OpenRazer](https://openrazer.github.io/) - Linux System Light Control * [Polychromatic](https://polychromatic.app/) - Linux System Light Control
* [Burn My Windows](https://github.com/Schneegans/Burn-My-Windows) - Window Closing Effects * [Burn My Windows](https://github.com/Schneegans/Burn-My-Windows) - Window Closing Effects
* [theme.sh](https://github.com/lemnos/theme.sh), [NotCurses](https://github.com/dankamongmen/notcurses) / [Wiki](https://nick-black.com/dankwiki/index.php/Notcurses) or [Shell Color Scripts](https://gitlab.com/dwt1/shell-color-scripts) / [2](https://github.com/stark/Color-Scripts) - Custom Terminal Themes * [theme.sh](https://github.com/lemnos/theme.sh) or [Shell Color Scripts](https://gitlab.com/dwt1/shell-color-scripts) / [2](https://github.com/stark/Color-Scripts) - Custom Terminal Themes
* [font-manager](https://github.com/FontManager/font-manager) - Font Manager * [font-manager](https://github.com/FontManager/font-manager) - Font Manager
*** ***
@ -518,60 +440,61 @@ Linux Gaming Guide
* ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps * ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps
* ⭐ **[shottr](https://shottr.cc/)** or [MagicCap](https://magiccap.me/) - Screenshot Tool * ⭐ **[shottr](https://shottr.cc/)** or [MagicCap](https://magiccap.me/) - Screenshot Tool
* ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App * ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App
* ⭐ **[Alfred](https://www.alfredapp.com/)**, [Quicksilver](https://qsapp.com/) or [Raycast](https://www.raycast.com/) - Keystroke Launchers * ⭐ **[Alfred](https://www.alfredapp.com/)** or [Raycast](https://www.raycast.com/) - Keystroke Launchers
* ⭐ **[CustomShortcuts](https://www.houdah.com/customShortcuts/)**, [Karabiner-Elements](https://karabiner-elements.pqrs.org/) or [ShortcutKeeper](https://shortcutkeeper.com/) - Custom Keyboard Shortcuts * ⭐ **[CustomShortcuts](https://www.houdah.com/customShortcuts/)**, [Karabiner-Elements](https://karabiner-elements.pqrs.org/) or [ShortcutKeeper](https://shortcutkeeper.com/) - Custom Keyboard Shortcuts
* ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac * ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac
* ⭐ **[Fantastical](https://flexibits.com/fantastical)** - Calendar * ⭐ **[Fantastical](https://flexibits.com/fantastical)** - Calendar
* [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools * [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools
* [Novee](https://github.com/ZhichGaming/Novee) - Anime Streaming App * [Novee](https://github.com/ZhichGaming/Novee) - Anime Streaming App
* [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader * [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader
* [Swiftcord](https://swiftcordapp.github.io/Swiftcord/) or [Accord](https://github.com/evelyneee/accord) - Discord Clients * [Swiftcord](https://github.com/SwiftcordApp/Swiftcord) or [Accord](https://github.com/evelyneee/accord) - Discord Clients
* [Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884) - Mastodon Client * [Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884) - Mastodon Client
* [Beta Profiles](https://betaprofiles.com/) - Download Pre-Release Versions macOS * [Beta Profiles](https://betaprofiles.com/) - Download Pre-Release Versions macOS
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/) * [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
* [Boot Camp](https://support.apple.com/boot-camp) - Windows Bootloader / [DL Script](https://github.com/timsutton/brigadier) * [Boot Camp](https://support.apple.com/boot-camp) - Windows Bootloader / [DL Script](https://github.com/timsutton/brigadier)
* [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker * [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker
* [Whisky](https://getwhisky.app/) - Wine Wrapper * [Whisky](https://getwhisky.app/) - Wine Wrapper
* [macos-virtualbox](https://github.com/myspaghetti/macos-virtualbox) - MacOS Virtualbox Installer
* [SwiftUI Win11](https://jinxiansen.github.io/Windows11/) - Windows 11 Desktop Client for macOS * [SwiftUI Win11](https://jinxiansen.github.io/Windows11/) - Windows 11 Desktop Client for macOS
* [OrbStack](https://orbstack.dev/) - Docker Client * [OrbStack](https://orbstack.dev/) - Docker Client
* [Cider](https://cider.sh/) / [GitHub](https://github.com/ciderapp/Cider) - Audio Players / Free Classic Version * [Cog](https://cogx.org/) or [Cider](https://cider.sh/) / [GitHub](https://github.com/ciderapp/Cider) - Audio Players
* [Psst](https://github.com/jpochyla/psst) - Spotify Client
* [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player * [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player
* [SoundSeer](https://github.com/jonathangarelick/SoundSeer) - Spotify in Menu Bar
* [Nuage](https://github.com/lbrndnr/nuage-macos) - Soundcloud Client * [Nuage](https://github.com/lbrndnr/nuage-macos) - Soundcloud Client
* [Subsonic](https://github.com/twostraws/Subsonic) - SwiftUI Audio Player * [Subsonic](https://github.com/twostraws/Subsonic) - SwiftUI Audio Player
* [Bookshelf](https://apps.apple.com/us/app/bookshelf-reading-tracker/id1469372414) - Book Tracker * [Bookshelf](https://apps.apple.com/us/app/bookshelf-reading-tracker/id1469372414) - Book Tracker
* [LimaVM](https://lima-vm.io/) - Linux VM * [LimaVM](https://github.com/lima-vm/lima) - Linux VM
* [PortingKit](https://www.portingkit.com/) or [PlayOnMac](https://www.playonmac.com/en/) - Run Windows Games / Programs on Mac * [PortingKit](https://www.portingkit.com/) or [PlayOnMac](https://www.playonmac.com/en/) - Run Windows Games / Programs on Mac
* [OpenCore](https://github.com/acidanthera/OpenCorePkg) - Mac Bootloader / [Config](https://mackie100projects.altervista.org/opencore-configurator/) / [Guide](https://dortania.github.io/OpenCore-Install-Guide/) * [OpenCore](https://github.com/acidanthera/OpenCorePkg) - Mac Bootloader / [Config](https://mackie100projects.altervista.org/opencore-configurator/) / [Guide](https://dortania.github.io/OpenCore-Install-Guide/)
* [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs * [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs
* [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher/) - Install New macOS on Unsupported Devices * [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher/) - Install New macOS on Unsupported Devices
* [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager * [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager
* [Conky](https://conky.cc) / [Colors](https://github.com/helmuthdu/conky_colors), [eul](https://github.com/gao-sun/eul), [zfxtop](https://github.com/ssleert/zfxtop), [Stats](https://github.com/exelban/stats), [Mission Center](https://gitlab.com/mission-center-devs/mission-center) or [MacFetch](https://github.com/gantoreno/macfetch) - Hardware / System Monitors * [Conky](https://github.com/brndnmtthws/conky) / [Colors](https://github.com/helmuthdu/conky_colors), [eul](https://github.com/gao-sun/eul), [zfxtop](https://github.com/ssleert/zfxtop), [Stats](https://github.com/exelban/stats) or [MacFetch](https://github.com/gantoreno/macfetch) - Hardware / System Monitors
* [Hot](https://github.com/macmade/) - CPU Monitor * [Hot](https://github.com/macmade/) - CPU Monitor
* [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer * [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer
* [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress * [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress
* [Clean-Me](https://kevin-de-koninck.github.io/Clean-Me/) or [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers * [Clean-Me](https://kevin-de-koninck.github.io/Clean-Me/) or [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers
* [What Route](https://whatroute.net/) - Network Diagnostic Tool * [What Route](https://whatroute.net/) - Network Diagnostic Tool
* [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts * [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts
* [File Find](https://gitlab.com/Pixel-Mqster/File-Find) or [Superfile](https://github.com/yorukot/superfile) - File Explorer / Managers * [File Find](https://gitlab.com/Pixel-Mqster/File-Find) - File Explorer / Manager
* [Download Shuttle](https://apps.apple.com/in/app/download-shuttle-fast-file/id847809913) or [Progressive Downloader](https://macpsd.net/) - File Download Manager * [Download Shuttle](https://apps.apple.com/in/app/download-shuttle-fast-file/id847809913) or [Progressive Downloader](https://macpsd.net/) - File Download Manager
* [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc) * [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc)
* [Adobe Creative Cloud](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - Adobe CC Guides * [Adobe Creative Cloud](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - Adobe CC Guides
* [Adobe Packager](https://github.com/Drovosek01/adobe-packager) - Adobe Portable Installer Script * [Adobe Packager](https://github.com/Drovosek01/adobe-packager) - Adobe Portable Installer Script
* [ss64 OSX](https://ss64.com/osx/) - macOS Bash Commands * [ss64 OSX](https://ss64.com/osx/) - macOS Bash Commands
* [Browserosaurus](https://browserosaurus.com/) - Browser Prompter * [Browserosaurus](https://browserosaurus.com/) - Browser Prompter
* [Orion](https://kagi.com/orion/) - Browser w/ Chrome + Firefox Extension Support / [Discord](https://discord.com/invite/gKh5E6ys6D) * [Orion](https://browser.kagi.com/) - Lightweight Browser w/ Chrome & Firefox Extensions / [Discord](https://discord.com/invite/gKh5E6ys6D)
* [Strongbox](https://strongboxsafe.com/) - Password Manager * [Strongbox](https://strongboxsafe.com/) - Password Manager
* [Maccy](https://maccy.app/), [ClipBook](https://clipbook.app/) or [TRex](https://trex.ameba.co/) - Clipboard Managers * [Maccy](https://maccy.app/) or [TRex](https://trex.ameba.co/) - Clipboard Managers
* [Left on Read](https://leftonread.me/) or [PyPush](https://github.com/JJTech0130/pypush) / [Discord](https://discord.gg/BVvNukmfTC) - iMessage Clients * [Left on Read](https://leftonread.me/) or [PyPush](https://github.com/JJTech0130/pypush) /[Discord](https://discord.gg/BVvNukmfTC) - iMessage Clients
* [LlamaChat](https://www.llamachat.app/) - Llama AI Chat * [LlamaChat](https://www.llamachat.app/) - Llama AI Chat
* [DiffusionBee](https://diffusionbee.com/) - Local AI Frontend / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
* [MacBing](https://goodsnooze.gumroad.com/l/macbing) - Bing Chat * [MacBing](https://goodsnooze.gumroad.com/l/macbing) - Bing Chat
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader * [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
* [Dialect](https://github.com/dialect-app/dialect) - Translator * [Dialect](https://github.com/dialect-app/dialect) - Translator
* [Link Unshortener](https://underpassapp.com/LinkUnshortener/) - Unshorten Links * [Link Unshortener](https://underpassapp.com/LinkUnshortener/) - Unshorten Links
* [Aiko](https://sindresorhus.com/aiko) - Audio Transcription * [Aiko](https://sindresorhus.com/aiko) - Audio Transcription
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Kyun](https://github.com/file-acomplaint/kyun), [FSNotes](https://fsnot.es/), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes * [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Kyun](https://github.com/file-acomplaint/kyun), [FSNotes](https://fsnot.es/), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
* [Agenda](https://agenda.com/) - Mac Notes Organizer / [Forum](https://agenda.community/)
* [Taskpaper](https://www.taskpaper.com/) - To-Do Apps * [Taskpaper](https://www.taskpaper.com/) - To-Do Apps
* [Stroke](https://stroke.lllllllllllllllll.com/) - Text (You Can't Delete) Editor * [Stroke](https://stroke.lllllllllllllllll.com/) - Text (You Can't Delete) Editor
* [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager * [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager
@ -580,37 +503,32 @@ Linux Gaming Guide
* [kbdlight](https://github.com/WhyNotHugo/kbdlight) - Change MacBook Keyboard Backlight Level * [kbdlight](https://github.com/WhyNotHugo/kbdlight) - Change MacBook Keyboard Backlight Level
* [KeyPad](https://apps.apple.com/in/app/keypad-bluetooth-keyboard/id1491684442) - Connect Mac Keyboard to Mobile Devices * [KeyPad](https://apps.apple.com/in/app/keypad-bluetooth-keyboard/id1491684442) - Connect Mac Keyboard to Mobile Devices
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture * [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
* [LinearMouse](https://linearmouse.app/) or [MacMouseFix](https://macmousefix.com/) - Mouse Remapping * [LinearMouse](https://linearmouse.app/) - Custom Mouse / Trackpad Options
* [Scroll Reverser](https://pilotmoon.com/scrollreverser/) - Per-Device Scroll Settings
* [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application * [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application
* [rcmd](https://lowtechguys.com/rcmd/) - App Switcher Command Key
* [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer * [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer
* [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control * [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control
* [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause * [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause
* [BatFi](https://micropixels.gumroad.com/l/batfi) - Battery Manager
* [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator * [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator
* [Bunch](https://bunchapp.co/) - Task Automation * [Bunch](https://bunchapp.co/) - Task Automation
* [MacScripter](https://www.macscripter.net/) - Automation Forum * [MacScripter](https://www.macscripter.net/) - Automation Forum
* [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices * [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices
* [Touché](https://redsweater.com/touche/) - Touch Bar Simulator * [Touché](https://redsweater.com/touche/) - Touch Bar Simulator
* [Actions](https://sindresorhus.com/actions) - Additional Shortcuts App Actions
* [pock](https://pock.app/) - Touch Bar Widget Manager / [GitHub](https://github.com/pock/pock) * [pock](https://pock.app/) - Touch Bar Widget Manager / [GitHub](https://github.com/pock/pock)
* [Übersicht](https://tracesof.net/uebersicht/) - System Command Widgets
* [Itsycal](https://www.mowglii.com/itsycal/) - Menu Bar Calendar * [Itsycal](https://www.mowglii.com/itsycal/) - Menu Bar Calendar
* [Clocker](https://abhishekbanthia.com/clocker/) or [MeetingBar](https://meetingbar.app/) - Menu Bar Meetings Calendars * [Clocker](https://abhishekbanthia.com/clocker/) or [MeetingBar](https://meetingbar.app/) - Menu Bar Meetings Calendars
* [xbar](https://xbarapp.com/) - Manage Menu Bar Items / [GitHub](https://github.com/matryer/xbar) * [xbar](https://xbarapp.com/) - Manage Menu Bar Items / [GitHub](https://github.com/matryer/xbar)
* [MacLaunch](https://github.com/hazcod/maclaunch) - Manage Startup Items * [MacLaunch](https://github.com/hazcod/maclaunch) - Manage Startup Items
* [Ice](https://icemenubar.app/) - Menu Bar Manager
* [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches * [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager * [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
* [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor * [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/) / [GitHub](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Spaces](https://spacesformac.xyz/), [Loop](https://github.com/MrKai77/Loop), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers * [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Spaces](https://spacesformac.xyz/), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://github.com/kasper/phoenix) or [Rectangle](https://rectangleapp.com/) - Window Managers
* [Later](https://getlater.app/) - Restore App Sessions * [AlDente](https://github.com/davidwernhart/AlDente-Charge-Limiter) - Charging Manager
* [AlDente](https://apphousekitchen.com/) - Charging Manager * [Unlocker](https://github.com/paolo-projects/unlocker) - VMware Unlocker
* [VMware](https://rentry.co/FMHYBase64#vmware) - Virtual Machine
* [USBMap](https://github.com/corpnewt/USBMap) - Map MacOS USB Ports * [USBMap](https://github.com/corpnewt/USBMap) - Map MacOS USB Ports
* [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/) - Code Editors * [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/)
* [PowerShell](https://github.com/powershell/powershell) - PowerShell
* [iTerm2](https://iterm2.com/) - Replacements for Terminal * [iTerm2](https://iterm2.com/) - Replacements for Terminal
* [asciinema](https://asciinema.org/) - Terminal Recorder
* [Fig](https://fig.io/) - IDE-Style Autocomplete for Terminal * [Fig](https://fig.io/) - IDE-Style Autocomplete for Terminal
* [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller * [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller
* [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager * [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager
@ -618,16 +536,15 @@ Linux Gaming Guide
* [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom System Icons * [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom System Icons
* [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors * [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App * [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
* [wallpapper](https://github.com/mczachurski/wallpapper) or [Equinox](https://equinoxmac.com/) - Dynamic Wallpaper Creators * [wallpapper](https://github.com/mczachurski/wallpapper) - Dynamic Wallpaper Creator
* [Plash](https://sindresorhus.com/plash) - Use Website as Wallpaper * [Plash](https://github.com/sindresorhus/Plash) - Use Website as Wallpaper
* [100 macOS Screensavers](https://github.com/bjdehang/100-macos-screensavers) - Minimalist Screensavers * [100 macOS Screensavers](https://github.com/bjdehang/100-macos-screensavers) - Minimalist Screensavers
* [DarkModeBuddy](https://github.com/insidegui/DarkModeBuddy) or [ThemeKit](https://github.com/luckymarmot/ThemeKit) - System Dark Mode Apps * [DarkModeBuddy](https://github.com/insidegui/DarkModeBuddy) or [ThemeKit](https://github.com/luckymarmot/ThemeKit) - System Dark Mode Apps
* [Bootcamp Drivers](https://bootcampdrivers.com/) - Mac Bootcamp AMD Drivers * [Bootcamp Drivers](https://bootcampdrivers.com/) - Mac Bootcamp AMD Drivers
* [IINA](https://iina.io/) - Video Player * [IINA](https://iina.io/) - Video Player
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
* [Gifski](https://sindresorhus.com/gifski) - Image to GIF Converter / [GitHub](https://github.com/sindresorhus/Gifski) * [Gifski](https://sindresorhus.com/gifski) - Image to GIF Converter / [GitHub](https://github.com/sindresorhus/Gifski)
* [Darkroom](https://apps.apple.com/us/app/darkroom-photo-video-editor/id953286746) - Image / Video Editor * [Darkroom](https://apps.apple.com/us/app/darkroom-photo-video-editor/id953286746) - Image / Video Editor
* [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders * [Kap](https://github.com/wulkano/Kap) - Screen Recorder
* [Garageband](https://apps.apple.com/us/app/garageband/id682658836?mt=12) - Audio Editor * [Garageband](https://apps.apple.com/us/app/garageband/id682658836?mt=12) - Audio Editor
* [Yoshimi](https://yoshimi.github.io/) - Audio Synthesizer * [Yoshimi](https://yoshimi.github.io/) - Audio Synthesizer
* [EQMac](https://eqmac.app/) - Audio Equalizer * [EQMac](https://eqmac.app/) - Audio Equalizer
@ -635,14 +552,14 @@ Linux Gaming Guide
* [Guitarix](https://guitarix.org/) - Virtual Guitar Amplifier / [Plugins](https://github.com/brummer10/GxPlugins.lv2) * [Guitarix](https://guitarix.org/) - Virtual Guitar Amplifier / [Plugins](https://github.com/brummer10/GxPlugins.lv2)
* [XLD](https://sourceforge.net/projects/xld/) - Lossless Audio Transcoder * [XLD](https://sourceforge.net/projects/xld/) - Lossless Audio Transcoder
* [BlackHole](https://github.com/ExistentialAudio/BlackHole) - Pass Audio to Apps * [BlackHole](https://github.com/ExistentialAudio/BlackHole) - Pass Audio to Apps
* [Donna](https://www.musicdonna.com/) - AI Music Generator
* [Mubert AI](https://apps.apple.com/us/app/mubert-ai-music-streaming/id1154429580) - AI Music Radio * [Mubert AI](https://apps.apple.com/us/app/mubert-ai-music-streaming/id1154429580) - AI Music Radio
* [Playlisty](https://apps.apple.com/us/app/playlisty-the-playlist-tool/id1459275972) - Transfer Apple Music Playlists to Spotify * [Playlisty](https://apps.apple.com/us/app/playlisty-the-playlist-tool/id1459275972) - Transfer Apple Music Playlists to Spotify
* [Image Tricks Lite](https://apps.apple.com/us/app/image-tricks-lite/id403735824?mt=12) or [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors * [Image Tricks Lite](https://apps.apple.com/us/app/image-tricks-lite/id403735824?mt=12) or [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors
* [ImageOptim](https://imageoptim.com/mac) - Image Optimization * [ImageOptim](https://imageoptim.com/mac) - Image Optimization
* [Perspec](https://github.com/feramhq/Perspec) - Correct Perspective of Images * [Perspec](https://github.com/feramhq/Perspec) - Correct Perspective of Images
* [MochiDiffusion](https://github.com/godly-devotion/MochiDiffusion) - AI Image Generator
* [Draw Things](https://apps.apple.com/us/app/draw-things-ai-generation/id6444050820) - AI Image Drawing Tool * [Draw Things](https://apps.apple.com/us/app/draw-things-ai-generation/id6444050820) - AI Image Drawing Tool
* [SD Buddy](https://github.com/breadthe/sd-buddy), [CHARL-E](https://www.charl-e.com/) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps * [SD Buddy](https://github.com/breadthe/sd-buddy) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps
* [ColorSlurp](https://colorslurp.com/) or [Material-Colors-native](https://github.com/BafS/Material-Colors-native) - Color Picker * [ColorSlurp](https://colorslurp.com/) or [Material-Colors-native](https://github.com/BafS/Material-Colors-native) - Color Picker
* [Use Contrast](https://usecontrast.com/) - Check Color Contrast Ratios * [Use Contrast](https://usecontrast.com/) - Check Color Contrast Ratios
* [Sim Daltoinism](https://michelf.ca/projects/sim-daltonism/) - Color Blindness Simulator * [Sim Daltoinism](https://michelf.ca/projects/sim-daltonism/) - Color Blindness Simulator
@ -671,7 +588,6 @@ Linux Gaming Guide
* 🌐 **[Awesome MacOS](https://github.com/iCHAIT/awesome-macOS)**, [OpenSourceApple](https://opensource.apple.com/), [Awesome Mac](https://github.com/jaywcjlove/awesome-mac) or [Awesome OS Apps](https://github.com/serhii-londar/open-source-mac-os-apps) - FOSS App Indexes * 🌐 **[Awesome MacOS](https://github.com/iCHAIT/awesome-macOS)**, [OpenSourceApple](https://opensource.apple.com/), [Awesome Mac](https://github.com/jaywcjlove/awesome-mac) or [Awesome OS Apps](https://github.com/serhii-londar/open-source-mac-os-apps) - FOSS App Indexes
* 🌐 **[Mac Menu Bar](https://macmenubar.com/)** - Menu Bar App Index * 🌐 **[Mac Menu Bar](https://macmenubar.com/)** - Menu Bar App Index
* ⭐ **[Homebrew](https://brew.sh/)** / [GUI](https://corkmac.app/), [Munki](https://www.munki.org/munki/) or [AppLite](https://aerolite.dev/applite/index.html) - Package Managers * ⭐ **[Homebrew](https://brew.sh/)** / [GUI](https://corkmac.app/), [Munki](https://www.munki.org/munki/) or [AppLite](https://aerolite.dev/applite/index.html) - Package Managers
* [AppsTorrent](https://appstorrent.ru/) / [Note](https://pastebin.com/dNirumnk)
* [Macintosh Garden](https://macintoshgarden.org/) * [Macintosh Garden](https://macintoshgarden.org/)
* [MacBed](https://www.macbed.com/) * [MacBed](https://www.macbed.com/)
* [Pure Mac](https://www.pure-mac.com/) * [Pure Mac](https://www.pure-mac.com/)
@ -682,20 +598,17 @@ Linux Gaming Guide
* [InsMac](https://insmac.org/) * [InsMac](https://insmac.org/)
* [MacX](https://macx.ws/) * [MacX](https://macx.ws/)
* [WebCatalog](https://webcatalog.io/) * [WebCatalog](https://webcatalog.io/)
* [ThriftMac](https://thriftmac.com/) - Freeware
* [Latest](https://github.com/mangerlahn/latest) - Software Updater
*** ***
## ▷ Mac Gaming ## ▷ Mac Gaming
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Mac Games * ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)**
* ⭐ **[AppleGamingWiki](https://applegamingwiki.com/)** - Mac Game Fixes / Compatibility * ⭐ **[AppleGamingWiki](https://applegamingwiki.com/)** - Mac Game Fixes / Compatibility
* ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator * ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator
* [SCNLOG](https://scnlog.me/) - Mac Games * [SCNLOG](https://scnlog.me/)
* [Mac Source Ports](https://www.macsourceports.com/) - Run Old Mac Games * [Mac Source Ports](https://www.macsourceports.com/) - Run Old Mac Games
* [HeroicGamesLauncher](https://heroicgameslauncher.com/) or [Mythic](https://getmythic.app/) / [Discord](https://discord.gg/58NZ7fFqPy) - Epic Games Launchers * [HeroicGamesLauncher](https://heroicgameslauncher.com/) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) - Epic Games Launcher
* [Prism43](https://github.com/DomHeadroom/Prism43) - Prism Launcher / Unlocker
* [NASOS](https://archive.org/download/nNASOS1.8/nNASOS1.8.zip) - Gamecube iso.dec to ISO Converter * [NASOS](https://archive.org/download/nNASOS1.8/nNASOS1.8.zip) - Gamecube iso.dec to ISO Converter
* [rbxfpsunlocker-osx](https://github.com/lanylow/rbxfpsunlocker-osx) - Roblox FPS Unlocker * [rbxfpsunlocker-osx](https://github.com/lanylow/rbxfpsunlocker-osx) - Roblox FPS Unlocker
* [cemu.emiyl](https://cemu.emiyl.com/) - CEMU Compatibility List * [cemu.emiyl](https://cemu.emiyl.com/) - CEMU Compatibility List
@ -705,9 +618,9 @@ Linux Gaming Guide
# ► Mac Adblock / Privacy # ► Mac Adblock / Privacy
* 🌐 **[Awesome OSX Security](https://github.com/ashishb/osx-and-ios-security-awesome)** - Mac Security Resources * 🌐 **[Awesome OSX Security](https://github.com/ashishb/osx-and-ios-security-awesome)** - Mac Security Resources
* ↪️ **[Mac 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)** * ↪️ **[Mac 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_two-factor_authentication)**
* ⭐ **[Malwarebytes](https://www.malwarebytes.com/mac-download)**, [BlockBlock](https://objective-see.org/products/blockblock.html) or [KnockKnock](https://objective-see.org/products/knockknock.html) - Antivirus * ⭐ **[Malwarebytes](https://www.malwarebytes.com/mac-download)**, [BlockBlock](https://objective-see.org/products/blockblock.html) or [KnockKnock](https://objective-see.org/products/knockknock.html) - Antivirus
* ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)** or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers * ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)**, [Spotify Adblock Guide](https://redd.it/y2zt58) or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers
* [Ka-Block!](https://apps.apple.com/us/app/ka-block/id1037173557), [BlockBear](https://apps.apple.com/ca/app/blockbear/id1023924541) or [Adblock Plus for iOS](https://gitlab.com/eyeo/adblockplus/adblock-plus-for-safari) - Safari Adblockers * [Ka-Block!](https://apps.apple.com/us/app/ka-block/id1037173557), [BlockBear](https://apps.apple.com/ca/app/blockbear/id1023924541) or [Adblock Plus for iOS](https://gitlab.com/eyeo/adblockplus/adblock-plus-for-safari) - Safari Adblockers
* [MacOS Privacy Guide](https://github.com/drduh/macOS-Security-and-Privacy-Guide) - Mac Privacy & Security Guides * [MacOS Privacy Guide](https://github.com/drduh/macOS-Security-and-Privacy-Guide) - Mac Privacy & Security Guides
* [Gas Mask](https://github.com/2ndalpha/gasmask) - Block Ads via Host Files * [Gas Mask](https://github.com/2ndalpha/gasmask) - Block Ads via Host Files
@ -715,7 +628,6 @@ Linux Gaming Guide
* [1Blocker](https://1blocker.com/) - DNS Adlocker * [1Blocker](https://1blocker.com/) - DNS Adlocker
* [Lockdown Privacy](https://lockdownprivacy.com/) - Block Trackers / Ads * [Lockdown Privacy](https://lockdownprivacy.com/) - Block Trackers / Ads
* [LuLu](https://objective-see.org/products/lulu.html) - Mac Firewall * [LuLu](https://objective-see.org/products/lulu.html) - Mac Firewall
* [Streisand](https://streisand.pages.dev/) - Mac Proxy Client
* [Mana](https://github.com/manasecurity/mana-security-app) - App Security Monitor * [Mana](https://github.com/manasecurity/mana-security-app) - App Security Monitor
* [RansomWhere?](https://objective-see.org/products/ransomwhere.html) - Ransomware Blocker * [RansomWhere?](https://objective-see.org/products/ransomwhere.html) - Ransomware Blocker
* [OverSight](https://objective-see.org/products/oversight.html) - Webcam / Mic Monitor * [OverSight](https://objective-see.org/products/oversight.html) - Webcam / Mic Monitor
@ -725,7 +637,7 @@ Linux Gaming Guide
* [What's Your Sign?](https://objective-see.org/products/whatsyoursign.html) - View File Cryptographic Signatures * [What's Your Sign?](https://objective-see.org/products/whatsyoursign.html) - View File Cryptographic Signatures
* [Tracker Zapper](https://rknight.me/apps/tracker-zapper/) - Remove URL Tracking Elements * [Tracker Zapper](https://rknight.me/apps/tracker-zapper/) - Remove URL Tracking Elements
* [LinkLiar](https://halo.github.io/LinkLiar/) - Spoof MAC Address' * [LinkLiar](https://halo.github.io/LinkLiar/) - Spoof MAC Address'
* [FileVault](https://support.apple.com/en-us/HT204837) - Mac Disk Encryption * [FileVault](https://support.apple.com/en-us/HT204837) - Mac Disk Encryption
* [Code Signing](https://www.code-signing.app/) - Validate Code Signature * [Code Signing](https://www.code-signing.app/) - Validate Code Signature
* [Kextviewr](https://objective-see.org/products/kextviewr.html) - View All Kernel Modules * [Kextviewr](https://objective-see.org/products/kextviewr.html) - View All Kernel Modules
* [mac_apt](https://github.com/ydkhatri/mac_apt) - Artifact Parsing Tool * [mac_apt](https://github.com/ydkhatri/mac_apt) - Artifact Parsing Tool

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

2447
STORAGE.md

File diff suppressed because it is too large Load Diff

View File

@ -6,32 +6,38 @@
# ► Social Media Tools # ► Social Media Tools
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats * [Social-Searcher](https://www.social-searcher.com/), [WeVerify](https://cse.google.com/cse?cx=006976128084956795641:ad1xj14zfap), [Social Media CSE](https://cse.google.com/cse?cx=73dda67fd05b4405f#gsc.tab=1&gsc.sort=) or [Social Mention](https://www.socialmention.com/) - Social Media Search Engine
* ⭐ **[LiveCounts](https://livecounts.io/)** - Live Social Media Stats
* [Social-Searcher](https://www.social-searcher.com/), [WeVerify](https://cse.google.com/cse?cx=006976128084956795641:ad1xj14zfap) or [Social Media CSE](https://cse.google.com/cse?cx=73dda67fd05b4405f#gsc.tab=1&gsc.sort=) - Social Media Search Engine
* [Social Media Hacker List](https://github.com/MobileFirstLLC/social-media-hacker-list) - Social Media Apps / Tools * [Social Media Hacker List](https://github.com/MobileFirstLLC/social-media-hacker-list) - Social Media Apps / Tools
* [ExportComments](https://exportcomments.com/) - Export Social Media Comments * [SocialBlade](https://socialblade.com/) - Social Media Stats
* [LiveCounts](https://livecounts.io/) - Live Social Media Stats
* [ExportComments](https://exportcomments.com/) - Export Social Media Comments
* [EagleEye](https://github.com/ThoughtfulDev/EagleEye) - Find Social Media Profiles From Image
* [socid_extractor](https://github.com/soxoj/socid-extractor) - Extract Social Media User Info from Pages * [socid_extractor](https://github.com/soxoj/socid-extractor) - Extract Social Media User Info from Pages
* [Snapchat Memories](https://downloadmysnapchatmemories.com/) - Download Snapchat Photos
* [tumblr-utils](https://github.com/bbolli/tumblr-utils) - Tumblr Utilities
* [Tumblr Savior](https://bjornstar.com/tumblr-savior) - Tumblr Dashboard Filter
*** ***
# ► Discord Tools # ► Discord Tools
**Warning** - Misuse of chat archivers, deleters, mods & third-party clients is against Discords TOS, so use them at your own risk. **Warning** - Misuse of chat archivers, deleters, mods & third-party clients is against Discords TOS, so use them at your own risk.
*** ***
* 🌐 **[Awesome Discord](https://github.com/jacc/awesome-discord)** - Discord Tool Index * 🌐 **[DiscordTools](https://discordtools.io/)** or [awesome-discord](https://github.com/jacc/awesome-discord) - Discord Tools Indexes
* ⭐ **[x266.mov](https://x266.mov/discord-embed)**, [embeds.video](https://embeds.video/), [Stolen Shoes](https://stolen.shoes/), [autocompressor](https://autocompressor.net/), [noury](https://dc.noury.li/) or [Discord Embedder](https://discord.nfp.is/) - Embed Videos on Discord * ⭐ **[x266.mov](https://x266.mov/discord-embed)**, [embeds.video](https://embeds.video/), [Stolen Shoes](https://stolen.shoes/), [autocompressor](https://autocompressor.net/) or [Discord Embedder](https://discord.nfp.is/) - Embed Videos on Discord
* ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/insertish/awesome-revolt) / [Divolt Resources](https://github.com/ggtylerr/awesome-divolt) or **[Guilded](https://www.guilded.gg/)** - Discord Alternatives * ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/insertish/awesome-revolt) / [Divolt Resources](https://github.com/ggtylerr/awesome-divolt) or **[Guilded](https://www.guilded.gg/)** / [Mod](https://github.com/ReGuilded/ReGuilded/) - Discord Alternatives
* [Multi-Accounts 1 Email](https://generator.email/blog/gmail-generator) - Create Multi Accounts with One Email / [Guide](https://rentry.co/altmethod) * [Multi-Accounts 1 Email](https://generator.email/blog/gmail-generator) - Create Multi Accounts with One Email / [Guide](https://rentry.co/altmethod)
* [AnswersOverflow](https://www.answeroverflow.com/) - Discord Search Engine * [AnswersOverflow](https://www.answeroverflow.com/) - Discord Search Engine
* [DiscordFS](https://github.com/dhrumilp15/haystackfs) - Discord File Search * [DiscordFS](https://github.com/dhrumilp15/haystackfs) - Discord File Search
* [Discord Downloader Go](https://github.com/get-got/discord-downloader-go) - Discord File Downloader * [Discord Downloader Go](https://github.com/get-got/discord-downloader-go) - Discord File Downloader
* [Toolscord](https://toolscord.com/) or [Discord Avatar](https://discord-avatar.com/) - Download Discord Avatars * [Discord-Avatar](https://discord-avatar.com/) or [Toolscord](https://toolscord.com/) - Download Discord Avatars
* [Disbox](https://disboxapp.github.io/web/) - Discord Cloud Storage * [Disbox](https://disboxapp.github.io/web/) - Discord Cloud Storage
* [CloneCord](https://github.com/Rekulous/CloneCord-bot) - GClone Cloud Storage File Manager in Discord
* [Discord Chat Exporter](https://github.com/Tyrrrz/DiscordChatExporter) / [Python](https://github.com/mahtoid/DiscordChatExporterPy) or [Discord History Tracker](https://dht.chylex.com/) / [GitHub](https://github.com/chylex/Discord-History-Tracker) - Archive / Export Discord Chats * [Discord Chat Exporter](https://github.com/Tyrrrz/DiscordChatExporter) / [Python](https://github.com/mahtoid/DiscordChatExporterPy) or [Discord History Tracker](https://dht.chylex.com/) / [GitHub](https://github.com/chylex/Discord-History-Tracker) - Archive / Export Discord Chats
* [Dumpus](https://dumpus.app/) - Discord Data Package Explorer * [Dumpus](https://dumpus.app/) - Discord Data Package Explorer
* [Discord Backup](https://github.com/itschasa/Discord-Backup) - Backup / Restore Discord Accounts
* [Wumpus Central](https://discord.gg/wumpus-central-1087801778365546556) - Discord Experimental Server Hub * [Wumpus Central](https://discord.gg/wumpus-central-1087801778365546556) - Discord Experimental Server Hub
* [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption * [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption
* [Undiscord](https://victornpb.github.io/undiscord/) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png) * [Undiscord](https://victornpb.github.io/undiscord/) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
@ -39,17 +45,16 @@
* [dsc.gg](https://dsc.gg/) - Create Custom Discord Invites * [dsc.gg](https://dsc.gg/) - Create Custom Discord Invites
* [Discord Previews](https://discord.gg/QMw7gQGMHj) - New Discord Builds / Changes * [Discord Previews](https://discord.gg/QMw7gQGMHj) - New Discord Builds / Changes
* [instaparty](https://instaparty.gg/) - Temporary Discord Servers * [instaparty](https://instaparty.gg/) - Temporary Discord Servers
* [Discord Templates](https://discordtemplates.me/) - Discord Server Templates
* [Discord UI Mockup](https://www.figma.com/community/file/994323951589690341/Discord-Desktop-UI) - Discord UI Mockups * [Discord UI Mockup](https://www.figma.com/community/file/994323951589690341/Discord-Desktop-UI) - Discord UI Mockups
* [discord-badges](https://github.com/mezotv/discord-badges) - Discord Badges Image Files * [discord-badges](https://github.com/mezotv/discord-badges) - Discord Badges Image Files
* [DisblockOrigin](https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Upsells * [SunnyDiscord](https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Upsells
* [Discord Creation Date Check](https://github.com/hugonun/discordid2date) - Check Creation Date of User / Channel / Server * [Discord Creation Date Check](https://hugo.moe/discord/discord-id-creation-date.html) / [GitHub](https://github.com/hugonun/discordid2date) - Check Creation Date of User / Channel / Server
* [Discord Lookup](https://discord.id/) - Look up a Discord User or Bot ID * [Discord Lookup](https://discord.id/) - Look up a Discord User or Bot ID
* [Guild Counter](https://rauf.wtf/guildcount) - Check How Many Servers You're In * [Guild Counter](https://rauf.wtf/guildcount) - Check How Many Servers You're In
* [Discord Dev Badges](https://pastebin.com/JzrckCix), [active-developer-badge](https://github.com/hackermondev/discord-active-developer-badge) or [GiveMeBadge](https://github.com/AlexFlipnote/GiveMeBadge) - Unlock Discord Dev Badges / [Script](https://gist.github.com/Raraph84/cff3ff908a1f2692b9a8452d2f49c2bf) * [Discord Dev Badges](https://pastebin.com/JzrckCix), [active-developer-badge](https://github.com/hackermondev/discord-active-developer-badge) or [GiveMeBadge](https://github.com/AlexFlipnote/GiveMeBadge) - Unlock Discord Dev Badges / [Script](https://gist.github.com/Raraph84/cff3ff908a1f2692b9a8452d2f49c2bf)
* [Discord-Api](https://discord.gg/discord-api) - Discord API Chat * [Discord-Api](https://discord.gg/discord-api) - Discord API Chat
* [Discord-Datamining](https://github.com/Discord-Datamining/Discord-Datamining) - Discord Datamining via JS Files * [Discord-Datamining](https://github.com/Discord-Datamining/Discord-Datamining) - Discord Datamining via JS Files
* [Discord TTS Bot](https://docs.moonstar-x.dev/discord-tts-bot/) - Text to Speech for Discord * [Discord TTS Bot](https://github.com/moonstar-x/discord-tts-bot) - Text to Speech for Discord
* [Discord Webhooks Guide](https://birdie0.github.io/discord-webhooks-guide/) - Webhooks Guide * [Discord Webhooks Guide](https://birdie0.github.io/discord-webhooks-guide/) - Webhooks Guide
* [Webhooker](https://xdfnleaks.github.io/webhooker/) - Simple Webhooks App * [Webhooker](https://xdfnleaks.github.io/webhooker/) - Simple Webhooks App
* [Embed Visualizer](https://embed.discord.website/) - Preview Embeds * [Embed Visualizer](https://embed.discord.website/) - Preview Embeds
@ -66,18 +71,15 @@
* 🌐 **[Discord3rdParties](https://github.com/Discord-Client-Encyclopedia-Management/Discord3rdparties)** - Discord Clients Index * 🌐 **[Discord3rdParties](https://github.com/Discord-Client-Encyclopedia-Management/Discord3rdparties)** - Discord Clients Index
* ⭐ **[Vencord](https://vencord.dev/)** - Discord Client Mod / [Github](https://github.com/Vendicated/Vencord) / [Desktop Client](https://github.com/Vencord/Vesktop) * ⭐ **[Vencord](https://vencord.dev/)** - Discord Client Mod / [Github](https://github.com/Vendicated/Vencord) / [Desktop Client](https://github.com/Vencord/Vesktop)
* ⭐ **[BetterDiscord](https://betterdiscord.app/)** - Discord Client Mod / [GitHub](https://github.com/BetterDiscord/BetterDiscord) * ⭐ **[BetterDiscord](https://betterdiscord.app/)** - Discord Client Mod / [GitHub](https://github.com/BetterDiscord/BetterDiscord)
* ⭐ **BetterDiscord Tools** - [Plugins](https://betterdiscord.app/plugins) / [Banned Plugins](https://rentry.co/BDBannedPlugins), [2](https://github.com/mov-ebx/BannedBetterDiscordPlugins) / [Support](https://discord.gg/0Tmfo5ZbORCRqbAd) / [Nitro](https://github.com/riolubruh/YABDP4Nitro) / [Re-install Guide](https://gist.github.com/Knewest/ee59d3960e18e6d813c9221b54b36ab1) * ⭐ **BetterDiscord Tools** - [Plugins](https://betterdiscord.app/plugins) / [Themes](https://betterdiscord.app/themes) / [Theme Editor](https://bdeditor.dev/) / [Support](https://discord.gg/0Tmfo5ZbORCRqbAd) / [Nitro](https://github.com/riolubruh/YABDP4Nitro) / [Message Panel](https://github.com/SanjaySunil/BetterDiscordPanel) / [Re-install Guide](https://gist.github.com/Knewest/ee59d3960e18e6d813c9221b54b36ab1)
* ⭐ **[OpenAsar](https://openasar.dev/)** - Improved Discord Desktop's app.asar / [GitHub](https://github.com/GooseMod/OpenAsar)
* ⭐ **[WebCord](https://github.com/SpacingBat3/WebCord)** - Privacy-Hardened Client / [Discord](https://discord.gg/Vm4CwZx) * ⭐ **[WebCord](https://github.com/SpacingBat3/WebCord)** - Privacy-Hardened Client / [Discord](https://discord.gg/Vm4CwZx)
* [Replugged](https://replugged.dev/) - Discord Client Mod / Lightweight * [OpenAsar](https://openasar.dev/) - Improved Discord Desktop's app.asar / [GitHub](https://github.com/GooseMod/OpenAsar)
* [ArmCord](https://github.com/ArmCord/ArmCord) - Discord Client Mod / Lightweight * [ArmCord](https://github.com/ArmCord/ArmCord), [abaddon](https://github.com/uowuo/abaddon) or [Replugged](https://replugged.dev/) - Lightweight Discord Clients
* [abaddon](https://github.com/uowuo/abaddon) - Discord Client Mod / Lightweight
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client * [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
* [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client * [Unicord](https://github.com/UnicordDev/Unicord) - Discord Client for Windows / [Discord](https://discord.gg/64g7M5Y)
* [Unicord](https://github.com/UnicordDev/Unicord) - Discord Client for Windows / [Discord](https://discord.gg/64g7M5Y)
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Client * [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Client
* [Dorion](https://github.com/SpikeHD/Dorion) - Lightweight Discord Client * [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client
* [Dissent](https://github.com/diamondburned/dissent) - GTK4 Discord Client * [GTKCord4](https://github.com/diamondburned/gtkcord4) - GTK4 Discord Client
* [Discord Portable](https://portapps.io/app/discord-portable/) / [PTB PortApps](https://portapps.io/app/discord-ptb-portable/) - Portable Discord Stable * [Discord Portable](https://portapps.io/app/discord-portable/) / [PTB PortApps](https://portapps.io/app/discord-ptb-portable/) - Portable Discord Stable
* [litecord](https://gitlab.com/litecord/litecord) - Reimplementation of Discord's Backend / [Clients](https://gitlab.com/litecord/litecord/-/blob/master/docs/clients.md) * [litecord](https://gitlab.com/litecord/litecord) - Reimplementation of Discord's Backend / [Clients](https://gitlab.com/litecord/litecord/-/blob/master/docs/clients.md)
@ -85,13 +87,18 @@
## ▷ Client Customization ## ▷ Client Customization
* 🌐 **[Client Themes](https://betterdiscord.app/themes)** or [Discord Themes](https://github.com/topics/discord-theme) - Client Theme Index * ⭐ **[Discohook](https://discohook.org/)** / [Discohook Utils](https://dutils.shay.cat/) or [Embed Generator](https://message.style/) - Embed Generators
* ⭐ **[Discohook](https://discohook.org/)** / [Discohook Utils](https://dutils.shay.cat/), [Embed Creator](https://embed.dan.onl/) or [Embed Generator](https://message.style/) - Embed Generators
* ⭐ **[CustomRP](https://www.customrp.xyz/)** - Customizable Rich Presence * ⭐ **[CustomRP](https://www.customrp.xyz/)** - Customizable Rich Presence
* [BD Editor](https://bdeditor.dev/) - Client Theme Editor * [AMWin-RP](https://github.com/PKBeam/AMWin-RP) - Apple Music Rich Presence
* [Adobe Discord RPC](https://github.com/teeteeteeteetee/adobe-discord-rpc) - Adobe Rich Presence
* [discord-vscode](https://marketplace.visualstudio.com/items?itemName=icrawl.discord-vscode) - VSCode Rich Presence / [GitHub](https://github.com/iCrawl/discord-vscode)
* [Old Layout](https://gist.github.com/aamiaa/fbf6e51dbb8875a781a3d8d76fc3f3e7) - Revert New Discord Layout
* [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Chroma Light for Discord * [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Chroma Light for Discord
* [Overlayed](https://overlayed.dev/) - Alternative Discord VC Overlay / [GitHub](https://github.com/Hacksore/overlayed) * [Overlayed](https://overlayed.dev/) - Alternative Discord VC Overlay / [GitHub](https://github.com/Hacksore/overlayed)
* [BeautifulDiscord](https://github.com/leovoel/BeautifulDiscord) - Custom CSS Support * [Acrylic](https://github.com/uwu/Acrylic) - Glass Theme
* [WinClassic](https://github.com/SlippingGittys-Discord-Themes/WinClassic) - Classic Windows Theme
* [PreMiD](https://premid.app/) - Display Web Activity in Discord Status / [GitHub](https://github.com/PreMiD/PreMiD) / [Discord](https://discord.premid.app/)
* [BeautifulDiscord](https://github.com/leovoel/BeautifulDiscord) - Custom CSS Support
* [ansi-colors-discord.md](https://gist.github.com/kkrypt0nn/a02506f3712ff2d1c8ca7c9e0aed7c06) - Discord ANSI Text Guide * [ansi-colors-discord.md](https://gist.github.com/kkrypt0nn/a02506f3712ff2d1c8ca7c9e0aed7c06) - Discord ANSI Text Guide
* [Coloured-Text-Generator](https://rebane2001.com/discord-colored-text-generator/) - Discord ANSI Text Generator * [Coloured-Text-Generator](https://rebane2001.com/discord-colored-text-generator/) - Discord ANSI Text Generator
* [Auto Creative](https://auto.creavite.co/icons) - Animated Icon / Banner Generator * [Auto Creative](https://auto.creavite.co/icons) - Animated Icon / Banner Generator
@ -100,45 +107,37 @@
* [Pfps.gg](https://pfps.gg/) - Find Discord Avatars * [Pfps.gg](https://pfps.gg/) - Find Discord Avatars
* [usrbg](https://github.com/Discord-Custom-Covers/usrbg) - Custom Discord Profile Backgrounds * [usrbg](https://github.com/Discord-Custom-Covers/usrbg) - Custom Discord Profile Backgrounds
* [Disgradient](https://disgradient.netlify.app/) - Discord Folder / Role Color Gradients * [Disgradient](https://disgradient.netlify.app/) - Discord Folder / Role Color Gradients
* [NotQuiteNitro](https://nqn.blue/) - Discord Nitro Alternative
* [ImageClipboard](https://imageclipboard.com/), [Slackmoji](https://github.com/seanprashad/slackmoji) or [emoji.gg](https://emoji.gg/)- Free Discord Nitro Emojis * [ImageClipboard](https://imageclipboard.com/), [Slackmoji](https://github.com/seanprashad/slackmoji) or [emoji.gg](https://emoji.gg/)- Free Discord Nitro Emojis
* [Snowsgiving Icons & Emotes](https://web.archive.org/web/20230729100139/https://cdn.discordapp.com/attachments/689605845058715801/862281806820278292/Snow.zip) - Snowsgiving Event Icons / Emojis * [Snowsgiving Icons & Emotes](https://web.archive.org/web/20230729100139/https://cdn.discordapp.com/attachments/689605845058715801/862281806820278292/Snow.zip) - Snowsgiving Event Icons / Emojis
* [6gk Turtles](https://github.com/6gk/turtles) - Discord Turtle Emojis * [6gk Turtles](https://github.com/6gk/turtles) - Discord Turtle Emojis
* [Discord Text to Emoji](https://jtprince.com/discord/) - Convert Text to Discord Emojis * [Discord Text to Emoji](https://jtprince.com/discord/) - Convert Text to Discord Emojis
* [Stickers.gg](https://stickers.gg) - Free Discord Stickers * [Stickers.gg](https://stickers.gg) - Free Discord Stickers
* [PreMiD](https://premid.app/) - Display Web Activity in Discord Status / [GitHub](https://github.com/PreMiD/PreMiD) / [Discord](https://discord.premid.app/)
* [Jellyfin RPC](https://github.com/Radiicall/jellyfin-rpc) - Jellyfin Rich Presence
* [AMWin-RP](https://github.com/PKBeam/AMWin-RP) - Apple Music Rich Presence
* [Foo Discord](https://github.com/s0hv/foo_discord_rich) - Foobar Rich Presence
* [Adobe Discord RPC](https://github.com/teeteeteeteetee/adobe-discord-rpc) - Adobe Rich Presence
* [PS3 Rich](https://github.com/zorua98741/PS3-Rich-Presence-for-Discord) - PS3 Rich Presence
* [discord-vscode](https://marketplace.visualstudio.com/items?itemName=icrawl.discord-vscode) - VSCode Rich Presence / [GitHub](https://github.com/iCrawl/discord-vscode)
*** ***
## ▷ Discord Bots ## ▷ Discord Bots
* ⭐ **[FreeStuff Bot](https://freestuffbot.xyz/)** - Free Games Alert Bot * ⭐ **[FreeStuff Bot](https://freestuffbot.xyz/)** - Free Games Alert Bot
* [FixEmbed](https://github.com/kenhendricks00/FixEmbed) - Fix Embeds on Discord Bot
* [esmBot](https://github.com/esmBot/esmBot) - Image / Music Bot
* [NotQuiteNitro](https://nqn.blue/) - Discord Nitro Alternative
* [fmbot](https://fmbot.xyz/) - Discord Voice Chat Scrobbling * [fmbot](https://fmbot.xyz/) - Discord Voice Chat Scrobbling
* [Chuu](https://github.com/ishwi/Chuu) - Last.fm Discord Bot * [Chuu](https://github.com/ishwi/Chuu) - Last.fm Discord Bot
* [Craig](https://craig.chat/) - Voice Channel Recorder Bot / [Backup](https://craig.chat/giarc/) * [Craig](https://craig.chat/) - Voice Channel Recorder Bot / [Backup](https://craig.chat/giarc/)
* [MonitoRSS](https://monitorss.xyz/) - RSS Discord Bot * [MonitoRSS](https://monitorss.xyz/) - RSS Discord Bot
* [Wallabot](https://github.com/FahadBinHussain/wallabot) - Wallabag Discord Bot * [Wallabot](https://github.com/FahadBinHussain/wallabot) - Wallabag Discord Bot
* [Discord Music Bot](https://github.com/SudhanPlayz/Discord-MusicBot), [Music-bot](https://github.com/ZerioDev/Music-bot) / [Discord](https://discord.gg/Kqdn8CHacP), [Chip](https://chipbot.gg/), [MusicBot](https://github.com/jagrosh/MusicBot) or [EvoBot](https://github.com/eritislami/evobot) - Music Bots * [Discord Music Bot](https://github.com/SudhanPlayz/Discord-MusicBot), [Music-bot](https://github.com/ZerioDev/Music-bot), [Chip](https://chipbot.gg/), [MusicBot](https://github.com/jagrosh/MusicBot), [EvoBot](https://github.com/eritislami/evobot) or [EarTensifier](https://eartensifier.net/) - Music Bots
* [Red Discordbot](https://github.com/Cog-Creators/Red-DiscordBot), [Discord-Bot](https://github.com/CorwinDev/Discord-Bot) or [Loritta](https://github.com/LorittaBot/Loritta) - Self-hostable Discord Moderation Bots * [Red Discordbot](https://github.com/Cog-Creators/Red-DiscordBot), [Discord-Bot](https://github.com/CorwinDev/Discord-Bot) or [Loritta](https://github.com/LorittaBot/Loritta) - Self-hostable Discord Moderation Bots
* [Wickbot](https://wickbot.com/) - Discord Security Bot * [Wickbot](https://wickbot.com/) - Discord Security Bot
* [anti-phishing-bot](https://github.com/Benricheson101/anti-phishing-bot) - Discord Anti Phishing Bot * [anti-phishing-bot](https://github.com/Benricheson101/anti-phishing-bot) - Discord Anti Phishing Bot
* [Automod Config](https://docs.google.com/spreadsheets/d/1pUGVAARMBadmNqQW6cPKhSaT-uYDgQlRBnlQ9TMDXTI/edit#gid=730346323) - Automod Bot Config * [Automod Config](https://docs.google.com/spreadsheets/d/1pUGVAARMBadmNqQW6cPKhSaT-uYDgQlRBnlQ9TMDXTI/edit#gid=730346323) - Automod Bot Config
* [Modmail](https://github.com/modmail-dev/modmail) - Discord Modmail Bot * [Modmail](https://github.com/modmail-dev/modmail) - Discord Modmail Bot
* [Discord-Linux](https://discord-linux.com/) - Linux Container Bot * [Discord-Linux](https://discord-linux.com/) - Linux Container Bot
*** ***
## ▷ Server / Bot Indexes ## ▷ Server / Bot Indexes
* 🌐 **[Alternatives to MEE6](https://alternativestomee6.com/)** - MEE6 Alternatives / [Discord](https://discord.gg/WrbMdWHfNd) * 🌐 **[Alternatives to MEE6](https://alternativestomee6.com/)** - MEE6 Alternatives / [Discord](https://discord.gg/WrbMdWHfNd)
* ↪️ **[Discord ChatGPT Bots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_chatgpt_tools)**
* [DISBOARD](https://disboard.org/) - Server / Bot Index * [DISBOARD](https://disboard.org/) - Server / Bot Index
* [Discord Servers](https://discordservers.com/) - Server / Bot Index * [Discord Servers](https://discordservers.com/) - Server / Bot Index
* [Discadia](https://discadia.com/) - Server / Bot Index * [Discadia](https://discadia.com/) - Server / Bot Index
@ -146,7 +145,6 @@
* [Discord Me](https://discord.me/) - Server / Bot Index * [Discord Me](https://discord.me/) - Server / Bot Index
* [Disforge](https://disforge.com/) - Server / Bot Index * [Disforge](https://disforge.com/) - Server / Bot Index
* [Find a Discord](https://findadiscord.com/) - Server / Bot Index * [Find a Discord](https://findadiscord.com/) - Server / Bot Index
* [Discord Extreme List](https://discordextremelist.xyz/) - Server / Bot Index
* [Open Source Projects](https://discord.com/open-source) - Server / Bot Index * [Open Source Projects](https://discord.com/open-source) - Server / Bot Index
* [BotBlock](https://botblock.org/) - Bot Index * [BotBlock](https://botblock.org/) - Bot Index
* [Top.gg](https://top.gg/) - Bot Index * [Top.gg](https://top.gg/) - Bot Index
@ -168,25 +166,26 @@
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit Fix](https://greasyfork.org/en/scripts/404497-reddit-fix), [Reddit Extension](https://lawrenzo.com/p/reddit-extension), [RedditEnhancer](https://github.com/joelacus/RedditEnhancer) or [RedditMod2](https://greasyfork.org/en/scripts/29724-redditmod2) - Reddit Enhancement Extensions / Scripts * ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit Fix](https://greasyfork.org/en/scripts/404497-reddit-fix), [Reddit Extension](https://lawrenzo.com/p/reddit-extension), [RedditEnhancer](https://github.com/joelacus/RedditEnhancer) or [RedditMod2](https://greasyfork.org/en/scripts/29724-redditmod2) - Reddit Enhancement Extensions / Scripts
* ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old * ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends * [Photon](https://photon-reddit.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
* [Reddit Login Bypass Script](https://pastebin.com/raw/sU5tqwep) - Bypass Reddit Login * [Reddit Login Bypass Script](https://pastebin.com/raw/sU5tqwep) - Bypass Reddit Login
* [Beleave](https://beleave.virock.org/) - Bulk Subreddit Unsub Tool
* [Reddit Comber](https://redditcomber.com/) or [Sub Notification](https://redd.it/5mz9z5) - Reddit Keyword Notifications * [Reddit Comber](https://redditcomber.com/) or [Sub Notification](https://redd.it/5mz9z5) - Reddit Keyword Notifications
* [Unreadit](https://app.mailbrew.com/unreadit) - Reddit Newsletters * [Unreadit](https://app.mailbrew.com/unreadit) - Reddit Newsletters
* [Reddit Shadow Ban Info](https://redd.it/1btuwel) - Check if You've been Shadowbanned * [Reddit Shadow Ban Info](https://redd.it/ptrm7u) - Check if You've been Shadowbanned
* [Reddit Markdown Guide](https://www.reddit.com/wiki/markdown) - Learn Reddit Markdown * [Reddit Markdown Guide](https://www.reddit.com/wiki/markdown) - Learn Reddit Markdown
* [Redbar](https://chromewebstore.google.com/detail/redbar-sidebar-for-reddit/gkclfabkdcgimggblodknofgkigbfcid) - Sidebar for Reddit
* [Reddit Preview](https://redditpreview.com/) - Preview Reddit Posts * [Reddit Preview](https://redditpreview.com/) - Preview Reddit Posts
* [Redirect Privated](https://greasyfork.org/en/scripts/468945) - Redirect Private Pages to Cached Versions * [Redirect Privated](https://greasyfork.org/en/scripts/468945) - Redirect Private Pages to Cached Versions
* [redditpx](https://www.redditpx.com/) or [Redditp](https://redditp.com/) - Reddit Image / Video Slideshows * [Redinfinite](https://redinfinite.com/), [redditpx](https://www.redditpx.com/) or [Redditp](https://redditp.com/) - Reddit Image / Video Slideshows
* [RedditRaffler](https://www.redditraffler.com/) - Reddit Raffle System * [RedditRaffler](https://www.redditraffler.com/) - Reddit Raffle System
* [RedditManager](https://redditmanager.com/) or [Saved for Reddit](https://pvik.github.io/saved-for-reddit/) - Reddit Content Managers
* [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete * [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
* [SubredditLog](https://gitlab.com/scallaway/SubredditLog) - Reddit Moderation Log
* [Reddit Emojis](https://greasyfork.org/en/scripts/443011) - Emojis for Old Reddit * [Reddit Emojis](https://greasyfork.org/en/scripts/443011) - Emojis for Old Reddit
* [Subreddit Tabs](https://greasyfork.org/en/scripts/460086) - Subreddit Icon Tabs * [Subreddit Tabs](https://greasyfork.org/en/scripts/460086) - Subreddit Icon Tabs
* [Reddit Comment Highlights](https://github.com/aesy/reddit-comment-highlights) - Highlight New Comments * [Reddit Comment Highlights](https://github.com/aesy/reddit-comment-highlights) - Highlight New Comments
* [Reddit Spoiler Blur Remover](https://greasyfork.org/en/scripts/416091-reddit-spoiler-blur-remover) - Remove Reddit Spoiler Blur
* [3D for Reddit](https://3dforreddit.com/) - 3D Reddit Browser
* [SO Reddit](https://dutzi.github.io/so-reddit/) - Stack Overflow Style Viewer
* [Pholder](https://pholder.com/) - Article Style Viewer * [Pholder](https://pholder.com/) - Article Style Viewer
* [Load Reddit Images Directly](https://github.com/nopperl/load-reddit-images-directly) - Direct Image Viewer * [Load Reddit Images Directly](https://github.com/nopperl/load-reddit-images-directly) / [Chrome](https://github.com/MonsterMannen/reddit-load-images-directly-chrome) - Direct Image Viewer
* [SocialGrep](https://socialgrep.com/) - Reddit Statistics * [SocialGrep](https://socialgrep.com/) - Reddit Statistics
* [When to Post](https://andreasbm.github.io/when-to-post-on-reddit/) - Best Reddit Posting Times * [When to Post](https://andreasbm.github.io/when-to-post-on-reddit/) - Best Reddit Posting Times
* [UniversalScammerList](https://www.universalscammerlist.com/) - List of Reddit Scammers * [UniversalScammerList](https://www.universalscammerlist.com/) - List of Reddit Scammers
@ -212,15 +211,15 @@
## ▷ Reddit Alternatives ## ▷ Reddit Alternatives
* ↪️ **[Lemmy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_lemmy_tools)** * ⭐ **[Lemmy](https://join-lemmy.org/)** / [Stats](https://the-federation.info/), [2](https://fedidb.org/) - Federated Reddit Alternative
* ⭐ **[Lemmy Explorer](https://lemmyverse.net/)**, [Community-Browser](https://browse.feddit.de/) or [Awesome Instances](https://github.com/maltfield/awesome-lemmy-instances) - Lemmy Instances
* ⭐ **[Raddle](https://raddle.me/)** / [.onion](http://c32zjeghcp5tj3kb72pltz56piei66drc63vkhn5yixiyk4cmerrjtid.onion/) - Reddit Alt * ⭐ **[Raddle](https://raddle.me/)** / [.onion](http://c32zjeghcp5tj3kb72pltz56piei66drc63vkhn5yixiyk4cmerrjtid.onion/) - Reddit Alt
* ⭐ **[Saidit](https://saidit.net/)** - Reddit Alt * ⭐ **[Saidit](https://saidit.net/)** - Reddit Alt
* [/r/RedditAlternatives](https://reddit.com/r/RedditAlternatives) - Find Reddit Alternatives * [/r/RedditAlternatives](https://reddit.com/r/RedditAlternatives) - Find Reddit Alternatives
* [sub.rehab](https://sub.rehab/) - Reddit Communities on Alternative Platforms * [Sqwok](https://sqwok.im/) - Reddit Alt
* [tildes](https://tildes.net/) - Reddit Alt * [tildes](https://tildes.net/) - Reddit Alt
* [Upgoat](https://www.upgoat.net/) - Reddit Alt * [Upgoat](https://www.upgoat.net/) - Reddit Alt
* [Scored](https://communities.win/) - Reddit Alt * [Scored](https://communities.win/) - Reddit Alt
* [Ramble](https://ramble.pw/) - Reddit Alt
* [Squabblr](https://squabblr.co/) - Reddit Alt * [Squabblr](https://squabblr.co/) - Reddit Alt
* [Discuit](https://discuit.net/) - Reddit Alt * [Discuit](https://discuit.net/) - Reddit Alt
@ -228,19 +227,17 @@
## ▷ Reddit Search ## ▷ Reddit Search
* ⭐ **[TheGigaBrain](https://thegigabrain.com/)**, [New PullPush](https://search-new.pullpush.io/) / [2](https://search.pullpush.io/), [Redditle](https://redditle.com/), [Reddit CSE](https://cse.google.com/cse?cx=016649841759798530173:rk2ezolwnw0) / [2](https://cse.google.com/cse?cx=007749065626525752968:qh5bqebwi30), [Samac](https://samac.io/), [ihsoyct](https://ihsoyct.github.io/index.html) or [Better Reddit Search](https://betterredditsearch.web.app/) - Reddit Search Engines * ⭐ **[TheGigaBrain](https://thegigabrain.com/)**, [Redditle](https://redditle.com/), [Reddit CSE](https://cse.google.com/cse?cx=016649841759798530173:rk2ezolwnw0) / [2](https://cse.google.com/cse?cx=007749065626525752968:qh5bqebwi30) or [Better Reddit Search](https://betterredditsearch.web.app/) - Reddit Search Engines
* ⭐ **[RedditRepostSleuth](https://www.repostsleuth.com/)** - Reverse Post / Image Search * ⭐ **[RedditRepostSleuth](https://www.repostsleuth.com/)** - Reverse Post / Image Search
* ⭐ **[Undelete](https://undelete.pullpush.io/)** - View Deleted Reddit Posts * ⭐ **[Reveddit](https://www.reveddit.com/)**, [Unedit & Undelete for Reddit](https://greasyfork.org/en/scripts/407466), [Unedit](https://github.com/DenverCoder1/Unedit-for-Reddit) - View Deleted Reddit Posts
* [ReSavr](https://www.resavr.com/) or [Comment History](https://academictorrents.com/details/89d24ff9d5fbc1efcdaf9d7689d72b7548f699fc) - Reddit Comment Archives * [ReSavr](https://www.resavr.com/) or [Comment History](https://academictorrents.com/details/89d24ff9d5fbc1efcdaf9d7689d72b7548f699fc) - Reddit Comment Archives
* [RSOG](https://www.rsog.org/) - Reddit Search on Google / [Userscript](https://greasyfork.org/en/scripts/462356) * [Expanse](https://github.com/jc9108/expanse), [redarcs](https://the-eye.eu/redarcs/) or [Reddit Archive](https://www.redditarchive.com/) - Reddit Post Archive Tools / [Note](https://ibb.co/R9jC5bk)
* [Expanse](https://github.com/jc9108/expanse), [redarcs](https://the-eye.eu/redarcs/), [Rareddit](https://www.rareddit.com/) or [Reddit Archive](https://www.redditarchive.com/) - Reddit Post Archive Tools / [Note](https://ibb.co/R9jC5bk)
* [RedditMetis](https://redditmetis.com/), [Reddit-User-Analyser](https://reddit-user-analyser.netlify.app/) or [Redective](https://www.redective.com/) - Reddit Profile Information * [RedditMetis](https://redditmetis.com/), [Reddit-User-Analyser](https://reddit-user-analyser.netlify.app/) or [Redective](https://www.redective.com/) - Reddit Profile Information
* [Reddit Comment Search](https://www.redditcommentsearch.com/) - Search Reddit Comments * [Reddit Comment Search](https://www.redditcommentsearch.com/) - Search Reddit Comments
* [rComments](https://github.com/iampueroo/rComments) - Explore Comments / Replies without Clicking a Post * [rComments](https://github.com/iampueroo/rComments) - Explore Comments / Replies without Clicking a Post
* [ScrollDrop](https://scrolldrop.com/) - Reddit Media Crawler * [ScrollDrop](https://scrolldrop.com/) - Reddit Media Crawler
* [Wiki Downloader](https://github.com/michealespinola/reddit.wikidownloader) - Reddit Wiki Page Scraper * [Wiki Downloader](https://github.com/michealespinola/reddit.wikidownloader) - Reddit Wiki Page Scraper
* [Find on Reddit](https://chromewebstore.google.com/detail/find-on-reddit/jbcdpeekakanklckgooknpbonojhjncm) - Find Discussions of the Current URL * [Find on Reddit](https://chromewebstore.google.com/detail/find-on-reddit/jbcdpeekakanklckgooknpbonojhjncm) - Find Discussions of the Current URL
* [PullPush](https://pullpush.io/) - Reddit Content API / [Discord](https://discord.com/invite/8hw88WMHFw)
*** ***
@ -248,7 +245,7 @@
* 🌐 **[/r/ListOfSubreddits](https://www.reddit.com/r/ListOfSubreddits/)** - Subreddits Index * 🌐 **[/r/ListOfSubreddits](https://www.reddit.com/r/ListOfSubreddits/)** - Subreddits Index
* ↪️ **[Multireddit Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multireddits)** or [/r/multihub](https://www.reddit.com/r/multihub/top/?sort=top&t=all) * ↪️ **[Multireddit Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multireddits)** or [/r/multihub](https://www.reddit.com/r/multihub/top/?sort=top&t=all)
* [FindAReddit](https://www.findareddit.com/) - Get Subreddit Suggestions / [Subreddit](https://www.reddit.com/r/findareddit/) * [/r/findareddit](https://www.reddit.com/r/findareddit/) - Get Subreddit Suggestions
* [Subreddit Calculator](https://trevor.shinyapps.io/subalgebra/) or [redsim](https://anvaka.github.io/redsim/) - Find Similar Subreddits * [Subreddit Calculator](https://trevor.shinyapps.io/subalgebra/) or [redsim](https://anvaka.github.io/redsim/) - Find Similar Subreddits
* [sayit](https://anvaka.github.io/sayit/), [Vizit](https://redditstuff.github.io/sna/vizit/), [subreddit_map](https://www.jacobsilterra.com/subreddit_map/network/index.html) or [SubredditMentionsGraph](https://dmarx.github.io/SubredditMentionsGraph/network/) - Visualize Related Subreddits * [sayit](https://anvaka.github.io/sayit/), [Vizit](https://redditstuff.github.io/sna/vizit/), [subreddit_map](https://www.jacobsilterra.com/subreddit_map/network/index.html) or [SubredditMentionsGraph](https://dmarx.github.io/SubredditMentionsGraph/network/) - Visualize Related Subreddits
* [Map of Reddit](https://anvaka.github.io/map-of-reddit) or [Reddit Map](https://redditmap.social/) - Subreddit Maps * [Map of Reddit](https://anvaka.github.io/map-of-reddit) or [Reddit Map](https://redditmap.social/) - Subreddit Maps
@ -261,9 +258,11 @@
# ► Telegram Tools # ► Telegram Tools
* 🌐 **[TDirectory](https://tdirectory.me/)**, [Telemetr](https://telemetr.io/en), [Telegram Channels](https://telegramchannels.me/), [Awesome Telegram](https://github.com/ebertti/awesome-telegram) - Telegram Channel Indexes * 🌐 **[TDirectory](https://tdirectory.me/)**, [Telemetr](https://telemetr.io/en), [Telegram Channels](https://telegramchannels.me/), [Awesome-Telegram](https://github.com/ebertti/awesome-telegram) or [Telegramic](https://telegramic.org/) - Telegram Channel Indexes
* 🌐 **[ComBot Groups](https://combot.org/top/telegram/groups)** - Top Telegram Groups Index * 🌐 **[ComBot Groups](https://combot.org/top/telegram/groups)** - Top Telegram Groups Index
* [Telegago](https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0), [2](https://cse.google.com/cse?cx=006249643689853114236:a3iibfpwexa), [Lyzem](https://lyzem.com/), [xTea](https://xtea.io/ts_en.html) or [TG-ME](https://www.tg-me.com/) - Telegram CSE's * [Telegago](https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0), [2](https://cse.google.com/cse?cx=006249643689853114236:a3iibfpwexa), [Lyzem](https://lyzem.com/), [xTea](https://xtea.io/ts_en.html) or [TG-ME](https://www.tg-me.com/) - Telegram CSE's
* [GetMediaBot](https://t.me/getmediabot) - Media Download Bot
* [MediaDownBot](https://t.me/mediadownbot) or [DownloadsMasterBot](https://t.me/DownloadsMasterBot) - Social Media Downloader
* [SaveRestrictedContentBot](https://github.com/vasusen-code/SaveRestrictedContentBot) - Save Restricted Content * [SaveRestrictedContentBot](https://github.com/vasusen-code/SaveRestrictedContentBot) - Save Restricted Content
* [Telesco.pe](https://telesco.pe/) - Telegram Round Video Recorder * [Telesco.pe](https://telesco.pe/) - Telegram Round Video Recorder
* [Video Stream](https://github.com/lntechnical2/videostream) - Telegram Video Player * [Video Stream](https://github.com/lntechnical2/videostream) - Telegram Video Player
@ -273,18 +272,15 @@
* [CloneChat](https://github.com/apenasrr/clonechat) - Clone Telegram Chats * [CloneChat](https://github.com/apenasrr/clonechat) - Clone Telegram Chats
* [tasra](https://the-eye.eu/tasra/) - Telegram Channel Archive * [tasra](https://the-eye.eu/tasra/) - Telegram Channel Archive
* [Telegram Email](https://t.me/etlgr_bot) - Send / Receive Emails via Telegram * [Telegram Email](https://t.me/etlgr_bot) - Send / Receive Emails via Telegram
* [CHPic](https://chpic.su/),, [Stickers Cloud](https://stickers.cloud/en), [ComBot Stickers](https://combot.org/telegram/stickers) or [moe_sticker_bot](https://t.me/moe_sticker_bot) - Telegram Sticker / Emojis * [Stickers Cloud](https://stickers.cloud/en), [ComBot Stickers](https://combot.org/telegram/stickers) or [moe_sticker_bot](https://t.me/moe_sticker_bot) - Sticker Packs
*** ***
## ▷ Telegram Clients ## ▷ Telegram Clients
* ⭐ **[web.telegram](https://web.telegram.org/)** / [2](https://webk.telegram.org/) / [3](https://weba.telegram.org/) - Web Client * ⭐ **[web.telegram](https://web.telegram.org/)** / [2](https://webk.telegram.org/) / [3](https://weba.telegram.org/)
* ⭐ **[Unigram](https://github.com/UnigramDev/Unigram)** - Desktop Client * ⭐ **[Unigram](https://github.com/UnigramDev/Unigram)**, [VideoGram](https://vidogram.org/) or [TDesktop](https://github.com/Forkgram/tdesktop) / [x64](https://github.com/TDesktop-x64/tdesktop) - Desktop Clients
* [TDesktop](https://github.com/Forkgram/tdesktop) - Desktop Client / [x64](https://github.com/TDesktop-x64/tdesktop) / [Telegram](https://t.me/tg_x64) * ⭐ **[tg](https://github.com/paul-nameless/tg)** - Terminal Client
* [VideoGram](https://vidogram.org/) - Desktop Client
* [AyuGram](https://github.com/AyuGram/AyuGramDesktop) - Desktop Client
* [Materialgram](https://github.com/kukuruzka165/materialgram) - Desktop Client
* [Pyrogram](https://docs.pyrogram.org/) / [Session Strings](https://t.me/SessionStringGeneratorZBot) - Telegram API Client * [Pyrogram](https://docs.pyrogram.org/) / [Session Strings](https://t.me/SessionStringGeneratorZBot) - Telegram API Client
* [Telega.el](https://github.com/zevlg/telega.el) - Telegram Emacs Client * [Telega.el](https://github.com/zevlg/telega.el) - Telegram Emacs Client
@ -292,24 +288,23 @@
## ▷ Telegram File Tools ## ▷ Telegram File Tools
* [MediaDownBot](https://t.me/mediadownbot), [WZML-X](https://github.com/SilentDemonSD/WZML-X), [Telegram Media Downloader](https://greasyfork.org/en/scripts/446342) or [DownloadsMasterBot](https://t.me/DownloadsMasterBot) - Media Downloaders * [teldrive](https://github.com/divyam234/teldrive), [File-Sharing-Bot](https://github.com/CodeXBotz/File-Sharing-Bot), [TelegramCloud](https://github.com/iw4p/telegram-cloud), [easy_share_bot](https://t.me/easy_share_bot) or [UploadBot](https://t.me/uploadbot) - Upload Files to Telegram
* [teldrive](https://github.com/divyam234/teldrive), [File-Sharing-Bot](https://github.com/CodeXBotz/File-Sharing-Bot) / [Telegram](https://t.me/CodeXBotz), [TelegramCloud](https://github.com/iw4p/telegram-cloud), [easy_share_bot](https://t.me/easy_share_bot) or [UploadBot](https://t.me/uploadbot) - Upload Files to Telegram * [GdriveXbot](https://t.me/TheGdriveXBot), [google-drive-telegram-bot](https://github.com/viperadnan-git/) or [Python Aria Mirror Bot](https://github.com/lzzy12/python-aria-mirror-bot) - GDrive Upload Bots
* [GdriveXbot](https://t.me/TheGdriveXBot), [google-drive-telegram-bot](https://github.com/viperadnan-git/) or [Python Aria Mirror Bot](https://github.com/lzzy12/python-aria-mirror-bot) / [Telegram](https://t.me/pythonmirrorsupport) - GDrive Upload Bots
* [DrClonerBot](https://t.me/DrClonerBot) - GDrive Clone Bot * [DrClonerBot](https://t.me/DrClonerBot) - GDrive Clone Bot
* [SearchX](https://github.com/iamLiquidX/SearchX) - GDrive Search Bot * [SearchX](https://github.com/iamLiquidX/SearchX) - GDrive Search Bot
* [MEGA Uploader X](https://t.me/MegaUploadXbot) or [Mega.nz-Bot](https://github.com/Itz-fork/Mega.nz-Bot) - Remote Mega File Upload Bot * [MEGA Uploader X](https://t.me/MegaUploadXbot) or [Mega.nz-Bot](https://github.com/Itz-fork/Mega.nz-Bot) - Remote Mega File Upload Bot
* [OneDrive X](https://t.me/onedrivexbot) - Remote OneDrive File Upload Bot * [OneDrive X](https://t.me/onedrivexbot) - Remote OneDrive File Upload Bot
* [AIO Uploader](https://t.me/aiouploaderbot), [LinkForFilebot](https://t.me/LinkForFilebot) or [MultiUpload-Bot](https://github.com/oVoIndia/MultiUpload-Bot) - Telegram to File Host Upload Bot * [AIO Uploader](https://t.me/aiouploaderbot), [LinkForFilebot](https://t.me/LinkForFilebot) or [MultiUpload-Bot](https://github.com/oVoIndia/MultiUpload-Bot) - Telegram to File Host Upload Bot
* [telegram-download-daemon](https://github.com/alfem/telegram-download-daemon/) - Download Large Telegram Files
* [convrt_bot](https://t.me/convrt_bot), [FileConvertBot](https://t.me/FileConvertBot), [newfileconverterbot](https://t.me/newfileconverterbot), [SmartConverter_bot](https://t.me/SmartConverter_bot), [cloud_convert_bot](https://t.me/cloud_convert_bot), [wololopdfbot](https://t.me/wololopdfbot), [pdfbot](https://t.me/pdfbot) or [Gpdfbot](https://t.me/Gpdfbot) - File Converters * [convrt_bot](https://t.me/convrt_bot), [FileConvertBot](https://t.me/FileConvertBot), [newfileconverterbot](https://t.me/newfileconverterbot), [SmartConverter_bot](https://t.me/SmartConverter_bot), [cloud_convert_bot](https://t.me/cloud_convert_bot), [wololopdfbot](https://t.me/wololopdfbot), [pdfbot](https://t.me/pdfbot) or [Gpdfbot](https://t.me/Gpdfbot) - File Converters
* [ILovePDF](https://github.com/nabilanavab/ilovepdf) - Telegram File to PDF Converter * [ILovePDF](https://github.com/nabilanavab/ilovepdf) - Telegram File to PDF Converter
* [Unzip Bot](https://t.me/unzip_edm115bot) / [Github](https://github.com/EDM115/unzip-bot) - File Extractor / Unzipper * [Unzip Bot](https://github.com/EDM115/unzip-bot) - File Extractor / Unzipper
*** ***
## ▷ Telegram Bots ## ▷ Telegram Bots
* 🌐 **[BotsArchive](https://t.me/BotsArchive)**, [botlist](https://t.me/botlist), [TelegramBotsList](https://danyspin97.github.io/TelegramBotsList/), [botostore](https://botostore.com/) or [borodutch.eth](https://borodutch.com/)- Telegram Bots Indexes * 🌐 **[BotsArchive](https://t.me/BotsArchive), [botlist](https://t.me/botlist), [TelegramBotsList](https://danyspin97.github.io/TelegramBotsList/), [botostore](https://botostore.com/) or [borodutch.eth](https://borodutch.com/)** - Telegram Bots Indexes
* ⭐ **[ChatGPT Telegram Bot](https://github.com/karfly/chatgpt_telegram_bot)** / [2](https://github.com/n3d1117/chatgpt-telegram-bot) / [3](https://github.com/watscho/chat-gpt-telegram-bot) or [chatgpt-serverless](https://github.com/franalgaba/chatgpt-telegram-bot-serverless) - ChatGPT Telegram Bots
* [TG Bot](https://t.me/drlinkbot) - Ad Link Bypass Bot / [GitHub](https://github.com/TheCaduceus/Link-Bypasser-Bot) * [TG Bot](https://t.me/drlinkbot) - Ad Link Bypass Bot / [GitHub](https://github.com/TheCaduceus/Link-Bypasser-Bot)
* [Now Playing](https://t.me/nowplaybot) - Now Playing Audio Bot * [Now Playing](https://t.me/nowplaybot) - Now Playing Audio Bot
* [ongaku](https://github.com/likeadragonmaid/Ongaku) - Display Playing Android Audio in Status * [ongaku](https://github.com/likeadragonmaid/Ongaku) - Display Playing Android Audio in Status
@ -323,7 +318,7 @@
* [Skeddy](https://skeddy.me/) - Telegram Reminder Bot * [Skeddy](https://skeddy.me/) - Telegram Reminder Bot
* [Reddit2Telegram](https://github.com/Fillll/reddit2telegram) - Reddit Post Bot * [Reddit2Telegram](https://github.com/Fillll/reddit2telegram) - Reddit Post Bot
* [rss2tg_bot](https://t.me/rss2tg_bot) or [TheFeedReaderBot](https://t.me/TheFeedReaderBot) - RSS Feed Bots * [rss2tg_bot](https://t.me/rss2tg_bot) or [TheFeedReaderBot](https://t.me/TheFeedReaderBot) - RSS Feed Bots
* [LinkShortenerZBot](https://t.me/LinkShortenerZBot) or [ShortUrlBot](https://t.me/ShortUrlBot) - Link Shortener Bots * [LinkShortenerZBot](https://t.me/LinkShortenerZBot) or [ShortUrlBot](https://t.me/ShortUrlBot) - Link Shortener Bots
* [URL2IMGBot](https://t.me/URL2IMGBot) - Take URL Screenshots * [URL2IMGBot](https://t.me/URL2IMGBot) - Take URL Screenshots
* [AiImageBot](https://t.me/AiImageBot) - Text to Image * [AiImageBot](https://t.me/AiImageBot) - Text to Image
* [Shieldy Bot](https://t.me/shieldy_bot) - Spam Protection Bot / [GitHub](https://github.com/1inch/shieldy)\ * [Shieldy Bot](https://t.me/shieldy_bot) - Spam Protection Bot / [GitHub](https://github.com/1inch/shieldy)\
@ -334,147 +329,113 @@
# ► YouTube Tools # ► YouTube Tools
* 🌐 **[YT Large](https://ytlarge.com/)** - YouTube Tools
* ⭐ **[PocketTube](https://pockettube.io/)** or [Kadium](https://kadium.kasper.space/) - Subscription Managers * ⭐ **[PocketTube](https://pockettube.io/)** or [Kadium](https://kadium.kasper.space/) - Subscription Managers
* [shorts-deflector](https://github.com/attituding/shorts-deflector), [Remove YouTube Shorts](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-shorts/), [ublock-hide-yt-shorts](https://github.com/gijsdev/ublock-hide-yt-shorts) or [youtube-shorts-block](https://github.com/doma-itachi/Youtube-shorts-block) - Hide YouTube Shorts * **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
* [YouTube_Subs_Bot](https://t.me/youtube_subs_bot) - Sub to Channels without Account * **[Fast Forward YouTube Shorts](https://greasyfork.org/en/scripts/466438)** - Add Skip Keys to Shorts
* [YouTube-Subscriptions-RS](https://github.com/jeb5/YouTube-Subscriptions-RSS) - Export Subscriptions to RSS Feed * [youtube-shorts](https://letsblock.it/filters/youtube-shorts), [shorts-deflector](https://github.com/attituding/shorts-deflector), [Remove YouTube Shorts](https://github.com/raven0230/Remove-Youtube-Shorts), [ublock-hide-yt-shorts](https://github.com/gijsdev/ublock-hide-yt-shorts) or [youtube-shorts-block](https://github.com/doma-itachi/Youtube-shorts-block) - Hide YouTube Shorts
* [YouTube Subscription History](https://xxluke.de/subscription-history/) - Subscription History Tracker * [uBO-bypass-yt](https://drhyperion451.github.io/does-uBO-bypass-yt/) - Check if uBlock Filters are Bypassing YouTube Anti-Adblock
* [FreshTube](https://porjo.github.io/freshtube/) - Display Latest Videos from Subscriptions * [YouTube_Subs_Bot](https://t.me/youtube_subs_bot) - Sub to Channels Without Account
* [YouTube Spammer Purge](https://github.com/ThioJoe/YT-Spammer-Purge) - Delete All YouTube Spam Comments / [Domain List](https://github.com/ThioJoe/YT-Spam-Lists) * [YouTube Spammer Purge](https://github.com/ThioJoe/YT-Spammer-Purge) - Delete All YouTube Spam Comments / [Domain List](https://github.com/ThioJoe/YT-Spam-Lists)
* [Age Restriction Bypass](https://github.com/zerodytrash/Simple-YouTube-Age-Restriction-Bypass) / [2](https://greasyfork.org/en/scripts/423851-simple-youtube-age-restriction-bypass) - Bypass YouTube Age Restrictions * [Age Restriction Bypass](https://github.com/zerodytrash/Simple-YouTube-Age-Restriction-Bypass) / [2](https://greasyfork.org/en/scripts/423851-simple-youtube-age-restriction-bypass) - Bypass YouTube Age Restrictions
* [BlockTube](https://github.com/amitbl/blocktube) - YouTube Content Blocker * [BlockTube](https://github.com/amitbl/blocktube) - YouTube Content Blocker
* [Playboard](https://playboard.co) or [ViewStats](https://www.viewstats.com/) - YouTube Channel Stats * [TubeBuddy](https://www.tubebuddy.com/) - YouTube Channel Tools
* [Playboard](https://playboard.co) - YouTube Channel Stats
* [YouTube Watchmarker](https://github.com/sniklaus/youtube-watchmarker) - Fade Thumbnails of Watched Videos * [YouTube Watchmarker](https://github.com/sniklaus/youtube-watchmarker) - Fade Thumbnails of Watched Videos
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://pastebin.com/Jd1DJW8w)
* [vidIQ](https://chromewebstore.google.com/detail/vidiq-vision-for-youtube/pachckjkecffpdphbpmfolblodfkgbhl) - YouTube Viewership Data * [vidIQ](https://chromewebstore.google.com/detail/vidiq-vision-for-youtube/pachckjkecffpdphbpmfolblodfkgbhl) - YouTube Viewership Data
* [Video Recap](https://videorecap.viewodyssey.com/) - YouTube Year in Review Stats * [Video Recap](https://videorecap.viewodyssey.com/) - YouTube Year in Review Stats
* [Campfire](https://campfire.gg), [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties
* [yt2pod](https://github.com/frou/yt2pod) - Create Podcasts from YouTube Channels * [yt2pod](https://github.com/frou/yt2pod) - Create Podcasts from YouTube Channels
* [YouTube-Subscriptions-RS](https://github.com/jeb5/YouTube-Subscriptions-RSS) - Export Subscriptions to RSS Feed
* [Channel RSS](https://pastebin.com/hqkNuMSx) - Add Individual Channels to RSS Feed
* [SpeechChat](https://speechchat.com/) - Text to Speech Client * [SpeechChat](https://speechchat.com/) - Text to Speech Client
* [AnnotationsRestored](https://github.com/isaackd/AnnotationsRestored) or [YouTube Annotations](https://archive.org/details/youtubeannotations) - Restore YouTube Annotations * [AnnotationsRestored](https://github.com/isaackd/AnnotationsRestored) or [YouTube Annotations](https://archive.org/details/youtubeannotations) - Restore YouTube Annotations
* [YouTube Metadata](https://mattw.io/youtube-metadata/) - YouTube Video Metadata Viewer * [YouTube Metadata](https://mattw.io/youtube-metadata/) - YouTube Video Metadata Viewer
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check YouTube Upload Date * [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check YouTube Upload Date
* [TubeSync](https://github.com/meeb/tubesync) - Sync YouTube Channels / Playlists to a Media Server * [TubeSync](https://github.com/meeb/tubesync) - Sync YouTube Channels / Playlists to a Media Server
* [Playlist Creator for YouTube](https://chromewebstore.google.com/detail/drag-drop-playlist-creato/aklnkkbopjjemjlkffhamaepagbmblbg) or [Playlists at YouTube](https://playlists.at/youtube/) - Playlists Creators * [Playlist Creator for YouTube](https://chromewebstore.google.com/detail/drag-drop-playlist-creato/aklnkkbopjjemjlkffhamaepagbmblbg) or [Playlists at YouTube](https://playlists.at/youtube/) - Playlists Creators
* [Anon Playlists](https://neverducky.github.io/anonymous-youtube-playlists/) - Create Anon Playlists
* [ytcc](https://github.com/woefe/ytcc) or [Multiselect](https://addons.mozilla.org/en-US/firefox/addon/multiselect-for-youtube/), [2](https://chromewebstore.google.com/detail/gpgbiinpmelaihndlegbgfkmnpofgfei) - Playlist Managers * [ytcc](https://github.com/woefe/ytcc) or [Multiselect](https://addons.mozilla.org/en-US/firefox/addon/multiselect-for-youtube/), [2](https://chromewebstore.google.com/detail/gpgbiinpmelaihndlegbgfkmnpofgfei) - Playlist Managers
* [YTPlaylistSorter](https://ytplaylistsorter.carterrj.co.uk/index.php) - Sorts YT Playlists
* [playlist.tools](https://playlist.tools/) - YouTube Playlist Reverser * [playlist.tools](https://playlist.tools/) - YouTube Playlist Reverser
* [Playlist Randomizer](https://playlist-randomizer.com/) - YouTube Playlist Randomizer * [Playlist Randomizer](https://playlist-randomizer.com/) - YouTube Playlist Randomizer
* [YT Playlist Length](https://ytplaylist-len.sharats.dev/) - Playlist Length Checker * [YT Playlist Length](https://ytplaylist-len.sharats.dev/) - Playlist Length Checker
* [YouTube Region Checker](https://polsy.org.uk/stuff/ytrestrict.cgi) - YouTube Region Restrictions Check * [YouTube Region Checker](https://polsy.org.uk/stuff/ytrestrict.cgi) - YouTube Region Restrictions Check
* [YouTube Web Tweaks](https://greasyfork.org/en/scripts/447802) - Speed Up YouTube
* [YouTube CPU Tamer](https://greasyfork.org/en/scripts/431573) or [Unhold YouTube](https://greasyfork.org/en/scripts/457205) - YouTube CPU Optimization
* [FREEZE](https://chromewebstore.google.com/detail/freeze/bejbbhcoefpmeejcnknjfepoocehopii) - Control YouTube via Webcam * [FREEZE](https://chromewebstore.google.com/detail/freeze/bejbbhcoefpmeejcnknjfepoocehopii) - Control YouTube via Webcam
* [RapidTags](https://www.rapidtags.io/) - YouTube Tag Generators * [RapidTags](https://www.rapidtags.io/) - YouTube Tag Generators
* [songs-to-youtube](https://github.com/7x11x13/songs-to-youtube) - Upload Audio to YouTube Automatically * [songs-to-youtube](https://github.com/7x11x13/songs-to-youtube) - Upload Audio to YouTube Automatically
* [YouBit](https://github.com/MeViMo/youbit) - Use YouTube as File Host * [YouBit](https://github.com/MeViMo/youbit) - Use YouTube as File Host
* [ytcropper](https://ytcropper.com/), [yt_clipper](https://github.com/exwm/yt_clipper), [Apps Golem](https://appsgolem.com/en/cut-youtube-video) or [YTCutter.com](https://ytcutter.com/) - Crop YouTube Videos / Create Clips * [Video Speed Controller](https://github.com/igrigorik/videospeed) or [TimerHooker](https://timer.palerock.cn/en/) - Control Speed of YouTube Videos
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
* [ytcropper](https://ytcropper.com/), [yt_clipper](https://github.com/exwm/yt_clipper) or [YTCutter.com](https://ytcutter.com/) - Crop YouTube Videos / Create Clips
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate YouTube Videos
* [Vid Repeat](https://vidrepeat.com/) - Loop YouTube Videos
* [TwitchTheater](https://twitchtheater.tv/), [VidGrid](https://vidgrid.tk.gg/), [YouTube Multiplier](https://www.youtubemultiplier.com/) or [ViewSync](https://viewsync.net/) - Watch Multiple YouTube Videos
* [Anilyzer](https://anilyzer.com/) - Watch YouTube Videos in Slow Motion / Frame by Frame
* [YTStamps](https://ytstamps.netlify.app/) - Create Custom Start / End Times * [YTStamps](https://ytstamps.netlify.app/) - Create Custom Start / End Times
* [Solidpoint](https://solidpoint.ai/), [Glasp](https://glasp.co/youtube-summary), [Glarity](https://glarity.app/), [Quickvid](https://quickvid.vercel.app/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/)[VideoHighlight](https://videohighlight.com/), [Clipnote](https://clipnote.ai/) or [Summarize](https://summarize.tech/)- Summarize YouTube Videos * [Solidpoint](https://solidpoint.ai/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/) or [VideoHighlight](https://videohighlight.com/) - Summarize YouTube Videos
* [Stepify](https://stepify.tech/) - Get Step-By-Step Tutorial of YT Video
* [Recover My Video](https://www.recovermy.video/) - Recover Titles of Deleted / Private YouTube Videos * [Recover My Video](https://www.recovermy.video/) - Recover Titles of Deleted / Private YouTube Videos
* [Filmot Title Restorer](https://greasyfork.org/en/scripts/430202-filmot-title-restorer) - Restore Deleted YouTube Video Titles in Playlists * [Filmot Title Restorer](https://greasyfork.org/en/scripts/430202-filmot-title-restorer) - Restore Deleted YouTube Video Titles in Playlists
* [Kament](https://kament.io/) - Add Comments on Comment Disabled Videos * [Kament](https://kament.io/) - Add Comments on Comment Disabled Videos
* [Loadtup](https://loadtup.com/), [FrogBase](https://github.com/hayabhay/frogbase) or [Whisper](https://huggingface.co/spaces/BatuhanYilmaz/Whisper-Auto-Subtitled-Video-Generator) - YouTube Video Transcribers
* [YT Sub Downloader](https://greasyfork.org/en/scripts/5368) or [YouTube_subtitle_downloader](https://t.me/youtube_subtitle_downloader_bot) - Download Subs from YouTube Videos
* [amara](https://amara.org/en/) or [SubtitlesForYoutube](https://github.com/yashagarwal1411/SubtitlesForYoutube) - Add Subs to YouTube Videos / [Edge](https://microsoftedge.microsoft.com/addons/detail/subtitles-for-youtube/gfjcoflghpdkddjnpegonjhnbngeocfi)
* [YouTube Subtitle Position](https://addons.mozilla.org/en-US/firefox/addon/youtube-subtitle-position/) - Change Position of YouTube Subtitles
* [YTSubConverter](https://github.com/arcusmaximus/YTSubConverter) - Styled YouTube Subtitles
* [ChatReplay](https://chatreplay.stream/) - YouTube Live Stream Chat Replay * [ChatReplay](https://chatreplay.stream/) - YouTube Live Stream Chat Replay
* [LiveTL](https://kentonishi.com/LiveTL/) - YouTube Live Stream Translator * [LiveTL](https://kentonishi.com/LiveTL/) - YouTube Live Stream Translator
* [YouTubeLiveChatFlusher](https://github.com/ys-j/YoutubeLiveChatFlusher) - YouTube Live Bullet Chatting (Danmaku) * [YouTubeLiveChatFlusher](https://github.com/ys-j/YoutubeLiveChatFlusher) - YouTube Live Bullet Chatting (Danmaku)
* [Fast Chat](https://greasyfork.org/en/scripts/469878) - Chat Optimization Extension
* [YTArchive](https://github.com/Kethsar/ytarchive) - YouTube Livestream Recorder * [YTArchive](https://github.com/Kethsar/ytarchive) - YouTube Livestream Recorder
* [YouTube Livestream Theatre](https://gitlab.com/-/snippets/2099898) - Twitch-style Theater Mode for YouTube Live * [YouTube Livestream Theatre](https://gitlab.com/-/snippets/2099898) - Twitch-style Theater Mode for YouTube Live
* [fadblock](https://github.com/0x48piraj/fadblock) or [Disable YT Video Ads](https://greasyfork.org/en/scripts/32626) - YouTube Adblockers
***
## ▷ Players / Frontends
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
* ⭐ **[Poke](https://poketube.fun/)** - YouTube Frontend / [Discord](https://discord.gg/Kqdn8CHacP)
* ⭐ **[FreeTube](https://freetubeapp.io/)** - YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends
* ⭐ **Invidious Tools** - [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
* ⭐ **[PKGA](https://greasyfork.org/en/scripts/442089)** or [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Cinema Mode
* ⭐ **[Fast Forward YouTube Shorts](https://greasyfork.org/en/scripts/466438)** - Add Skip Keys to Shorts
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
* [Campfire](https://campfire.gg), [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties
* [TwitchTheater](https://twitchtheater.tv/), [VidGrid](https://vidgrid.tk.gg/), [YouTube Multiplier](https://www.youtubemultiplier.com/) or [ViewSync](https://viewsync.net/) - Watch Multiple YouTube Videos
* [CloudTube](https://tube.cadence.moe/) - YouTube Frontend
* [Youtube-Clone-KMP](https://github.com/KhubaibKhan4/Youtube-Clone-KMP) - YouTube Frontend
* [ViewTube](https://viewtube.wiki/) - YouTube Frontend
* [Piped](https://github.com/TeamPiped/Piped) / [2](https://piped.kavin.rocks/) / [3](https://piped-material.১.net/) - YouTube Frontend
* [PSTube](https://github.com/prateekmedia/pstube) - YouTube Frontend
* [Youtube-local](https://github.com/user234683/youtube-local) or [yt-local](https://git.sr.ht/~heckyel/yt-local) - YouTube Frontend
* [YouT-ube](https://www.yout-ube.com/) - YouTube Frontend
* [yt.d0.cx](https://yt.d0.cx/) - YouTube Frontend
* [Ytfzf](https://github.com/pystardust/ytfzf) or [YewTube](https://github.com/mps-youtube/yewtube) - Terminal YouTube Players
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://pastebin.com/Jd1DJW8w)
* [Looptube](https://www.looptube.xyz/) - Loop YouTube Videos / Segments
* [Video Speed Controller](https://github.com/igrigorik/videospeed), [YouTube Web Tweaks](https://greasyfork.org/en/scripts/447802) or [TimerHooker](https://timer.palerock.cn/en/) - Control Speed of YouTube Videos
* [Anilyzer](https://anilyzer.com/) - Watch YouTube Videos in Slow Motion / Frame by Frame
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
* [YourCodecs](https://github.com/undecV/YourCodecs) - Enable / Disable Player Codecs
* [YT CPU Tamer](https://greasyfork.org/en/scripts/431573), [YT JS Tamer](https://greasyfork.org/en/scripts/473972) or [Unhold YouTube](https://greasyfork.org/en/scripts/457205) - YouTube CPU Optimization
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate YouTube Videos
* [StretchSite](https://www.stretch.site/) or [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Custom YouTube Aspect Ratio
* [YouTube: Audio Only](https://greasyfork.org/en/scripts/484611) or [Audio Only YouTube](https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog) - Audio Only YouTube
*** ***
## ▷ YouTube Downloaders ## ▷ YouTube Downloaders
* 🌐 **[YT-DL GUI Index](https://www.reddit.com/r/youtubedl/wiki/info-guis)** - List of YT-DL GUIs * 🌐 **[YouTube-DL Scripts](https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection)** - YouTube Download Scripts Index
* ↪️ **[Multi-Site Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)** * ↪️ **[Multi-Site Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
* ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** - YouTube Downloader / [Discord](https://discord.gg/H5MNcFW63r) / [Commands](https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection) * ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** or [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - YouTube Downloader / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [2](https://github.com/StefanLobbenmeier/youtube-dl-gui) / [GUI Index](https://www.reddit.com/r/youtubedl/wiki/info-guis)
* ⭐ **[Stacher](https://stacher.io/)** - YT-DL GUI * [YouTube Qualities Size](https://greasyfork.org/en/scripts/404953-youtube-qualities-size) - Show YouTube File Sizes
* ⭐ **[Y232](https://y232.live/)** - YT-DL WebUI * [totalsize](https://pypi.org/project/totalsize/) - Calculate Size of All Videos in a Playlist
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) - YT-DL GUI / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer)
* [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - YT-DL GUI
* [Parabolic](https://github.com/NickvisionApps/Parabolic) - YT-DL GUI
* [Gropple](https://github.com/tardisx/gropple) - YT-DL GUI
* [Tartube](https://tartube.sourceforge.io/) - YT-DL GUI
* [media-downloader](https://github.com/mhogomchungu/media-downloader) - YT-DL GUI
* [ezytdl](https://github.com/sylviiu/ezytdl) - YT-DL GUI
* [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface) - YT-DL GUI
* [Vividl](https://github.com/Bluegrams/Vividl) - YT-DL GUI
* [youtube-dl-gui](https://github.com/oleksis/youtube-dl-gui), [2](https://github.com/StefanLobbenmeier/youtube-dl-gui) - YT-DL GUI
* [Videomass](https://jeanslack.github.io/Videomass/) - YT-DL / FFmpeg GUI
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - YT-DL GUI
* [ytDownloader](https://ytdn.netlify.app/) - YT-DL GUI
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - WPF YT-DL GUI
* [metube](https://github.com/alexta69/metube) or [yt-dlp-web-ui](https://github.com/marcopeocchi/yt-dlp-web-ui) - Self-Hosted YT-DL WebUIs
* [Poke](https://poketube.fun/download) - YouTube Downloader / [Discord](https://discord.gg/Kqdn8CHacP)
* [YoutubeDL-Material](https://github.com/Tzahi12345/YoutubeDL-Material) - YouTube Downloader * [YoutubeDL-Material](https://github.com/Tzahi12345/YoutubeDL-Material) - YouTube Downloader
* [YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader) - YouTube Downloader * [YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader) - YouTube Downloader
* [YouTubePlaylist](https://youtubeplaylist.cc/) - Playlist Downloader * [YouTubePlaylist](https://youtubeplaylist.cc/) - Playlist Downloader
* [YouTube Qualities Size](https://greasyfork.org/en/scripts/404953-youtube-qualities-size) - Show YouTube File Sizes * [metube](https://github.com/alexta69/metube), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface) or [yt-dlp-web-ui](https://github.com/marcopeocchi/yt-dlp-web-ui) - YT-DL Web UIs
* [totalsize](https://pypi.org/project/totalsize/) - Calculate Size of All Videos in a Playlist * [Gropple](https://github.com/tardisx/gropple), [Tartube](https://tartube.sourceforge.io/), [media-downloader](https://github.com/mhogomchungu/media-downloader), [stacher](https://stacher.io/) or [youtube-dl-gui](https://github.com/oleksis/youtube-dl-gui) - YT-DL GUIs
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - WPF YT-DL GUI
* [Videomass](https://jeanslack.github.io/Videomass/) - YT-DL / FFmpeg GUI
* [YouTube Thumbnail Grabber](https://boingboing.net/features/getthumbs), [YTI](https://youtubethumbnailimage.com/), [thumbnailsave](https://thumbnailsave.com/), [thumbnail-download](https://thumbnail-download.com/) or [Get YT Thumbnail](https://www.get-youtube-thumbnail.com/) - Download YouTube Thumbnails * [YouTube Thumbnail Grabber](https://boingboing.net/features/getthumbs), [YTI](https://youtubethumbnailimage.com/), [thumbnailsave](https://thumbnailsave.com/), [thumbnail-download](https://thumbnail-download.com/) or [Get YT Thumbnail](https://www.get-youtube-thumbnail.com/) - Download YouTube Thumbnails
* [YouTube Comment Downloader](https://github.com/egbertbouman/youtube-comment-downloader) - YouTube Comment Download Script * [YouTube Comment Downloader](https://github.com/egbertbouman/youtube-comment-downloader) - YouTube Comment Download Script
* [DL YouTube Videos without Extensions](https://onehack.us/t/how-to-download-youtube-videos-without-external-tools-or-extensions/) * [DL YouTube Videos without Extensions](https://onehack.us/t/how-to-download-youtube-videos-without-external-tools-or-extensions/)
*** ***
## ▷ YouTube Frontends
* ⭐ **[Invidious](https://invidious.io/)** / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [Alt Frontend](https://github.com/bocchilorenzo/invuedious) / [TUI](https://github.com/darkhz/invidtui) or **[CloudTube](https://tube.cadence.moe/)** - FOSS YouTube Frontends
* ⭐ **[FreeTube](https://freetubeapp.io/)** - Privacy-Based YouTube Client / [GitHub](https://github.com/FreeTubeApp/FreeTube)
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
* [ViewTube](https://github.com/ViewTube/viewtube), [Piped](https://github.com/TeamPiped/Piped) / [2](https://piped.kavin.rocks/) / [3](https://piped-material.১.net/), [PSTube](https://github.com/prateekmedia/pstube), [Youtube-local](https://github.com/user234683/youtube-local), [YouT-ube](https://www.yout-ube.com/), [yt.d0.cx](https://yt.d0.cx/) or [PokeTube](https://github.com/ashley0143/poketube) - Alternative YouTube Frontends
***
## ▷ YouTube Customization ## ▷ YouTube Customization
* ⭐ **[Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube)**, [ImprovedTube](https://improvedtube.com/), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/) or [Magic Actions](https://www.chromeactions.com/) - YouTube Enhancement Extensions * ⭐ **[Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube)**, [ImprovedTube](https://improvedtube.com/), [Nova YouTube](https://greasyfork.org/en/scripts/433360), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/) or [Magic Actions](https://www.chromeactions.com/) - YouTube Enhancement Extensions
* ⭐ **[ReturnYouTubeDislikes](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/) / [Discord](https://discord.com/invite/mYnESY4Md5) * ⭐ **[ReturnYouTubeDislikes](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/) / [Discord](https://discord.com/invite/mYnESY4Md5)
* ⭐ **[Unhook](https://unhook.app/)**, [Untrap](https://untrap.app/), [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) or [YourTube](https://github.com/rahgurung/YourTube) - Distraction-Free YouTube * ⭐ **[Unhook](https://unhook.app/)**, [Untrap](https://untrap.app/), [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) or [YourTube](https://github.com/rahgurung/YourTube) - Distraction-Free YouTube
* ⭐ **[DeArrow](https://dearrow.ajay.app/)** or [Clickbait Remover](https://github.com/pietervanheijningen/clickbait-remover-for-youtube) - Reduce Sensationalism / Clickbait * ⭐ **[DeArrow](https://dearrow.ajay.app/)** or [Clickbait Remover](https://github.com/pietervanheijningen/clickbait-remover-for-youtube) - Reduce Sensationalism / Clickbait
* [Thumbnail Rating Bar](https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube) - Display Like / Dislike Ratio on Thumbnails * [Thumbnail Rating Bar](https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube) - Display Like / Dislike Ratio on Thumbnails
* [youtube-like-dislike-shortcut](https://github.com/avi12/youtube-like-dislike-shortcut) - Video Like / Dislike Hotkeys * [youtube-like-dislike-shortcut](https://github.com/avi12/youtube-like-dislike-shortcut) - Video Like / Dislike Hotkeys
* [YT Not Interested Button on Hover](https://greasyfork.org/en/scripts/396936-yt-not-interested-in-one-click) - Easily Display Not Interested Button * [YT Not Interested Button on Hover](https://greasyfork.org/en/scripts/396936-yt-not-interested-in-one-click) - Easily Display Not Interested Button
* [YouTube Fixes](https://greasyfork.org/en/scripts/405614) - YouTube Tweaks * [Focused YouTube](https://github.com/makaroni4/focused_youtube) - Minimalist YouTube
* [Focused YouTube](https://github.com/makaroni4/focused_youtube), [yt-neuter](https://github.com/mchangrh/yt-neuter) or [GoodTube](https://github.com/goodtube4u/goodtube) - Minimalist YouTube * [YouTube Redux](https://github.com/omnidevZero/YouTubeRedux) - Restore Classic YouTube Layout
* [YouTube Redux](https://github.com/omnidevZero/YouTubeRedux), [VORAPIS](https://vorapis.pages.dev/) / [Discord](https://vorapis.pages.dev/#/join_community) / [Features](https://greasyfork.org/en/scripts/485622) or [Cosmic Cat](https://github.com/cosmic-cat-yt/Cosmic-Cat) - Restore Classic YouTube Layout
* [/r/OldYouTubeLayout](https://www.reddit.com/r/oldyoutubelayout/) - Classic YouTube Layout Subreddit
* [Disable Rounded Buttons](https://greasyfork.org/en/scripts/453802) - Disable Rounded YouTube Buttons * [Disable Rounded Buttons](https://greasyfork.org/en/scripts/453802) - Disable Rounded YouTube Buttons
* [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Cinema Mode
* [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Fix YouTube Aspect Ratio
* [YouTube: Audio Only](https://greasyfork.org/en/scripts/484611) or [Audio Only YouTube](https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog) - Audio Only YouTube
* [Feed Remover](https://github.com/kwkr/feed-remover) - Remove YouTube Homepage Feed * [Feed Remover](https://github.com/kwkr/feed-remover) - Remove YouTube Homepage Feed
* [FreshTube](https://porjo.github.io/freshtube/) - Display Latest Videos from Subscriptions
* [Upvote Anywhere](https://github.com/z0ccc/comet) - Replace YouTube Comments with Reddit Comments * [Upvote Anywhere](https://github.com/z0ccc/comet) - Replace YouTube Comments with Reddit Comments
* [Timestamped YouTube Comments](https://chromewebstore.google.com/detail/timestamped-youtube-comme/gnpppldhfbbagiaalkddddajadhlgofm) - View Timestamped Comments * [Timestamped YouTube Comments](https://chromewebstore.google.com/detail/timestamped-youtube-comme/gnpppldhfbbagiaalkddddajadhlgofm) - View Timestamped Comments
* [TabView YouTube](https://greasyfork.org/en/scripts/428651) - View Comments / Info in Tab View * [TabView YouTube](https://greasyfork.org/en/scripts/428651) - View Comments / Info in Tab View
* [Super Fast Chat](https://greasyfork.org/en/scripts/469878) - YouTube Chat Performance Enhancer * [Super Fast Chat](https://greasyfork.org/en/scripts/469878) - YouTube Chat Performance Enhancer
* [Ytfzf](https://github.com/pystardust/ytfzf) or [YewTube](https://github.com/mps-youtube/yewtube) - Terminal YouTube Players
*** ***
@ -482,16 +443,15 @@
* ⭐ **[Favoree](https://www.favoree.io/)** - Search / Discover YouTube Channels * ⭐ **[Favoree](https://www.favoree.io/)** - Search / Discover YouTube Channels
* ⭐ **[YouTube Advanced Search](https://playlists.at/youtube/search/)** - Search Engine * ⭐ **[YouTube Advanced Search](https://playlists.at/youtube/search/)** - Search Engine
* ⭐ **[Filmot](https://filmot.com/)**, [CTRL-F-VIDEO](https://github.com/Evan-Wildenhain/CTRL-F-VIDEO) or [ytks](https://ytks.app/) - Search within YouTube Transcripts / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/youtube-captions-search/) / [Chrome](https://chromewebstore.google.com/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg) * ⭐ **[Filmot](https://filmot.com/)** or [ytks](https://ytks.app/) - Search within YouTube Transcripts / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/youtube-captions-search/) / [Chrome](https://chromewebstore.google.com/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg)
* [YouTube Search Fixer Suite](https://addons.mozilla.org/en-US/firefox/addon/youtube-suite-search-fixer/) - Fix YouTube Search / Declutter Homepage * [YouTube Search Fixer Suite](https://addons.mozilla.org/en-US/firefox/addon/youtube-suite-search-fixer/) - Fix YouTube Search / Declutter Homepage
* [YouTube Search Grid View](https://greasyfork.org/en/scripts/481422-youtube-search-results-in-grid-view) - View Results in Grid
* [Channel Crawler](https://channelcrawler.com/eng) or [YT-FTS](https://github.com/NotJoeMartinez/yt-fts) - Channel Search Tools * [Channel Crawler](https://channelcrawler.com/eng) or [YT-FTS](https://github.com/NotJoeMartinez/yt-fts) - Channel Search Tools
* [Comment Viewer](https://commentviewer.com/), [Hadzy](https://hadzy.com/), [YCS](https://chromewebstore.google.com/detail/ycs-youtube-comment-searc/pmfhcilikeembgbiadjiojgfgcfbcoaaen) or [YCF](https://ytcomment.kmcat.uk/) - YouTube Comment Search * [Comment Viewer](https://commentviewer.com/), [Hadzy](https://hadzy.com/), [YCS](https://chromewebstore.google.com/detail/ycs-youtube-comment-searc/pmfhcilikeembgbiadjiojgfgcfbcoaaen) or [YCF](https://ytcomment.kmcat.uk/) - YouTube Comment Search
* [Project Random](https://0xbeef.co.uk/random) or [petittube](https://petittube.com/) - Find YouTube Videos with >100 Views * [Petit tube](https://www.petittube.com/) - Find YouTube Videos with >100 Views
* [YouTube-Geofind](https://mattw.io/youtube-geofind/location) - Find Geotagged Videos * [YouTube-Geofind](https://mattw.io/youtube-geofind/location) - Find Geotagged Videos
* [QuiteAPlaylist](https://quiteaplaylist.com/) - Find Deleted YouTube Videos * [QuiteAPlaylist](https://quiteaplaylist.com/) - Find Deleted YouTube Videos
* [Unlisted Videos](https://unlistedvideos.com/) - Watch / Submit Unlisted YouTube Videos * [Unlisted Videos](https://unlistedvideos.com/) - Watch / Submit Unlisted YouTube Videos
* [Tubeup](https://github.com/bibanon/tubeup), [Preservetube](https://preservetube.com/) or [yark](https://github.com/Owez/yark) - Archive YouTube Videos and Playlists * [Tubeup](https://github.com/bibanon/tubeup) or [yark](https://github.com/Owez/yark) - Archive YouTube Videos and Playlists
* [TubeArchivist](https://www.tubearchivist.com/) - Self-hosted YouTube Media Server / [GitHub](https://github.com/tubearchivist/tubearchivist) * [TubeArchivist](https://www.tubearchivist.com/) - Self-hosted YouTube Media Server / [GitHub](https://github.com/tubearchivist/tubearchivist)
* [Hobune](https://hobune.stream/), [FindYouTubeVideo](https://findyoutubevideo.thetechrobo.ca/) or [youtubecrawl](https://archive.org/details/youtubecrawl) - YouTube Video Archives * [Hobune](https://hobune.stream/), [FindYouTubeVideo](https://findyoutubevideo.thetechrobo.ca/) or [youtubecrawl](https://archive.org/details/youtubecrawl) - YouTube Video Archives
@ -501,38 +461,34 @@
* 🌐 **[Twitch Database](https://twitchdatabase.com/)** or [SullyGnome](https://sullygnome.com/) - Twitch Tool Indexes * 🌐 **[Twitch Database](https://twitchdatabase.com/)** or [SullyGnome](https://sullygnome.com/) - Twitch Tool Indexes
* 🌐 **[Twitch Extensions](https://dashboard.twitch.tv/extensions/categories/43f48606-8b91-4149-94e6-02def012c79f)** - Twitch Extensions Index * 🌐 **[Twitch Extensions](https://dashboard.twitch.tv/extensions/categories/43f48606-8b91-4149-94e6-02def012c79f)** - Twitch Extensions Index
* ⭐ **[7TV](https://7tv.app/)**, [BetterTTV](https://betterttv.com/) or [FrankerFacez](https://www.frankerfacez.com/) - Twitch Enhancement Extensions * ⭐ **[BetterTTV](https://betterttv.com/)** or [FrankerFacez](https://www.frankerfacez.com/) - Twitch Enhancement Extension
* ⭐ **[TwitchNoSub](https://github.com/besuper/TwitchNoSub)** - Watch Sub Only Twitch Videos * ⭐ **[TwitchNoSub](https://github.com/besuper/TwitchNoSub)** - Watch Sub Only Twitch Videos
* ⭐ **[Stream Scheme](https://www.streamscheme.com/)** - Livestreaming Guides / Resources * ⭐ **[Stream Scheme](https://www.streamscheme.com/)** - Livestreaming Guides / Resources
* [Gumbo](https://github.com/seldszar/gumbo) or [Twitch-Live](https://github.com/yungsamd17/Twitch-Live) - Twitch Stream Trackers * [Gumbo](https://github.com/seldszar/gumbo) - Twitch Stream Tracker
* [HypeTrigger](https://hypetrigger.io/) - Automatically Create Clips * [HypeTrigger](https://hypetrigger.io/) - Automatically Create Clips
* [Twitch Clip Search](https://www.twitch-clip-search.com/) - Search for Clips * [VODarchive](https://vodarchive.com/) - Twitch VOD Archive
* [VODarchive](https://vodarchive.com/) or [TwitchArchive](https://twitcharchive.com/)- Twitch Video Archives
* [Twitch Previews](https://github.com/MarkM-dev/Previews-client) or [Previews](https://previews-app.com/) - Twitch Video Previews * [Twitch Previews](https://github.com/MarkM-dev/Previews-client) or [Previews](https://previews-app.com/) - Twitch Video Previews
* [Unwanted Twitch](https://github.com/kwaschny/unwanted-twitch) - Hide Twitch Categories / Channels * [Unwanted Twitch](https://github.com/kwaschny/unwanted-twitch) - Hide Twitch Categories / Channels
* [vTwitch](https://vtwitch.com/) - Show Chat Below Player * [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Fix Twitch Aspect Ratio
* [Featured.chat](https://featured.chat/) - Twitch Chat Manager
* [JChat](https://www.giambaj.it/twitch/jchat/) - Show Twitch Chat on Screen * [JChat](https://www.giambaj.it/twitch/jchat/) - Show Twitch Chat on Screen
* [Hide-Twitch-Chat-Users](https://github.com/mikeyaworski/Hide-Twitch-Chat-Users) - Hide Twitch Chat Users * [Hide-Twitch-Chat-Users](https://github.com/mikeyaworski/Hide-Twitch-Chat-Users) - Hide Twitch Chat Users
* [TwitchChatDanmaku](https://github.com/wheatup/TwitchChatDanmaku), [Transparent-Twitch-Chat](https://github.com/chylex/Transparent-Twitch-Chat) or [Transparent Twitch Chat Overlay](https://github.com/baffler/Transparent-Twitch-Chat-Overlay) - Transparent Twitch Chat * [Transparent-Twitch-Chat](https://github.com/chylex/Transparent-Twitch-Chat) or [Transparent Twitch Chat Overlay](https://github.com/baffler/Transparent-Twitch-Chat-Overlay) - Transparent Twitch Chat
* [Screenshot Twitch](https://github.com/eramdam/userscripts/blob/main/Screenshot%20Twitch.user.js) - Add Screenshot Button to Twitch * [7TV](https://7tv.app/) - Twitch Emotes Extension
* [Auto Twitch Drops](https://chromewebstore.google.com/detail/automatic-twitch-drops-mo/kfhgpagdjjoieckminnmigmpeclkdmjm) - Twitch Drop Notifications * [Auto Twitch Drops](https://chromewebstore.google.com/detail/automatic-twitch-drops-mo/kfhgpagdjjoieckminnmigmpeclkdmjm) - Twitch Drop Notifications
* [Auto-Claim-Twitch-Channel-Points](https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points) or [TTVDropBot](https://github.com/Giingu/Enhanced-TTVDropBot) - Auto Claim Twitch Points * [Auto-Claim-Twitch-Channel-Points](https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points) or [TTVDropBot](https://github.com/Giingu/Enhanced-TTVDropBot) - Auto Claim Twitch Points
* [Twitch Drops Miner](https://github.com/Windows200000/TwitchDropsMiner-updated) - Auto Claim Twitch Drops * [TwitchRSS](https://twitchrss.appspot.com/) - Twitch RSS Generator
* [TwitchRSS](https://twitchrss.appspot.com/) or [twitchrss](https://twitchrss.com/) - Twitch RSS Generators
* [TTV Favorites](https://github.com/jc9108/ttv-favorites) - Add Channel Favorites * [TTV Favorites](https://github.com/jc9108/ttv-favorites) - Add Channel Favorites
* [Streamlink Twitch GUI](https://github.com/streamlink/streamlink-twitch-gui) - Twitch Browser for Streamlink * [Streamlink Twitch GUI](https://github.com/streamlink/streamlink-twitch-gui) - Twitch Browser for Streamlink
* [get stream](https://pwn.sh/tools/getstream.html) - Extract Twitch URLs * [get stream](https://pwn.sh/tools/getstream.html) - Extract Twitch URLs
* [lurker.tv](https://www.lurker.tv/) - Discord Server Based Twitch Stream Recs * [lurker.tv](https://www.lurker.tv/) - Discord Server Based Twitch Stream Recs
* [nobody.live](https://nobody.live/) or [Twitch Roulette](https://twitchroulette.net/) - Random Stream Roulette
* [Twitch TV OBS Subtitles](https://github.com/stephenlb/twitch-tv-obs-subtitles/) - Add Subtitles to Twitch Stream * [Twitch TV OBS Subtitles](https://github.com/stephenlb/twitch-tv-obs-subtitles/) - Add Subtitles to Twitch Stream
* [StreamLadder](https://streamladder.com/) - Social Media Templates for Twitch Clips * [StreamLadder](https://streamladder.com/) - Social Media Templates for Twitch Clips
* [TwitchLeak](https://twitchleak.netlify.app/) - Twitch Top Earners Table * [TwitchLeak](https://twitchleak.netlify.app/) - Twitch Top Earners Table
* [TwitchQuotes](https://www.twitchquotes.com/) - Twitch Copypastas * [TwitchQuotes](https://www.twitchquotes.com/) - Twitch Copypastas
* [TwitchEmotes](https://twitchemotes.com/) - Global Twitch Emotes
* [ChatGuessr](https://chatguessr.com/) - GeoGuessr for Twitch
* [TwitchInsights](https://twitchinsights.net/), [StreamCharts](https://streamscharts.com/) or [TwitchTracker](https://twitchtracker.com/) - Twitch Stats * [TwitchInsights](https://twitchinsights.net/), [StreamCharts](https://streamscharts.com/) or [TwitchTracker](https://twitchtracker.com/) - Twitch Stats
* [Trovo](https://trovo.live/), [Kick](https://kick.com/), [dlive](https://dlive.tv/), [Caffeine](https://www.caffeine.tv/), [Lightspeed](https://lightspeed.tv/) or [Theta](https://www.theta.tv/) - Twitch Alternatives * [Trovo](https://trovo.live/), [Glimesh](https://glimesh.tv/), [Kick](https://kick.com/), [dlive](https://dlive.tv/), [Caffeine](https://www.caffeine.tv/), [Lightspeed](https://lightspeed.tv/) or [Theta](https://www.theta.tv/) - Twitch Alternatives
* [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Fix Twitch Aspect Ratio
* [Twitch Status](https://twitchstatus.com/) - Twitch Status Tracking
*** ***
@ -543,9 +499,8 @@
* [SpeechChat](https://speechchat.com/) - Twitch Text to Speech Client * [SpeechChat](https://speechchat.com/) - Twitch Text to Speech Client
* [Twitch Lite](https://thavixt.github.io/twitch-lite/) - Lightweight Twitch Webplayer * [Twitch Lite](https://thavixt.github.io/twitch-lite/) - Lightweight Twitch Webplayer
* [Walrus](https://joinwalrus.tv/) - Make Twitch Watch Parties * [Walrus](https://joinwalrus.tv/) - Make Twitch Watch Parties
* [MuliTwitch.tv](https://multitwitch.tv/), [MultiTwitch.co](https://multitwitch.co/), [Twitch3D](https://hjjg200.github.io/twitch3d/), [Twitch Replay](https://www.twitch-replay.com/), [Multi](https://multi.raredrop.co/), [MultiStre.am](https://multistre.am/), [MultiStreamer](https://multistreamer.lucidnet.app/) or [TwitchTheater](https://twitchtheater.tv/) - Twitch Mult-Stream * [MuliTwitch.tv](https://multitwitch.tv/), [MultiTwitch.co](https://multitwitch.co/), [Twitch3D](https://hjjg200.github.io/twitch3d/), [Twitch Replay](https://www.twitch-replay.com/), [Multi](https://multi.raredrop.co/), [MultiStre.am](https://multistre.am/) or [TwitchTheater](https://twitchtheater.tv/) - Sync Twitch Videos w/ Friends / Mult-Stream
* [Twitchls](https://twitchls.com/) - HTML5 Twitch Stream Player * [Twitchls](https://twitchls.com/) - HTML5 Twitch Stream Player
* [nobody.live](https://nobody.live/) or [Twitch Roulette](https://twitchroulette.net/) - Random Stream Roulette
* [Alternate Player for Twitch.tv](https://pastebin.com/Z7NWxSfA) - Alternative Twitch Player * [Alternate Player for Twitch.tv](https://pastebin.com/Z7NWxSfA) - Alternative Twitch Player
* [Twitch Lurker](https://github.com/mikeyaworski/Twitch-Lurker) - Twitch Stream Auto-Open * [Twitch Lurker](https://github.com/mikeyaworski/Twitch-Lurker) - Twitch Stream Auto-Open
@ -554,12 +509,12 @@
## ▷ Twitch Adblockers ## ▷ Twitch Adblockers
* 🌐 **[TwitchAdSolutions](https://github.com/pixeltris/TwitchAdSolutions)** - Solutions / Scripts for Blocking Twitch Ads * 🌐 **[TwitchAdSolutions](https://github.com/pixeltris/TwitchAdSolutions)** - Solutions / Scripts for Blocking Twitch Ads
* ⭐ **[PurpleAdblock](https://addons.mozilla.org/en-US/firefox/addon/purpleadblock/)** - Twitch Adblocker * ⭐ **[Purple AdBlock](https://addons.mozilla.org/en-US/firefox/addon/purpleadblock/)** - Twitch Adblocker
* ⭐ **[TTV LOL PRO](https://github.com/younesaassila/ttv-lol-pro)** - Twitch Adblocker / [Proxies](https://wiki.cdn-perfprod.com/v/v1/must-read/proxies) * ⭐ **[TTV LOL](https://ttv.lol/)** / [Pro](https://github.com/younesaassila/ttv-lol-pro) / [Video Guide](https://rentry.co/tavy3) - Twitch Adblocker
* [VideoAdBlockForTwitch](https://github.com/cleanlock/VideoAdBlockForTwitch) - Twitch Adblocker * [VideoAdBlockForTwitch](https://github.com/cleanlock/VideoAdBlockForTwitch) - Twitch Adblocker
* [luminous-ttv](https://github.com/AlyoshaVasilieva/luminous-ttv) - Twitch Adblocker * [luminous-ttv](https://github.com/AlyoshaVasilieva/luminous-ttv) - Twitch Adblocker
* [Adblocker for Twitch](https://microsoftedge.microsoft.com/addons/detail/adblocker-for-twitch%E2%84%A2/glgpmlmjlaljaddimbgekaepkgbojjdn) - Edge Twitch Adblocker * [Adblocker for Twitch](https://microsoftedge.microsoft.com/addons/detail/adblocker-for-twitch%E2%84%A2/glgpmlmjlaljaddimbgekaepkgbojjdn) - Edge Twitch Adblocker
* [PurpleTV](https://purpletv.aeong.win/) / [Alpha](https://t.me/pubTwAlpha) - Ad Free Twitch APK * [Xtra](https://github.com/crackededed/Xtra) or [PurpleTV](https://purpletv.aeong.one/) - Ad Free Twitch APKs
*** ***
@ -575,47 +530,38 @@
# ► Twitter Tools # ► Twitter Tools
* ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers * ⭐ **[Trends24](https://trends24.in/)** or [Hashtagify](https://hashtagify.me/) - Trending Hashtags Trackers
* ⭐ **[/r/Twitter](https://reddit.com/r/Twitter)** - Twitter Subreddit * ⭐ **[/r/Twitter](https://reddit.com/r/Twitter)** - Twitter Subreddit
* [TumblThree](https://github.com/TumblThreeApp/TumblThree) or [Thread Safe](https://github.com/dkaslovsky/thread-safe) - Twitter / Tumblr Backup Tools
* [Typefully](https://typefully.com/) - Schedule Tweets * [Typefully](https://typefully.com/) - Schedule Tweets
* [Chirr App](https://getchirrapp.com/) - Turn Articles into Twitter Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg) * [Chirr App](https://getchirrapp.com/) - Turn Articles into Twitter Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg)
* [OneMillionTweetMap](https://onemilliontweetmap.com/) - Real-Time Tweet Map * [OneMillionTweetMap](https://onemilliontweetmap.com/) - Real-Time Tweet Map
* [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers * [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers * [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
* [Scoutzen](https://www.scoutzen.com/twitter-lists/search) - Search Twitter Use Lists * [TwitterMediaHarvest](https://github.com/EltonChou/TwitterMediaHarvest) - Twitter Media Downloader
* [Hoaxy](https://hoaxy.osome.iu.edu/) - Twitter Info Spread Data * [GetVideoBot](https://twitsave.com/), [DownloadTwitterVideo](https://www.downloadtwittervideo.com/), [TwitterVid](https://twittervid.com/) or [sssTwitter](https://ssstwitter.com/) - Download Twitter Videos
* [tinfoleak](https://tinfoleak.com/) - View Your Geosocial Footprint
* [Unfollow All](https://chromewebstore.google.com/detail/twitter-unfollow-all/mgehkbclkipppdjiemnhmnledicalkld) - Twitter Unfollower
* [Fix Twitter Links](https://openuserjs.org/scripts/lucio-martinez/Fix_Twitter_links) - Unshorten Twitter Feed URLs
* [Twitter Detector](https://github.com/stilliard/Twitter-detector) - Detect Twitter Link on a Page
***
## ▷ Twitter Archiving
* [Thread Safe](https://github.com/dkaslovsky/thread-safe) - Twitter Backup Tool
* [TwitterMediaHarvest](https://github.com/EltonChou/TwitterMediaHarvest) or [InThisTweet](https://inthistweet.app/) - Twitter Media Downloader
* [GetVideoBot](https://twitsave.com/), [TwitterVid](https://twittervid.com/) or [sssTwitter](https://ssstwitter.com/) - Download Twitter Videos
* [Pikaso](https://twitter.com/pikaso_me) - Twitter Screenshot Bot
* [memory.lol](https://github.com/travisbrown/memory.lol/) - Twitter Account Archive * [memory.lol](https://github.com/travisbrown/memory.lol/) - Twitter Account Archive
* [Ghost Archive](https://ghostarchive.org/) or [Megalodon](https://megalodon.jp/) - Twitter Archive Services * [Twitter Archive Parser](https://github.com/timhutton/twitter-archive-parser) - Tweet Archiving
* [Twitter Archive Parser](https://github.com/timhutton/twitter-archive-parser) or [twitter-web-exporter](https://github.com/prinsss/twitter-web-exporter) - Tweet Archivers
* [Twayback Machine](https://staringispolite.github.io/twayback-machine/) - View Users' Old Tweets * [Twayback Machine](https://staringispolite.github.io/twayback-machine/) - View Users' Old Tweets
* [Hoaxy](https://hoaxy.osome.iu.edu/) - Twitter Info Spread Data
* [tinfoleak](https://tinfoleak.com/) - View Your Geosocial Footprint
* [Unfollow All](https://chromewebstore.google.com/detail/twitter-unfollow-all/mgehkbclkipppdjiemnhmnledicalkld) - Twitter Unfollower
* [Fix Twitter Links](https://openuserjs.org/scripts/lucio-martinez/Fix_Twitter_links) - Unshorten Twitter Feed URLs
* [Twitter Detector](https://github.com/stilliard/Twitter-detector) - Detect Twitter Link on a Page
*** ***
## ▷ Twitter Customization ## ▷ Twitter Customization
* ⭐ **[Eight Dollars](https://github.com/wseagar/eight-dollars)** - Show Twitter Blue vs. Real Verified Users * ⭐ **[Eight Dollars](https://github.com/wseagar/eight-dollars)** - Show Twitter Blue vs. Real Verified Users
* [Control Panel for Twitter](https://jbscript.dev/control-panel-for-twitter) - Twitter Enhancement Extensions * [Tweak New Twitter](https://github.com/insin/control-panel-for-twitter) - Twitter Enhancement Extensions
* [Minimal Twitter](https://typefully.com/minimal-twitter) - Minimal Twitter Themes * [Minimal Twitter](https://typefully.com/minimal-twitter) - Minimal Twitter Themes
* [OldTwitter](https://github.com/dimdenGD/OldTwitter) or [GoodTwitter2](https://github.com/Bl4Cc4t/GoodTwitter2) - Original Twitter Theme * [OldTwitter](https://github.com/dimdenGD/OldTwitter) - Original Twitter Theme
* [OldTweetDeck](https://github.com/dimdenGD/OldTweetDeck) - TweetDeck Dashboard * [OldTweetDeck](https://github.com/dimdenGD/OldTweetDeck) - TweetDeck Dashboard
* [Twitter Plus](https://greasyfork.org/en/scripts/387969) - View Twitter Images in Original Quality * [Twitter Plus](https://greasyfork.org/en/scripts/387969) - View Twitter Images in Original Quality
* [Twitter Demetricator](https://bengrosser.com/projects/twitter-demetricator/) - Remove All Twitter Metrics * [Twitter Demetricator](https://bengrosser.com/projects/twitter-demetricator/) - Remove All Twitter Metrics
* [Thread Reader App](https://threadreaderapp.com/) - Unroll Twitter Threads / Search * [Thread Reader App](https://threadreaderapp.com/) - Unroll Twitter Threads / Search
* [Relink](https://www.relink.page/) - Fix Twitter Link Images * [Relink](https://www.relink.page/) - Fix Twitter Link Images
* [Hide Content Warning](https://greasyfork.org/en/scripts/437359) or [Disable Blur](https://userstyles.world/style/15658/) - Remove Sensitive Content Blur
*** ***
@ -624,17 +570,16 @@
* ⭐ **[Caprine](https://sindresorhus.com/caprine/)** - Facebook Desktop Messenger / [GitHub](https://github.com/sindresorhus/caprine) * ⭐ **[Caprine](https://sindresorhus.com/caprine/)** - Facebook Desktop Messenger / [GitHub](https://github.com/sindresorhus/caprine)
* ⭐ **[Social Fixer](https://socialfixer.com/)** or [FBPurity](https://www.fbpurity.com/) - Facebook Enhancement Extensions * ⭐ **[Social Fixer](https://socialfixer.com/)** or [FBPurity](https://www.fbpurity.com/) - Facebook Enhancement Extensions
* ⭐ **[Facebook Ad Filters](https://www.reddit.com/r/uBlockOrigin/wiki/solutions#wiki_facebook)** - Facebook Filters * ⭐ **[Facebook Ad Filters](https://www.reddit.com/r/uBlockOrigin/wiki/solutions#wiki_facebook)** - Facebook Filters
* [Social Tools](https://chromewebstore.google.com/detail/social-tools/llbdoljkknpjgfcnbnoiehjcgancpjmd) - Block "Sending" & "Seen" Facebook Chat Indicators * [Social Tools](https://chromewebstore.google.com/detail/social-tools/llbdoljkknpjgfcnbnoiehjcgancpjmd) - Block "Sending" & "Seen" Facebook Chat Indicators
* [Messenger Dark Theme](https://github.com/jerry1100/messenger-dark-theme) or [Charcoal Dark Mode](https://chromewebstore.google.com/detail/charcoal-dark-mode-for-me/aaekanoannlhnajolbijaoflfhikcgng) - Facebook Messenger Dark Mode * [Messenger Dark Theme](https://github.com/jerry1100/messenger-dark-theme) or [Charcoal Dark Mode](https://chromewebstore.google.com/detail/charcoal-dark-mode-for-me/aaekanoannlhnajolbijaoflfhikcgng) - Facebook Messenger Dark Mode
* [FDown](https://fdown.net/) or [GetFVid](https://www.getfvid.com/) - Facebook Video Downloaders * [FDown](https://fdown.net/) or [GetFVid](https://www.getfvid.com/) - Facebook Video Downloaders
* [Facebook Matrix](https://plessas.net/facebookmatrix) - Facebook Search Formulas * [Facebook Matrix](https://plessas.net/facebookmatrix) - Facebook Search Formulas
* [Graph.tips](https://graph.tips/beta/) - Advanced Facebook Search Tool * [Graph.tips](https://graph.tips/beta/) - Advanced Facebook Search Tool
* [WhoPostedWhat](https://whopostedwhat.com/) - Facebook Post Search * [WhoPostedWhat](https://whopostedwhat.com/) - Facebook Post Search
* [Color Themes](https://chromewebstore.google.com/detail/color-themes-for-facebook/oohbdcphbnpnoohnbddhcfplalanfbmm), [FB.Zone](https://fb.zone/) or [Color Changer](https://chromewebstore.google.com/detail/color-changer-for-faceboo/blfkmmfngackeejimehjkmendglnabnm) - Color Themes for Facebook * [Color Themes](https://chromewebstore.google.com/detail/color-themes-for-facebook/oohbdcphbnpnoohnbddhcfplalanfbmm), [FB.Zone](https://fb.zone/) or [Color Changer](https://chromewebstore.google.com/detail/color-changer-for-faceboo/blfkmmfngackeejimehjkmendglnabnm) - Color Themes for Facebook
* [Kill Fbclid](https://chromewebstore.google.com/detail/kill-fbclid/jlmdkcaiejonohbmkgickmkgbpceokmn) or [Remove FBclid](https://chromewebstore.google.com/detail/remove-fbclid-and-utm/ehkdoijaaigomfliimepliikhjkoipob) - Removes fbclid and utm_ query parameters in URLs * [Kill Fbclid](https://chromewebstore.google.com/detail/kill-fbclid/jlmdkcaiejonohbmkgickmkgbpceokmn) or [Remove FBclid](https://chromewebstore.google.com/detail/remove-fbclid-and-utm/ehkdoijaaigomfliimepliikhjkoipob) - Removes fbclid and utm_ query parameters in URLs
* [News Feed Eradicator](https://west.io/news-feed-eradicator/) - Hide Facebook News Feed * [News Feed Eradicator](https://west.io/news-feed-eradicator/) - Hide Facebook News Feed
* [Lookup ID](https://lookup-id.com/) - Find Facebook ID * [Lookup ID](https://lookup-id.com/) - Find Facebook ID
* [Unlike-Everything](https://github.com/tyrtles/Unlike-Everything-on-Facebook) - Remove All Facebook Likes
*** ***
@ -646,120 +591,67 @@
* [InstaFix](https://ddinstagram.com/) - Fix Instagram Embeds on Discord * [InstaFix](https://ddinstagram.com/) - Fix Instagram Embeds on Discord
* [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends * [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
* [imgsed](https://imgsed.com/), [Picuki](https://www.picuki.com/), [InstaNavigation](https://instanavigation.com/), [Instafreeview](https://instafreeview.com/), [profile-picture-viewer](https://github.com/Ademking/profile-picture-viewer), [Dumpor](https://dumpoir.com/) or [GreatFon](https://greatfon.com/) - Instagram Viewers * [imgsed](https://imgsed.com/), [Picuki](https://www.picuki.com/), [InstaNavigation](https://instanavigation.com/), [Instafreeview](https://instafreeview.com/), [profile-picture-viewer](https://github.com/Ademking/profile-picture-viewer), [Dumpor](https://dumpoir.com/) or [GreatFon](https://greatfon.com/) - Instagram Viewers
* [Instagram-Explorer](https://www.osintcombine.com/instagram-explorer) - Explore Pictures by Location
* [StoriesDown](https://storiesdown.com/), [instasaved](https://instasaved.net/en) or [insta-stories-viewer](https://insta-stories-viewer.com/) - Story Downloaders * [StoriesDown](https://storiesdown.com/), [instasaved](https://instasaved.net/en) or [insta-stories-viewer](https://insta-stories-viewer.com/) - Story Downloaders
* [SaveFromWeb](https://www.savefromweb.com/), [Downloadgram](https://downloadgram.org/) - Video / Picture / Story Downloaders * [SaveFromWeb](https://www.savefromweb.com/), [Downloadgram](https://downloadgram.org/) - Video / Picture / Story Downloaders
* [Picnob](https://www.picnob.com/) or [Instagram PHP Scraper](https://github.com/postaddictme/instagram-php-scraper) - Picture / Story Downloaders * [Picnob](https://www.picnob.com/) or [Instagram PHP Scraper](https://github.com/postaddictme/instagram-php-scraper) - Picture / Story Downloaders
* [ThumbTube](https://thumbtube.com/download-instagram-photos-videos) or [scraper-instagram-gui-desktop](https://git.kaki87.net/KaKi87/scraper-instagram-gui-desktop), [Instaloader](https://github.com/instaloader/instaloader) or [instapick](https://www.instapick.net/) - Picture / Video Downloader * [ThumbTube](https://thumbtube.com/download-instagram-photos-videos) or [scraper-instagram-gui-desktop](https://git.kaki87.net/KaKi87/scraper-instagram-gui-desktop), [Instaloader](https://github.com/instaloader/instaloader) or [instapick](https://www.instapick.net/) - Picture / Video Downloader
* [InstaLoader](https://instaloader.github.io/) or [PixWox](https://www.pixwox.com/) - Picture Downloaders * [InstaLoader](https://instaloader.github.io/) - Picture Downloader
* [Weynstag](https://www.google.com/amp/s/weynstag.com/amp.php/) - Video Downloader * [Weynstag](https://www.google.com/amp/s/weynstag.com/amp.php/) - Video Downloader
* [Resizegram](https://resizegram.com/) - Resize Videos * [Resizegram](https://resizegram.com/) - Resize Videos
* [Instagram Video Control](https://github.com/Arcus92/instagram-video-control/) - Video Controls
* [Instagram Download Button](https://greasyfork.org/en/scripts/406535-instagram-download-button) - Add DL Links to Instagram * [Instagram Download Button](https://greasyfork.org/en/scripts/406535-instagram-download-button) - Add DL Links to Instagram
* [otzberg](https://www.otzberg.net/iguserid/index.php) or [Find-User-ID](https://codeofaninja.com/tools/find-instagram-user-id/) - ID Finder * [otzberg](https://www.otzberg.net/iguserid/index.php) or [Find-User-ID](https://codeofaninja.com/tools/find-instagram-user-id/) - ID Finder
* [Image Counter](https://openuserjs.org/scripts/darkred/Instagram_-_visible_images_counter) - Count Page Images * [Image Counter](https://openuserjs.org/scripts/darkred/Instagram_-_visible_images_counter) - Count Page Images
* [InstaAddict](https://github.com/Androz2091/instaddict) - Instagram Addiction Test * [InstaAddict](https://github.com/Androz2091/instaddict) - Instagram Addiction Test
* [Unfollow-Everyone](https://github.com/tyrtles/Unfollow-Everyone-on-Instagram/) - Bulk Instagram Unfollow
***
# ► Tumblr Tools
* [Tumlook](https://www.tumlook.com/), [Tumgik](https://www.tumgik.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
* [Pillowfort](https://www.pillowfort.social/) or [Cohost](https://cohost.org/) - Tumblr Alternatives
* [tumblr-utils](https://github.com/cebtenzzre/tumblr-utils) - Tumblr Utilities
* [XKit](https://github.com/new-xkit/XKit) - Tumblr Enhancement Extension
* [Tumblr Savior](https://bjornstar.com/tumblr-savior) - Tumblr Dashboard Filter
* [tumbex](https://www.tumbex.com/) - Tumblr Search
* [TumblrOriginalPostFinder](https://jetblackcode.com/TumblrOriginalPostFinder) - Tumblr Post Finder
* [Tumbl Backup Guide](https://docs.google.com/document/d/1yBWlk-yEgpSoEh3c9oLhz_kbLtUGqbqzOpCtJsvQgjI/) or [TumblThree](https://tumblthreeapp.github.io/TumblThree/) - Tumblr Backup Tools
*** ***
# ► Fediverse Tools # ► Fediverse Tools
* 🌐 **[Fediverse.Party](https://fediverse.party/)** - Fediverse Software Index * 🌐 **[Awesome Fediverse](https://github.com/emilebosch/awesome-fediverse)** - Fediverse Resources
* ⭐ **[Fediverse Observer](https://fediverse.observer/)** - Fediverse Instances * ⭐ **[Fediverse](https://fediverse.party/)**, [Fediverse.space](https://fediverse.space/), [sub.rehab](https://sub.rehab/), [Fediverser](https://fediverser.network/) or [Fediverse Observer](https://mastodon.fediverse.observer/) - Fediverse Instance Search
* [Bluesky](https://bsky.app/) - Federated Twitter Alt / [App Directory](https://docs.bsky.app/showcase) * ⭐ **[Lemmy](https://join-lemmy.org/)** / [Stats](https://the-federation.info/), [2](https://fedidb.org/) - Federated Reddit Alternative
* [FediDB](https://fedidb.org/) or [The Federation](https://the-federation.info/) - Network Statistics * ⭐ **[Lemmy Explorer](https://lemmyverse.net/)**, [Community-Browser](https://browse.feddit.de/) or [Awesome Instances](https://github.com/maltfield/awesome-lemmy-instances) - Lemmy Instances
* [Fedi.Tips](https://fedi.tips/) - Fediverse Guide
* [Fedi.Garden](https://fedi.garden/) - Curated User Directory
* [Fediverse People Directory](https://fediverse.info/explore/people) - Self-Submitted User Directory
* [FediverseRedirect](https://github.com/zacharee/MastodonRedirect) - Frontend Redirect
* [Bridgy Fed](https://fed.brid.gy/) - Fediverse Bridge
* [PodcastAP](https://podcastap.com/) - Podcast Feed Bridge
* [The Fediverse Report](https://fediversereport.com/) - Fediverse News
* [FediBuzz](https://fedi.buzz/in/en) - Fediverse Trends
***
## ▷ Mastodon Tools
* 🌐 **[Awesome Mastodon](https://hueyy.github.io/awesome-mastodon/)**, [2](https://github.com/tleb/awesome-mastodon) - Mastodon Resources
* ⭐ **[instances.social](https://instances.social/)** or [Mastodon Near Me](http://mastodon-near.me/) - Mastodon Instances
* ⭐ **[Mastodon Apps](https://joinmastodon.org/apps)** - Mastodon Client List
* [Phanpy](https://phanpy.social/) or [Mastodeck](https://mastodeck.com/) - Mastodon Clients
* [MastoVue](https://mastovue.glitch.me/) or [FediWall](https://fediwall.social/) - View Public Timelines / Hashtags
* [Followgraph](https://followgraph.vercel.app/) or [StreetPass](https://streetpass.social/) - Find Mastodon Users
* [western.social](https://western.social/) - User Search
* [Tootfinder](https://www.tootfinder.ch/) - Opt-In Full Text Search
* [Mastodon Scheduler](https://scheduler.mastodon.tools/) or [FediPlan](https://plan.fedilab.app/) - Schedule Posts
* [Mastodon List Manager](https://www.mastodonlistmanager.org/main) or [Mastodon Lists Manager](https://mastodon-lists-manager.huey.xyz/) - Bulk List Editors
* [Mastodon Share Bookmarklet Creator](https://eai04191.github.io/mastodon-share-let-maker/index.html) - Quick Share Bookmarklet
* [Mastodon Embed Timeline](https://gitlab.com/idotj/mastodon-embed-timeline) or [Mastofeed](https://mastofeed.com/) - Embedded Mastodon Feeds
* [Cheap Bots, Toot Sweet!](https://cheapbotstootsweet.com/) - Create Bots
* [emojos.in](https://emojos.in/) - Mastodon Custom Emoji Lists
* [MastoMetrics](https://mastometrics.com/) - Mastodon Analytics
***
## ▷ Lemmy Tools
* ⭐ **[Lemmy Explorer](https://lemmyverse.net/)**, [Feddit Community Browser](https://browse.feddit.de/) or [Awesome Lemmy Instances](https://github.com/maltfield/awesome-lemmy-instances) - Lemmy Instances
* ⭐ **[Lemmy Apps](https://join-lemmy.org/apps)** - Lemmy Client List
* ⭐ **[Divisions by zero](https://lemmy.dbzer0.com/)** - Piracy Focused Instance * ⭐ **[Divisions by zero](https://lemmy.dbzer0.com/)** - Piracy Focused Instance
* [Quiblr](https://quiblr.com/) - Lemmy Instance Browser * ⭐ **[Pleroma](https://pleroma.social/)** - Federated Microblogging
* ⭐ **[Pixelfed](https://pixelfed.org/)** - Federated Microblogging
* ⭐ **[diaspora*](https://diasporafoundation.org/)**, [2](https://diasp.org/) - Federated Microblogging
* [Misskey](https://misskey-hub.net/en/) - Federated Microblogging
* [Friendica](https://friendi.ca/) - Federated Microblogging
* [Hubzilla](https://zotlabs.org/page/hubzilla/hubzilla-project) - Federated Microblogging
* [GoToSocial](https://docs.gotosocial.org/en/latest/) - Federated Microblogging
* [Fedi Tips](https://fedi.tips/) - Fediverse Guide
* [Fediverser](https://portal.alien.top/) - Reddit to Lemmy Community Auto-Sync * [Fediverser](https://portal.alien.top/) - Reddit to Lemmy Community Auto-Sync
* [LemmyTools](https://github.com/howdy-tsc/LemmyTools) - Lemmy Improvement Extension * [LemmyTools](https://github.com/howdy-tsc/LemmyTools) - Lemmy Improvement Extension
*** ***
## ▷ Pixelfed Tools ## ▷ Mastodon Tools
* 🌐 **[Pixelfed Apps](https://pixelfed.org/mobile-apps)** - Pixelfed Client List * ⭐ **[Mastodon](https://joinmastodon.org/)** - Federated Twitter Alternative
* [Morri](https://github.com/glitchpizza/morii) - Pixelfed App * 🌐 **[Mastodon Instances](https://instances.social/)** or [Mastodon Near Me](http://mastodon-near.me/) - Mastodon Instance Indexes
* [The Federation Pixelfed](https://the-federation.info/platform/26) - Pixelfed Instances * [Tuba](https://tuba.geopjr.dev/) or [Kaiteki](https://kaiteki.app/) - Mastodon Viewers
* [FediDB Pixelfed](https://fedidb.org/software/pixelfed) - Pixelfed Instances * [Mastodon Scheduler](https://scheduler.mastodon.tools/) - Schedule Sending Posts
* [Fediverse Observer Pixelfed](https://pixelfed.fediverse.observer/list) - Pixelfed Instances * [MastoVue](https://mastovue.glitch.me/) - View Public Timelines / Hashtags
* [Pixelfed.social](https://pixelfed.social/) - Pixelfed Instance * [Cheap Bots, Toot Sweet!](https://cheapbotstootsweet.com/) - Create Bots
***
## ▷ Peertube Tools
* 🌐 **[Peertube Apps](https://docs.joinpeertube.org/use/third-party-application)** - Peertube Client List
* [Sepia Search](https://joinpeertube.org/browse-content), [2](https://sepiasearch.org/) - Peertube Search Engine
* [Peertube Instances](https://joinpeertube.org/instances), [2](https://instances.joinpeertube.org/instances) - Peertube Instances
* [The Federation Peertube](https://the-federation.info/platform/29) - Peertube Instances
* [FediDB Peertube](https://fedidb.org/software/peertube) - Peertube Instances
* [Fediverse Observer Peertube](https://peertube.fediverse.observer/list) - Peertube Instances
*** ***
# ► 4chan Tools # ► 4chan Tools
* ⭐ **[AnyChans](https://anychans.github.io/)** or [LuckyChan](https://luckychan.app/) - 4chan Web Clients * ⭐ **[LuckyChan](https://luckychan.app/)** - Modern 4chan Frontend
* ⭐ **[4chan X](https://www.4chan-x.net/)**, [SpookyX](https://github.com/Fiddlekins/SpookyX), [4Chan XT](https://github.com/TuxedoTako/4chan-xt) or [Dollchan](https://dollchan.net/) - Enhancement Extensions * ⭐ **[4chan X](https://www.4chan-x.net/)**, [SpookyX](https://github.com/Fiddlekins/SpookyX), [4Chan XT](https://github.com/TuxedoTako/4chan-xt) or [Dollchan](https://dollchan.net/) - Enhancement Extensions
* [Lurka](https://github.com/AdamSalma/Lurka) - Desktop Client * [Lurka](https://github.com/AdamSalma/Lurka) - 4chan Desktop Client
* [RedditChan](https://reddit-chan.vercel.app/) - Reddit Style 4chan Web Client * [RedditChan](https://reddit-chan.vercel.app/) - Reddit Style 4chan Frontend
* [4chanCode](https://4chancode.org/) - Code Style 4chan Web Client * [4chanCode](https://4chancode.org/) - Code Style 4chan Frontend
* [4Webm](https://www.4webm.org/) - Load All Webm Videos in 4Chan Thread * [4Webm](https://www.4webm.org/) - Load All Webm Videos in 4Chan Thread
* [4stats](https://4stats.io/) - 4chan Board / Thread Stats * [4stats](https://4stats.io/) - 4chan Board / Thread Stats
* [Mass Reply](https://github.com/HamletDuFromage/4chan-mass-reply) or [Reply All](https://gitlab.com/lucadou/4chan-reply-all) - Mass Reply on 4chan * [Mass Reply](https://github.com/HamletDuFromage/4chan-mass-reply) or [Reply All](https://gitlab.com/lucadou/4chan-reply-all) - Mass Reply on 4chan
* [Anon Files Names](https://greasyfork.org/en/scripts/435220) - Anonymizes File Names * [Anon Files Names](https://greasyfork.org/en/scripts/435220) - Anonymizes File Names
* [4Chan GhostPostMixer](https://github.com/g-gundam/4chan-ghostpostmixer) - Interleave Deleted Posts from Archives * [4Chan GhostPostMixer](https://github.com/g-gundam/4chan-ghostpostmixer) - Interleave Deleted Posts from Archives
* [Tripgen](https://orph.link/tripgen) - Imageboard Trip Code Generator * [Tripgen](https://orph.link/tripgen) - Imageboard Trip Code Generator
* [4Chan Captcha Solver](https://github.com/drunohazarb/4chan-captcha-solver) - Auto Captcha Solvers * [4Chan Captcha Solver](https://github.com/drunohazarb/4chan-captcha-solver) - Auto Captcha Solvers
* [Bypass Derefer](https://greasyfork.org/en/scripts/451259) - Remove Link Derefer * [Bypass Deferer](https://greasyfork.org/en/scripts/451259) - Remove Link Deferer
* [Extra Flags for 4chan](https://gitlab.com/flagtism/Extra-Flags-for-4chan) - Add More Flags to 4chan * [Extra Flags for 4chan](https://gitlab.com/flagtism/Extra-Flags-for-4chan) - Add More Flags to 4chan
* [ss21](https://github.com/saxamaphone69/ss21), [OneeChan](https://github.com/KevinParnell/OneeChan) or [4cheddit](https://greasyfork.org/en/scripts/16672) - 4chan Themes * [ss21](https://github.com/saxamaphone69/ss21), [OneeChan](https://github.com/KevinParnell/OneeChan) or [4cheddit](https://greasyfork.org/en/scripts/16672) - 4chan Themes
@ -770,7 +662,6 @@
* ⭐ **[boards.4channel](https://boards.4channel.org/search)**, [2](https://boards.4chan.org/search) - 4chan Archives * ⭐ **[boards.4channel](https://boards.4channel.org/search)**, [2](https://boards.4chan.org/search) - 4chan Archives
* [4chanSearch](https://4chansearch.com/) or [4search](https://4search.neocities.org/) - Search 4chan Archives * [4chanSearch](https://4chansearch.com/) or [4search](https://4search.neocities.org/) - Search 4chan Archives
* [Oldfriend Archive](https://old.sage.moe/) - 2004 - 2014 Archive * [Oldfriend Archive](https://old.sage.moe/) - 2004 - 2014 Archive
* [Hayden Ultra](https://ultra.gondola.pics/) - 2018-2023 Archive
* [Ten Billion](https://archive.org/details/4chan_threads_archive_10_billion) or [4Museum](https://4museum.neocities.org/) - 2006 - 2008 Archive * [Ten Billion](https://archive.org/details/4chan_threads_archive_10_billion) or [4Museum](https://4museum.neocities.org/) - 2006 - 2008 Archive
* [4GBs of 4chan Threads](https://archive.org/details/4chan-threads-2009-2012) - 2009 - 2012 Archive * [4GBs of 4chan Threads](https://archive.org/details/4chan-threads-2009-2012) - 2009 - 2012 Archive
* [Archive.4plebs](https://archive.4plebs.org/) - 2013 - 2023 Archive * [Archive.4plebs](https://archive.4plebs.org/) - 2013 - 2023 Archive
@ -783,12 +674,11 @@
# ► Blogging Tools # ► Blogging Tools
* [Telescope](https://telescope.ac/) - Publishing Platform * [Telescope](https://telescope.ac/) - Publishing Platform
* [Bear Blog](https://bearblog.dev/) - Privacy-Based Blogging Platform
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform * [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-hosted Blogging Platforms * [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-hosted Blogging Platforms
* [Multiverse](https://multiverse.plus/) - Make Highly Customizable Blogs * [Multiverse](https://multiverse.plus/) - Make Highly Customizable Blogs
* [Bear Blog](https://bearblog.dev/), [Mataroa](https://mataroa.blog/), or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms * [Mataroa](https://mataroa.blog/), [Notepin](https://notepin.co/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
* [Notepin](https://notepin.co/) - Anonymous Blogging Platform
* [Zonelets](https://zonelets.net/) - Static Blog Template
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service * [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
* [Emanates Docs](https://emanates.deepjyoti30.dev/) - Make GitHub-Based Blogs * [Emanates Docs](https://emanates.deepjyoti30.dev/) - Make GitHub-Based Blogs
* [You Don't Need WP](https://www.youdontneedwp.com/) - Make Blogs with Google Docs * [You Don't Need WP](https://www.youdontneedwp.com/) - Make Blogs with Google Docs

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,208 +1,200 @@
*** ***
*** ***
**[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)** **[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)**
*** ***
*** ***
# ► Torrent Sites # ► [VPN Guide](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)
**Warning** - It's best to avoid sites that allow anyone to make accounts when getting both software and games. Avoid users in the [Unsafe](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/unsafe-sites/) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists. ***
*** # ► Torrent Clients
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.nl/), [3](https://rutracker.net/) - Video / Audio / Games / Software / Android / Comics / Magazines **Warning** - Make sure you [BIND](https://redd.it/ssy8vv) your VPN to your client to avoid ISP letters.
* ⭐ **RuTracker Tools** - [Addon](https://addons.mozilla.org/en-US/firefox/addon/rutracker_torrent_search/) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
* ⭐ **[TorrentGalaxy](https://torrentgalaxy.to/)** - Video / Audio / NSFW / [.onion](http://galaxy3yrfbwlwo72q3v2wlyjinqr2vejgpkxb22ll5pcpuaxlnqjiid.onion) ***
* ⭐ **[m0nkrus](https://w14.monkrus.ws/)** - Adobe Software Archive / [Search Engine](https://monkrus.dvuzu.com/) / [Block Adobe](https://github.com/ignaciocastro/a-dove-is-dumb), [2](https://rentry.co/psnfoandhostblock)
* ⭐ **[Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search * ⭐ **[qBittorrent](https://www.qbittorrent.org/)** - [Screenshot](https://i.ibb.co/ZBWZLvB/8519077d9320.png) / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools)
* [1337x](https://1337x.to/) - Video / Audio / NSFW * ⭐ **[Deluge](https://www.deluge-torrent.org/)** - [Screenshot](https://i.ibb.co/HdwCH5Q/678a01f3b439.png) / [Plugins](https://dev.deluge-torrent.org/wiki/Plugins) / [Config](https://github.com/ratanakvlun/deluge-ltconfig/releases) / [Telegram Plugin](https://github.com/noam09/deluge-telegramer)
* 1337x Tools - [Mirrors](https://1337x-status.org/), [2](https://1337x.to/about) / [User Ranks](https://i.ibb.co/WfNhvtB/ebc2def26433.png) / [Telegram Bot](https://t.me/search_content_bot), [2](https://github.com/xbIm/1337x-torrent-telegram-bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Proxy](https://redd.it/tz7nyx), [2](https://pastebin.com/3n5K0QrP) [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [Magnets](https://greasyfork.org/en/scripts/373230) / [Timezone Fix](https://greasyfork.org/en/scripts/421635) * ⭐ **[Transmission](https://transmissionbt.com/)** - [Screenshot](https://i.ibb.co/z550kRy/571b08f4981e.png)
* [GloTorrents](https://glodls.to) - Video / Audio / Books / NSFW * ⭐ **[torrent-control](https://github.com/Mika-/torrent-control)** or [Remote Torrent Adder](https://github.com/bogenpirat/remote-torrent-adder) - Easily Send Torrents to Client
* [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books * [Tixati](https://tixati.com/) - [Screenshot](https://i.ibb.co/tPfyPRQ/b0683ce2eb49.png)
* [IsoHunt](https://isohunts.to/) or [IsoHunt.nz](https://isohunt.nz/) - Video / Audio / Books * [Motrix](https://motrix.app/) - [Screenshot](https://i.ibb.co/SQqrdpW/2950c09df08a.png) / [GitHub](https://github.com/agalwood/Motrix)
* [ExT](https://ext.to/), [2](https://search.extto.com/) - Video / Audio / Books * [WizTorrent](https://wiztorrent.com/) - [Screenshot](https://i.imgur.com/O3VbklP.jpg) / Torrent Player / WebShare
* [ExtraTorrent](https://extratorrent.st/) - Video / Audio / Books / NSFW * [Picotorrent](https://picotorrent.org/) - [Screenshot](https://i.ibb.co/Pz4qb8Q/df96c0ff3912.png)
* [rutor.info](https://rutor.info/) or [rutor.is](https://rutor.is/) - Video / Audio / Books / ROMs / Magazines / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) * [BiglyBT](https://www.biglybt.com/) - [Screenshot](https://i.ibb.co/5TRkt1t/bfe91a771679.png)
* [NNM-Club](https://nnmclub.to/) - Video / Audio / [Note](https://i.ibb.co/MPRttDC/6a35c3c79cde.png) * [LIII](https://codecpack.co/download/LIII-BitTorrent-Client.html) - [Screenshot](https://i.ibb.co/jRJR1cX/cecb8c47451d.png)
* [Torrentz2k](https://torrentz2k.xyz/) - Video / Audio / NSFW * [PikaTorrent](https://www.pikatorrent.com/) - [Screenshot](https://ibb.co/zGyT1tc) / [GitHub](https://github.com/G-Ray/pikatorrent)
* [Torrenting](https://www.torrenting.com/) - Video / Audio / Books / NSFW / Signup Required * [Distribyted](https://distribyted.com/) - [Screenshot](https://i.ibb.co/m8TQBPh/f5dfcb4b192f.png) / [GitHub](https://github.com/distribyted/distribyted)
* [Tigole](https://infogalactic.com/info/Tigole#Getting_Tigole_torrents) - Torrent Index * [Crawfish](https://github.com/drakonkat/Crawfish) - [Screenshot](https://i.ibb.co/DVVVdpG/8406bc7e0a39.png)
* [ZeroTorrent](http://127.0.0.1:43110/ZeroTorrent.bit/) - [ZeroNet Required](https://zeronet.io/) / Video / Audio * [GoSpeed](https://github.com/GopeedLab/gopeed) - [Screenshot](https://github.com/GopeedLab/gopeed/blob/main/_docs/img/ui-demo.png)
* [4chan /t/](https://boards.4chan.org/t/) - Torrents / Imageboard / Some NSFW * [Tribler](https://www.tribler.org/) - Tor-inspired Client / [Screenshot](https://i.ibb.co/k4jt0FJ/20d3bd279896.png) / [GitHub](https://github.com/Tribler/tribler)
* [aria2](https://aria2.github.io/) - Terminal Torrent Client / [Screenshot](https://i.ibb.co/SmsxmW3/3e213c54b148.png) / [GitHub](https://github.com/aria2/aria2) / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [GUI](https://github.com/persepolisdm/persepolis) / [Frontend](https://ariang.mayswind.net/) / [WebUI](https://github.com/ziahamza/webui-aria2) / [GUI](https://persepolisdm.github.io/)
*** * [XD-Torrent](https://xd-torrent.github.io/) - Anonymous P2P Torrent Client
* [BitSwarm](https://github.com/SuRGeoNix/BitSwarm/) - Bittorrent Client Library
## ▷ Aggregators * [Instant.io](https://instant.io/) - Stream Torrents in Browser
* [BTorrent](https://btorrent.xyz/) - Stream Torrents in Browser
**Warning** - Aggregators include many sources, so it's best to avoid using them for software and games. Avoid users in the [Unsafe](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/unsafe-sites/) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists. * [Magnet Player](https://ferrolho.github.io/magnet-player/) - Stream Torrents in Browser
* [BitFord](https://github.com/astro/bitford) - Chrome
*** * [Rats Search](https://github.com/DEgITx/rats-search) - Torrent Search Client / [Screenshot](https://github.com/DEgITx/rats-search#screenshots)
* [Download Torrents Through I2P](https://decentnet.github.io/blog/20200329-download-torrents-through-i2p.html)
* ⭐ **[BTDigg](https://btdig.com/index.htm)** - [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/), [2](https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion.ly/) / [i2p](http://btdigg.i2p/) * [flood](https://flood.js.org/) - rTorrent, Transmission & qBittorrent WebUI / [GitHub](https://github.com/jesec/flood)
* ⭐ **[snowfl](https://snowfl.com/)**
* ⭐ **[Knaben](https://knaben.eu/)** ***
* ⭐ **[SolidTorrents](https://solidtorrents.to/)**, [2](https://solidtorrents.eu/)
* ⭐ **[Torrentz2](https://torrentz2.nz/)** ## ▷ Remote Torrenting
* [Bitsearch](https://bitsearch.to/)
* [Torrent Finder](https://torrent-finder.com/) * ↪️ **[Torrent to GDrive](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_torrent_to_gdrive)**
* [TorrentDownload](https://www.torrentdownload.info/) * ⭐ **[Multi-Up](https://multiup.io/en/upload/from-torrent)** - Torrent to DDL Sites / [Bypass 10GB Limit](https://pastebin.com/0aPaPqN9)
* [TorrentQuest](https://torrentquest.com/) * ⭐ **[Seedr](https://www.seedr.cc/)** - [Telegram Bot](https://t.me/TorrentSeedrBot) / [API Wrapper](https://github.com/theabbie/seedr-api), [2](https://github.com/AnjanaMadu/SeedrAPI) - Torrent to Cloud and Stream
* [TorrentCORE](https://torrentcore.xyz/) * ⭐ **[webtor](https://webtor.io/)** - Torrent to Cloud and Stream / [Send Magnets](https://greasyfork.org/en/scripts/481975)
* [DaMag](https://damag.net/) * [Bitport](https://bitport.io/welcome) - Torrent to Cloud and Stream
* [Cleanbay](https://cleanbay.netlify.app/) * [TorrentSafe](https://www.torrentsafe.com/) - Torrent to Cloud and Stream
* [Torrends](https://torrends.to/) * [TorrentCheap](https://my.torrentcheap.com/) - Torrent to Cloud and Stream
* [CloudTorrents](https://cloudtorrents.com/) * [ZBIGZ](https://zbigz.com/) - Torrent to Cloud and Stream
* [BTMET](https://btmet.com/) * [Loadbt](https://www.loadbt.com/) - Torrent to Cloud and Stream
* [Torrents-CSV](https://torrents-csv.com/) * [TorBox](https://torbox.app/) - Torrent to Cloud
* [FileMood](https://filemood.com/) * [Demagnetize](http://demagnetize.link/) - Torrent to DDL
* [BT4G](https://bt4gprx.com/)
* [Torlock](https://www.torlock.com/), [2](https://www.torlock2.com/) ***
* [TorrentProject](https://torrentproject.cc/), [2](https://torrentproject2.net/)
* [0Mag](https://www.0mag.net/), [2](https://16mag.net/) ## ▷ [Android Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_torrenting)
* [TorrentDownloads](https://www.torrentdownloads.pro/)
* [concen](https://www.concen.org/torrents) ***
* [BTSearch](https://www.btsearch.love/en)
* [EXT Torrents](https://extranet.torrentbay.to/) ## ▷ [iOS Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_ios_torrenting)
* [TorrentSeeker](https://torrentseeker.com)
* [Torrentzeta](https://www.torrentzeta.com/) ***
* [Veoble](https://veoble.com/torrent/)
* [TorrentSearchRobot](https://t.me/TorrentSearchRoBot) - Telegram Torrent Search # ► Torrent Sites
* [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Magnet Web App Search
* [Torrentinim](https://github.com/sergiotapia/torrentinim) or [BitMagnet](https://bitmagnet.io/) - Self-Hosted Torrent Search Engines **Warning** - It's best to avoid sites that allow anyone to upload without consequences when getting both software and games. Avoid users in the [Unsafe](https://fmhy.net/unsafesites) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists.
* [torrentsearcher_bot](https://t.me/torrentsearcher_bot), [torrenthuntbot](https://t.me/torrenthuntbot) or [FDTorrentSearchBot](https://t.me/FDTorrentSearchBot) - Telegram Torrent Search Bot
***
***
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.nl/), [3](https://rutracker.net/) - Video / Audio / Games / Software / Android / Comics / Magazines
## ▷ [Video Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_sites) * ⭐ **RuTracker Tools** - [Addon](https://addons.mozilla.org/en-US/firefox/addon/rutracker_torrent_search/) / [Search API](https://github.com/nikityy/rutracker-api) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
* ⭐ **[TorrentGalaxy](https://torrentgalaxy.to/)** - Video / Audio / NSFW / [Mirrors](https://proxygalaxy.me/)
*** * ⭐ **[m0nkrus](https://w14.monkrus.ws/)** - Adobe Software Archive / [Search Engine](https://dvuzu.github.io/monkrus-search) / [How-to](https://rentry.co/adobesoftware)
* ⭐ **[Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search
## ▷ [Anime Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25B7_anime_torrenting) * [1337x](https://1337x.to/) - Video / Audio / NSFW / [Avoid Software](https://pastebin.com/8AaMuz5u)
* 1337x Tools - [Mirrors](https://1337x.to/about) / [User Ranks](https://i.ibb.co/WfNhvtB/ebc2def26433.png) / [Discord Bot](https://github.com/brandongallagher1999/1337x-Bot) / [Telegram Bot](https://t.me/search_content_bot), [2](https://github.com/xbIm/1337x-torrent-telegram-bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Proxy](https://redd.it/tz7nyx), [2](https://pastebin.com/3n5K0QrP) / [Enhancements](https://greasyfork.org/en/scripts/33379) / [Magnets](https://greasyfork.org/en/scripts/373230) / [Subtitles](https://greasyfork.org/en/scripts/29467) / [Timezone Fix](https://greasyfork.org/en/scripts/421635)
*** * [GloTorrents](https://glodls.to) - Video / Audio / Books / NSFW
* [MagnetDL](https://www.magnetdl.com/), [2]( https://www.magnetdl.org/) - Video / Audio / Books / [Onion](http://r5cena7erxpnxomyvoybuxh6fkgs55qqdg7bobf6yjx4j6vmywrqvlid.onion/)
## ▷ [Educational Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25BA_torrenting) * [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books
* [IsoHunt](https://isohunts.to/) or [IsoHunt.nz](https://isohunt.nz/) - Video / Audio / Books
*** * [ExT](https://ext.to/), [2](https://search.extto.com/) - Video / Audio / Books
* [ExtraTorrent](https://extratorrent.st/) - Video / Audio / Books / NSFW
## ▷ [Game Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25BA_download_games) * [rutor.info](https://rutor.info/) or [rutor.is](https://rutor.is/) - Video / Audio / Books / ROMs / Magazines / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
* [NNM-Club](https://nnmclub.to/) - Video / Audio / [Note](https://i.ibb.co/MPRttDC/6a35c3c79cde.png)
*** * [Torrentz2k](https://torrentz2k.xyz/) - Video / Audio / NSFW
* [Torrenting](https://www.torrenting.com/) - Video / Audio / Books / NSFW
## ▷ [Audio Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_audio_torrenting) * [Tigole](https://infogalactic.com/info/Tigole#Getting_Tigole_torrents) - Torrent Index
* [ZeroTorrent](http://127.0.0.1:43110/ZeroTorrent.bit/) - [ZeroNet Required](https://zeronet.io/) / Video / Audio
*** * [4chan /t/](https://boards.4chan.org/t/) - Torrents / Imageboard / Some NSFW
# ► Torrent Clients ***
**Warning** - Make sure you [BIND](https://redd.it/ssy8vv) your [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) to your client to avoid ISP letters. ## ▷ Aggregators
*** **Warning** - Aggregators include many sources, so it's best to avoid using them for software and games. Avoid users in the [Unsafe](https://fmhy.net/unsafesites) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists.
* ⭐ **[qBittorrent](https://www.qbittorrent.org/)** or [QBT Enhanced](https://github.com/c0re100/qBittorrent-Enhanced-Edition) - [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_qbittorrent_tools) ***
* ⭐ **[Deluge](https://www.deluge-torrent.org/)** - [Plugins](https://dev.deluge-torrent.org/wiki/Plugins) / [Config](https://github.com/ratanakvlun/deluge-ltconfig/releases) / [Telegram Plugin](https://github.com/noam09/deluge-telegramer)
* ⭐ **[Transmission](https://transmissionbt.com/)** * ⭐ **[BTDigg](https://btdig.com/index.htm)** - [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/), [2](https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion.ly/) / [i2p](http://btdigg.i2p/)
* ⭐ **[Tixati](https://tixati.com/)** * ⭐ **[snowfl](https://snowfl.com/)**
* ⭐ **[torrent-control](https://github.com/Mika-/torrent-control)** or [Remote Torrent Adder](https://github.com/bogenpirat/remote-torrent-adder) - Easily Send Torrents to Client * ⭐ **[Knaben](https://knaben.eu/)**
* [Motrix](https://motrix.app/) - [GitHub](https://github.com/agalwood/Motrix) * ⭐ **[SolidTorrents](https://solidtorrents.to/)**
* [WizTorrent](https://wiztorrent.com/) - Torrent Player / WebShare * ⭐ **[Torrentz2](https://torrentz2.nz/)**
* [Picotorrent](https://picotorrent.org/) * [iDope](https://idope.se)
* [BiglyBT](https://www.biglybt.com/) * [Bitsearch](https://bitsearch.to/)
* [LIII](https://codecpack.co/download/LIII-BitTorrent-Client.html) * [Torrent Finder](https://torrent-finder.com/)
* [PikaTorrent](https://www.pikatorrent.com/) - [GitHub](https://github.com/G-Ray/pikatorrent) * [TorrentDownload](https://www.torrentdownload.info/)
* [Distribyted](https://distribyted.com/) - [GitHub](https://github.com/distribyted/distribyted) * [Dirty Torrents](https://dirtytorrents.com/)
* [Crawfish](https://github.com/drakonkat/Crawfish) * [TorrentQuest](https://torrentquest.com/)
* [Tribler](https://www.tribler.org/) - Tor-inspired Client / [GitHub](https://github.com/Tribler/tribler) * [DaMag](https://damag.net/)
* [XD-Torrent](https://xd-torrent.github.io/) - Anonymous P2P Torrent Client * [Cleanbay](https://cleanbay.netlify.app/)
* [BitSwarm](https://github.com/SuRGeoNix/BitSwarm/) - Bittorrent Client Library * [Torrends](https://torrends.to/)
* [Instant.io](https://instant.io/) - Stream Torrents in Browser * [CloudTorrents](https://cloudtorrents.com/)
* [BTorrent](https://btorrent.xyz/) - Stream Torrents in Browser * [BTMET](https://btmet.com/)
* [Magnet Player](https://ferrolho.github.io/magnet-player/) - Stream Torrents in Browser * [BT4G](https://bt4gprx.com/)
* [BitFord](https://github.com/astro/bitford) - Chrome * [Torlock](https://www.torlock.com/), [2](https://www.torlock2.com/)
* [Rats Search](https://github.com/DEgITx/rats-search) - Torrent Search Client * [TorrentProject2](https://torrentproject2.com/), [2](https://torrentproject2.net/)
* [Download Torrents Through I2P](https://decentnet.github.io/blog/20200329-download-torrents-through-i2p.html) * [0Mag](https://www.0mag.net/), [2](https://16mag.net/)
* [flood](https://flood.js.org/) - rTorrent, Transmission & qBittorrent WebUI / [GitHub](https://github.com/jesec/flood) * [TorrentDownloads](https://www.torrentdownloads.pro/)
* [/r/Seedboxes](https://www.reddit.com/r/seedboxes/) - Seedbox Subreddit * [concen](https://www.concen.org/torrents)
* [BTSearch](https://www.btsearch.love/en)
*** * [EXT Torrents](https://extranet.torrentbay.to/)
* [TorrentSeeker](https://torrentseeker.com)
## ▷ qBittorrent Tools * [Torrentzeta](https://www.torrentzeta.com/)
* [Veoble](https://veoble.com/torrent/)
* 🌐 **[QBT Plugins](https://github.com/qbittorrent/search-plugins?tab=readme-ov-file#search-plugins)** - Plugins Index * [TorrentSearchRobot](https://t.me/TorrentSearchRoBot) - Telegram Torrent Search
* 🌐 **[QBT Themes](https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-qBittorrent-themes)** - Themes Index * [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Magnet Web App Search
* [qBitMF](https://github.com/qBitMF/qBitMF) - Multi-Connection Tool * [Torrentinim](https://github.com/sergiotapia/torrentinim) - Self-Hosted Torrent Search Engine
* [VueTorrent](https://github.com/WDaan/VueTorrent) - Web Clients * [torrentsearcher_bot](https://t.me/torrentsearcher_bot), [torrenthuntbot](https://t.me/torrenthuntbot) or [FDTorrentSearchBot](https://t.me/FDTorrentSearchBot) - Telegram Torrent Search Bot
* [qBitController](https://github.com/Bartuzen/qBitController) - Mobile Controllers
* [Docker QBT](https://github.com/linuxserver/docker-qbittorrent) or [QBT VPN](https://github.com/binhex/arch-qbittorrentvpn) - Docker Builds ***
* [QBT Mega](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent_MEGA.ipynb) - Mega Upload Script
* [QBT Gdrive](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent.ipynb) - Gdrive Upload Script ## ▷ [Video Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_sites)
* [Dark Theme](https://draculatheme.com/qbittorrent) or [iOS Style](https://github.com/ntoporcov/iQbit/) - QBT Themes
* [qBitEndpoints](https://rentry.co/qBitEndpoints) - API Endpoints ***
*** ## ▷ [Anime Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25B7_anime_torrenting)
## ▷ Remote Torrenting ***
* ↪️ **[Torrent to GDrive](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_torrent_to_gdrive)** ## ▷ [Educational Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25BA_torrenting)
* ⭐ **[Multi-Up](https://multiup.io/en/upload/from-torrent)** - Torrent to DDL Sites
* ⭐ **[webtor](https://webtor.io/)** - Torrent to Cloud and Stream / [Send Magnets](https://greasyfork.org/en/scripts/481975) ***
* ⭐ **[Seedr](https://www.seedr.cc/)** - [Telegram Bot](https://t.me/TorrentSeedrBot) / [API Wrapper](https://github.com/theabbie/seedr-api), [2](https://github.com/AnjanaMadu/SeedrAPI) - Torrent to Cloud and Stream
* [Bitport](https://bitport.io/welcome) - Torrent to Cloud and Stream ## ▷ [Game Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25BA_download_games)
* [TorrentSafe](https://www.torrentsafe.com/) - Torrent to Cloud and Stream
* [ZBIGZ](https://zbigz.com/) - Torrent to Cloud and Stream ***
* [TorBox](https://torbox.app/) - Torrent to Cloud
* [Demagnetize](http://demagnetize.link/) - Torrent to DDL ## ▷ [Audio Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_audio_torrenting)
*** ***
## ▷ [Android Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_torrenting) # ► Tracker Invites
*** * 🌐 **[Private Trackers General](https://rentry.co/private-trackers)** or [Private Trackers Guide](https://wiki.installgentoo.com/wiki/Private_trackers) - Private Tracker Guides
* 🌐 **[Scene Related](https://opentrackers.org/links/warez-scene/#scenerelated)** - Warez / Scene Site Index
## ▷ [iOS Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_ios_torrenting) * ⭐ **[Graph](https://inviteroute.github.io/graph/)** - Private Tracker Connections Guide
* ⭐ **[TrackerStatus](https://trackerstatus.info/)** - Tracker Status Updates
*** * [TrackerChecker](https://github.com/NDDDDDDDDD/TrackerChecker) - Check if Private Trackers Open Signups
* [/r/trackers](https://reddit.com/r/trackers) - Tracker Discussion
# ► Tracker Invites * [TheShow](https://theshow.click/login.php) - Open Registrations
* [MyAnonaMouse](https://www.myanonamouse.net/) - Open Applications
* 🌐 **[Private Trackers General](https://rentry.co/private-trackers)** or [Private Trackers Guide](https://wiki.installgentoo.com/wiki/Private_trackers) - Private Tracker Guides * [hdvinnie](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/) - Open Tracker Invites
* 🌐 **[Scene Related](https://opentrackers.org/links/warez-scene/#scenerelated)** - Warez / Scene Site Index * [Tracker Tracker](https://docs.google.com/spreadsheets/d/1zYZ2107xOZwQ37AjLTc5A4dUJl0ilg8oMrZyA0BGvc0/) - Open Tracker Invites
* ⭐ **[The Sheet](https://inviteroute.github.io/sheet/)** or [Graph](https://inviteroute.github.io/graph/) - Private Tracker Guides * [OpenSignups](https://t.me/trackersignup) - Open Signups Private Trackers / Telegram
* ⭐ **[TrackerStatus](https://trackerstatus.info/)** - Tracker Status Updates * [Upload-Assistant](https://github.com/L4GSP1KE/Upload-Assistant) - Private Tracker Auto-Upload
* [TrackerChecker](https://github.com/NDDDDDDDDD/TrackerChecker) - Check if Private Trackers Open Signups * [Bemaniso](https://bemaniso.ws/) - Torrent Tracker
* [/r/trackers](https://reddit.com/r/trackers) - Tracker Discussion * [TrackerScreenshot](https://github.com/KlevGG/TrackerScreenshot) - Auto Screenshot Tracker Stats
* [/r/OpenSignups](https://www.reddit.com/r/OpenSignups/) or [/r/OpenedSignups](https://www.reddit.com/r/OpenedSignups/) - Open Tracker Signup Subs
* [TheShow](https://theshow.click/login.php) - Open Registrations ***
* [MyAnonaMouse](https://www.myanonamouse.net/) - Open Applications
* [hdvinnie](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/) - Private Tracker List # ► Helpful Sites / Apps
* [OpenSignups](https://t.me/trackersignup) - Open Signups Private Trackers / Telegram
* [Upload-Assistant](https://github.com/L4GSP1KE/Upload-Assistant) - Private Tracker Auto-Upload * 🌐 **[ngosang](https://ngosang.github.io/trackerslist/)** / [2](https://ngosang.github.io/trackerslist/trackers_all.txt), [trackerslist](https://trackerslist.com/) / [GitHub](https://github.com/XIU2/TrackersListCollection) or [NewTrackOn](https://newtrackon.com/list) - Tracker Lists
* [TrackerScreenshot](https://github.com/KlevGG/TrackerScreenshot) - Auto Screenshot Tracker Stats * 🌐 **[Auto Torrent Tools List](https://redd.it/hbwnb2)**, [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [/r/softwarr](https://reddit.com/r/softwarr)
* ⭐ **[PreDB.me](https://predb.me/)** / [PreDB.net](https://predb.de/), [M2V](https://m2v.ru/), [Xrel](https://www.xrel.to/) or [srrDB](https://www.srrdb.com/) - Scene Release Tracker
*** * ⭐ **[T2M](https://nutbread.github.io/t2m/)** / [2](https://github.com/nutbread/t2m), [btsow](https://btsow.motorcycles/) or [Torrent Kitty](https://www.torrentkitty.tv/) / [2](https://www.torrentkitty.net/) / [3](https://www.torrentkitty.lol/) - Torrent to Magnet Converters
* ⭐ **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter
# ► Helpful Sites / Apps * ⭐ **[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country
* [WarezBot](https://github.com/enzobes/WarezBot) - Discord Scene Release Tracker
* 🌐 **[ngosang](https://ngosang.github.io/trackerslist/)** / [2](https://ngosang.github.io/trackerslist/trackers_all.txt), [trackerslist](https://trackerslist.com/) / [GitHub](https://github.com/XIU2/TrackersListCollection) or [NewTrackOn](https://newtrackon.com/list) - Tracker Lists * [btcache](https://btcache.me/), [iTorrents](https://itorrents.org) or [Torrage](https://torrage.info/) - Torrent Storage Cache
* 🌐 **[Auto Torrent Tools List](https://redd.it/hbwnb2)** / [2](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps) * [InfoTorrent](https://infotorrent.tnl.one/) or [Webtorrent Checker](https://checker.openwebtorrent.com/) - Check Torrent File Health
* ⭐ **[Milkie](https://milkie.cc)** / [Discord](https://discord.com/invite/E4khNy5dz3), [Scnlog](https://scnlog.me) or [PreDB.me](https://predb.me) - Scene Release Download * [TorrentTags](https://torrenttags.com/) - Check Torrents for Copyright Claims
* ⭐ **[PreDataBA](https://predataba.se)**, [Xrel](https://www.xrel.to), [PreDB.net](https://predb.de), [srrDB](https://www.srrdb.com) or [M2V](https://m2v.ru) - Scene Release İnfo * [MagLit](https://maglit.me/) - Magnet Link Shorteners
* ⭐ **[T2M](https://nutbread.github.io/t2m/)** / [2](https://github.com/nutbread/t2m), [btsow](https://btsow.motorcycles/) or [Torrent Kitty](https://www.torrentkitty.tv/) / [2](https://www.torrentkitty.net/) / [3](https://www.torrentkitty.lol/) - Torrent to Magnet Converters * [Magnet Link Generator](https://magnetlinkgenerator.com/) - Magnet Link Generator
* ⭐ **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter * [magnet2list](https://hutstep.github.io/magnet2list/) - Convert Magnets to Tracker Lists
* ⭐ **[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country * [RSSFeedz](https://t.me/rssfeedz) - Torrent RSS Feed
* [WarezBot](https://github.com/enzobes/WarezBot) - Discord Scene Release Tracker * [OpenWebTorrent](https://openwebtorrent.com/) - Free Webtorrent Tracker
* [btcache](https://btcache.me/), [iTorrents](https://itorrents.org) or [Torrage](https://torrage.info/) - Torrent Storage Cache * [AutoDL-Irssi](https://autodl-community.github.io/autodl-irssi/) - IRC Channel Monitor / Autodownload / [Slack Notifications](https://gist.github.com/Igglybuff/00d5e91274a562ac724d358bbbc8bc7b)
* [InfoTorrent](https://infotorrent.tnl.one/) or [Webtorrent Checker](https://checker.openwebtorrent.com/) - Check Torrent File Health * [PrivTracker](https://privtracker.com/) - Private BitTorrent Tracker Generator / [GitHub](https://github.com/meehow/privtracker)
* [TorrentTags](https://torrenttags.com/) - Check Torrents for Copyright Claims * [AnonSeed](https://www.anonseed.com/) - Anonymous Torrent Sharing
* [MagLit](https://maglit.me/) - Magnet Link Shorteners * [Torrent-Creator](https://github.com/Kimbatt/torrent-creator) - Browser Torrent Creator
* [Magnet Link Generator](https://magnetlinkgenerator.com/) - Magnet Link Generator * [Torrent Parts](https://torrent.parts/) or [Torrent File Editor](https://torrent-file-editor.github.io/) - Edit Torrents Files
* [magnet2list](https://hutstep.github.io/magnet2list/) - Convert Magnets to Tracker Lists * [/r/torrents](https://reddit.com/r/torrents) or [r/VPNTorrents](https://reddit.com/r/vpntorrents) - Torrenting Discussion
* [RSSFeedz](https://t.me/rssfeedz) - Torrent RSS Feed * [IKnowWhatYouDownload](https://iknowwhatyoudownload.com/) - View Torrents Downloaded by your IP (can be inaccurate)
* [OpenWebTorrent](https://openwebtorrent.com/) - Free Webtorrent Tracker
* [AutoDL-Irssi](https://autodl-community.github.io/autodl-irssi/) - IRC Channel Monitor / Autodownload / [Slack Notifications](https://gist.github.com/Igglybuff/00d5e91274a562ac724d358bbbc8bc7b)
* [PrivTracker](https://privtracker.com/) - Private BitTorrent Tracker Generator / [GitHub](https://github.com/meehow/privtracker)
* [AnonSeed](https://www.anonseed.com/) - Anonymous Torrent Sharing
* [Torrent-Creator](https://github.com/Kimbatt/torrent-creator) - Browser Torrent Creator
* [Torrent Parts](https://torrent.parts/) or [Torrent File Editor](https://torrent-file-editor.github.io/) - Edit Torrents Files
* [/r/torrents](https://reddit.com/r/torrents) or [r/VPNTorrents](https://reddit.com/r/vpntorrents) - Torrenting Discussion
* [IKnowWhatYouDownload](https://iknowwhatyoudownload.com/) - View Torrents Downloaded by your IP (can be inaccurate)

View File

@ -1,6 +1,4 @@
**[Adblock Filter List](https://windowsaurora.github.io/FMHYFilterlist/site/index.html)** / [GitHub](https://github.com/WindowsAurora/FMHYFilterlist/) # Untrusted Sites / Software
^ Filter list with the sites listed below for adblockers.
*** ***
@ -8,9 +6,7 @@
**Note** - Scene groups do not have their own sites, so it's best to avoid anything claiming to represent one. **Note** - Scene groups do not have their own sites, so it's best to avoid anything claiming to represent one.
* 🌐 **[Untrusted Uploaders](https://rentry.org/pgames#untrusted-uploaders)** * IGG / LoadGames - Caught with [malware](https://redd.it/bzczk6) / [2](https://i.imgur.com/jyFj8Kh.png) / [3](https://i.imgur.com/9w5dyTU.png), doxxed member, added DRM to games
* 🌐 **[Fake FitGirl Sites](https://rentry.co/FakeFitgirlwebsites)**
* IGG / LoadGames - Caught with [malware](https://redd.it/bzczk6) / [2](https://i.ibb.co/fkXpgsq/jyFj8Kh.png) / [3](https://i.ibb.co/xmj2Vqh/9w5dyTU.png), doxxed member, added DRM to games
* OceanOfGames - Caught with malware multiple times * OceanOfGames - Caught with malware multiple times
* CrackingPatching - Caught with [malware](https://redd.it/qy6z3c) * CrackingPatching - Caught with [malware](https://redd.it/qy6z3c)
* xGIROx - Caught with malware * xGIROx - Caught with malware
@ -19,7 +15,9 @@
* cracked-games - Caught with malware * cracked-games - Caught with malware
* Wifi4Games - Caught with malware * Wifi4Games - Caught with malware
* GameFabrique - IGG uploads + [adware installers](https://rentry.co/GameFabrique_Adware/) * GameFabrique - IGG uploads + [adware installers](https://rentry.co/GameFabrique_Adware/)
* SteamUnlocked - [IGG uploads](https://i.ibb.co/VgW2ymY/YUnRNpN.png) + very slow file host * SteamUnlocked - [IGG uploads](https://i.imgur.com/YUnRNpN.png) + very slow file host
* [Untrusted Uploaders](https://rentry.org/pgames#untrusted-uploaders)
* [Fake FitGirl Sites](https://rentry.co/FakeFitgirlwebsites)
*** ***
@ -27,22 +25,22 @@
**Note** - YouTube videos claiming to give away free software are nearly always scams. **Note** - YouTube videos claiming to give away free software are nearly always scams.
* GetIntoPC / GetIntoMAC - Caught with malware multiple times * GetIntoPC / GetIntoMAC - Caught with malware multiple times
* SadeemPC / SadeemAPK - Caught with malware multiple times * SadeemPC / SadeemAPK - Caught with malware multiple times
* KaranPC - Caught with malware multiple times * KaranPC - Caught with malware multiple times
* AliTPB / AliPak / b4tman - Caught with malware multiple times * AliTPB / AliPak / b4tman - Caught with malware multiple times
* FileCR - Caught with malware [multiple times](https://rentry.co/filecr_malware) * FileCR - Caught with malware [multiple times](https://rentry.co/filecr_malware)
* FTUApps - Caught with [malware](https://redd.it/120xk62) * FTUApps - Caught with [malware](https://redd.it/120xk62)
* S0ft4PC / Portable4PC - Caught with malware * S0ft4PC / Portable4PC - Caught with malware
* CracksHash - Caught with [malware](https://redd.it/lklst7) * CracksHash - Caught with [malware](https://redd.it/lklst7)
* haxNode - Caught with [malware](https://www.virustotal.com/gui/file/e6318aa4432c304b234df65f5d87bf2577b930ed68ac7e68efcb76b465dc0784) * haxNode - Caught with [malware](https://www.virustotal.com/gui/file/e6318aa4432c304b234df65f5d87bf2577b930ed68ac7e68efcb76b465dc0784)
* IGI30 - Caught with malware * IGI30 - Caught with malware
* MainRepo / MRepo - Caught with [malware](https://rentry.co/zu3i6) / Note that Magisk Module MRepo is unrelated * MainRepo / MRepo - Caught with [malware](https://rentry.co/zu3i6) / Note that Magisk Module MRepo is unrelated
* YASDL - Uploaded versions of stardock / jetbrains with malware * YASDL - Uploaded versions of stardock / jetbrains with malware
* AllPCWorld - Uploaded KMS Matrix which is known malware * AllPCWorld - Uploaded KMS Matrix which is known malware
* RSLOAD - Uploaded the same version of malwarebytes that got FileCR in trouble / [utorrent malware](https://i.ibb.co/QXrCfqQ/Untitled.png) * RSLOAD - Uploaded the same version of malwarebytes that got FileCR in trouble
* AppValley / TutuBox / Ignition - History of [ddos attacks](https://github.com/nbats/FMHYedit/pull/307) * AppValley / TutuBox / Ignition - History of [ddos attacks](https://github.com/nbats/FMHYedit/pull/307)
* CNET / Download.com / ZDNET / Softonic - History of [adware](https://www.reddit.com/r/software/comments/9s7wyb/whats_the_deal_with_sites_like_cnet_softonic_and/e8mtye9/) / [2](https://ibb.co/tLc5KR7) * CNET / Download.com / ZDNET - History of [adware](https://www.reddit.com/r/software/comments/9s7wyb/whats_the_deal_with_sites_like_cnet_softonic_and/e8mtye9/)
*** ***
@ -71,18 +69,29 @@
* Gen Digital / Norton - Owned by Avast * Gen Digital / Norton - Owned by Avast
* Avira - Owned by Gen Digital * Avira - Owned by Gen Digital
* CCleaner - Owned by Avast, best to use built-in win 11 tool or bleachbit * CCleaner - Owned by Avast, best to use built-in win 11 tool or bleachbit
* Private Internet Access / ExpressVPN / ZenMate / CyberGhost - Owned by [adware distributor Kape](https://redd.it/q3lepv) * Private Internet Access / ExpressVPN / ZenMate / CyberGhost - Owned by [malware distributor Kape](https://redd.it/q3lepv)
* Acord (discord mod) - Has remote eval backdoor [backdoor](https://gist.github.com/Vendicated/fef37323939e930b52a0e5ec379052bc)
* BlueKik / Bluecord (chat mods) - History of [spam](https://redd.it/12h2v6n) / [spying](https://rentry.co/tvrnw) * BlueKik / Bluecord (chat mods) - History of [spam](https://redd.it/12h2v6n) / [spying](https://rentry.co/tvrnw)
* Kik (messaging app) - App used by mostly [predators / scammers](https://youtu.be/9sPaJxRmIPc) * Kik (messaging app) - App used by mostly [predators / scammers](https://youtu.be/9sPaJxRmIPc)
* TLauncher (minecraft launcher) - [Shady](https://redd.it/zmzzrt) business practices / Note that TLauncher Legacy is unrelated * TLauncher (minecraft launcher) - [Shady](https://redd.it/zmzzrt) business practices / Note that TLauncher Legacy is unrelated
* PolyMC (minecraft launcher) - Owner [kicked](https://redd.it/y6lt6s) all members from repo / discord. Keep in mind PollyMC (two L's) is safe. * PolyMC (minecraft launcher) - Owner [kicked](https://redd.it/y6lt6s) all members from repo / discord. Keep in mind PollyMC (two L's) is safe.
* GShade (ReShade mod) - Dev added code that can trigger unwanted [reboots](https://rentry.co/GShade_notice) * GShade (ReShade mod) - Dev added code that can trigger unwanted [reboots](https://rentry.co/GShade_notice)
* TotalAV / PC Protect / Protected - Antivirus Software [Scam](https://www.malwarebytes.com/blog/detections/pup-optional-totalav) / [2](https://www.malwarebytes.com/blog/detections/pup-optional-pcprotect) / [3](https://youtu.be/PcS3EozgyhI) * TotalAV / PC Protect / Protected - Antivirus Software [Scam](https://www.malwarebytes.com/blog/detections/pup-optional-totalav) / [2](https://www.malwarebytes.com/blog/detections/pup-optional-pcprotect) / [3](https://youtu.be/PcS3EozgyhI)
*** ***
### [Fake Z-Lib Sites](https://redd.it/16xtm67) / [2](https://ibb.co/MhfGTWx) ### [Fake Z-Lib Sites](https://i.imgur.com/z4Ku77B.png)
### [Fake Windows Activators](https://web.archive.org/web/20240529222658/https://pastebin.com/gCmWs2GR) ### [Fake Windows Activators](https://i.imgur.com/Lv2FYbw.png)
### [Unsafe Wayback Machine Links](https://rentry.co/ue9qk) ***
### How-to Send Reports
* To suggest something for the list, please leave a comment on [this thread](https://www.reddit.com/r/FREEMEDIAHECKYEAH/comments/10bh0h9/unsafe_sites_software_thread/), or contact us via [Discord](https://discord.gg/Stz6y6NgNg).
* Never include a URL, just the name of the site / software, and the reason you feel people should avoid it.
***
[Wayback Machine Links](https://rentry.co/ue9qk)

View File

@ -1,487 +1,463 @@
*** ***
*** ***
**[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/tools-index)** **[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/tools-index)**
*** ***
*** ***
# ► Video Tools # ► Video Tools
* ↪️ **[AI Video Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_video_generation)** * ⭐ **[PixVerse](https://pixverse.ai/)** / [Discord](https://discord.com/invite/MXHErdJHMg) or [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - AI Video Generators
* ⭐ **[Waifu2x GUI](https://github.com/AaronFeng753/Waifu2x-Extension-GUI)**, [Video2x](https://github.com/k4yt3x/video2x), [Enhancr](https://github.com/mafiosnik777/enhancr) or [Dandere2x](https://github.com/akai-katto/dandere2x) - Video Upscalers * ⭐ **[Video2x](https://github.com/k4yt3x/video2x/)** or [Enhancr](https://github.com/mafiosnik777/enhancr) - Video Upscalers
* ⭐ **[PlayPhrase](https://playphrase.me/)**, [clip.cafe](https://clip.cafe/), [ClipBase](https://clipbase.xyz/), [Filmot](https://filmot.com/) or [Yarn](https://yarn.co/) / [2](https://getyarn.io/) - Internet Clip Quote Search * ⭐ **[PlayPhrase](https://playphrase.me/)**, [ClipBase](https://clipbase.xyz/), [Filmot](https://filmot.com/) or [Yarn](https://yarn.co/) / [2](https://getyarn.io/) - Internet Clip Quote Search
* [VCSI](https://github.com/amietn/vcsi) - Create Video Contact Sheets / Thumbnails * [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab), [text-to-video](https://text-to-video.vercel.app), [Text2Video-Zero](https://github.com/Picsart-AI-Research/Text2Video-Zero), [LensGo](https://lensgo.ai/), [Pika Labs](https://www.pika.art/) or [Damo](https://huggingface.co/spaces/damo-vilab/modelscope-text-to-video-synthesis) - Text to Video AIs
* [VMAF](https://github.com/Netflix/vmaf) - Video Quality Assessment * [Rollideo](https://rollideo.com/) - Text to Subbed Video
* [Video Llava](https://replicate.com/nateraw/video-llava) - Video Description AI * [Video Llava](https://replicate.com/nateraw/video-llava) - Video Description AI
* [VideoSmaller](https://www.videosmaller.com/), [YouCompress](https://www.youcompress.com/), [Compress Video Online](https://compress-video-online.com/), [8mb.video](https://8mb.video/) or [MP4Compress](https://www.mp4compress.com/) - Video Compressors * [Anime4K](https://github.com/bloc97/Anime4K) - Anime Video Upscaler
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder * [TinyVid](https://kamua.com/tinyvid), [VideoSmaller](https://www.videosmaller.com/), [Compress Video Online](https://compress-video-online.com/), [8mb.video](https://8mb.video/) or [MP4Compress](https://www.mp4compress.com/) - Video Compressors
* [SimSwap](https://github.com/neuralchen/SimSwap) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools * [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
* [ImgBurn](https://www.majorgeeks.com/files/details/imgburn.html), [DVDStyler](https://www.dvdstyler.org/en/), [DeepBurner](https://www.deepburner.com/) or [Alcohol Soft](https://www.alcohol-soft.com/) - CD / DVD Burning * [SimSwap](https://github.com/neuralchen/SimSwap) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
* [MakeMKV](https://www.makemkv.com/) - Create MKV From Blu-ray / DVD * [deepware](https://scanner.deepware.ai/) - Detect Deepfake Videos
* [VidCoder](https://vidcoder.net/) or [DVDDecrypter](http://dvddecrypter.org.uk/) - DVD / Blu-ray Ripping * [ImgBurn](https://www.majorgeeks.com/files/details/imgburn.html), [DVDStyler](https://www.dvdstyler.org/en/), [DeepBurner](https://www.deepburner.com/) or [Alcohol Soft](https://www.alcohol-soft.com/) - CD / DVD Burning
* [DGDemux](https://www.rationalqm.us/dgdemux/dgdemux.html) - Blu-Ray/UHD Disk Demuxer * [MakeMKV](https://www.makemkv.com/) - Create MKV From Blu-ray / DVD
* [PgcDemux](https://www.videohelp.com/software/PgcDemux) - DVD Disk Demuxer * [VidCoder](https://vidcoder.net/) or [DVDDecrypter](http://dvddecrypter.org.uk/) - DVD / Blu-ray Ripping
* [BatchGuy](https://github.com/yaboy58/BatchGuy) - Blu-Ray Ripping * [BatchGuy](https://github.com/yaboy58/BatchGuy) - Blu-Ray Ripping
* [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder * [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder
*** ***
## ▷ Video File Hosts ## ▷ Video Hosting
* **Note** - Most file hosts remove files after inactivity, while some delete them regardless. Check each host if you're concerned about file expiry. * ⭐ **[doodstream](https://doodstream.com/)**
* ⭐ **[mixdrop](https://mixdrop.ag/)**
*** * ⭐ **[voe.sx](https://voe.sx/)**
* ⭐ **[catbox](https://catbox.moe/)**
* ⭐ **[UpStream](https://upstream.to/)** - 10GB / 30 Days / Account Required * ⭐ **[streamtape](https://streamtape.com/)** / [2](https://streamtape.to/)
* ⭐ **[DoodStream](https://doodstream.com/)** - 5GB / 60 Days / Account Required * ⭐ **[upstream](https://upstream.to/)**
* ⭐ **[Litterbox](https://litterbox.catbox.moe/)** - 1GB / Temporary * [HoraHora](https://github.com/horahoradev/horahora) or [minv](https://sr.ht/~thecashewtrader/minv/) - Self-Hosted
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever * [vudeo](https://vudeo.co/)
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 Days * [vidyard](https://www.vidyard.com/)
* ⭐ **[Send.cm](https://send.cm/)** - 100GB / 15 Days * [supervideo](https://supervideo.tv/)
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX) * [ydb](https://youdboox.com/)
* [VOE](https://voe.sx/) - Unlimited / 60 Days / 720p / Account Required * [cloudvideo](https://cloudvideo.tv/)
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / 720p / Account Required * [powvideo](https://powvideo.net/)
* [WolfStream](https://wolfstream.tv/) 30GB / 80 Days / Account Required * [streamable](https://streamable.com/)
* [FEX.NET](https://fex.net/) - 100GB / 7 Days * [abyss](https://abyss.to/)
* [Hexupload](https://www.hexupload.net/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days * [videy](https://videy.co/)
* [Fastupload.io](https://fastupload.io/en) - 10GB / 30 Days (60 Days With Account) * [wolfstream](https://wolfstream.tv/)
* [Vidoza](https://vidoza.net/) - 15GB / 15 Days / Account Required * [vidcloud](https://vidcloud.co/)
* [Streamtape](https://streamtape.com/) - 15GB / Account Required / [.to](https://streamtape.to/) * [vidoza](https://vidoza.net/)
* [Dubz](https://dubz.co/) - 200MB / Forever * [fileone](https://fileone.tv/)
* [Streamable](https://streamable.com/) - 250MB / 2 Days (90 Days With Account) * [uqload](https://uqload.co/)
* [webmshare](https://webmshare.com/) - WebM & GIF Hosting / 20MB / Forever * [media.cm](https://media.cm/)
* [Videy](https://videy.co/) - MP4 only * [sendvid](https://sendvid.com/)
* [minv](https://sr.ht/~thecashewtrader/minv/) - Self-Hosted * [WebMShare](https://webmshare.com/) - WebM Hosting
*** ***
## ▷ Screen Recording ## ▷ Screen Recording
* ⭐ **[OBS](https://obsproject.com/)** * ⭐ **[OBS](https://obsproject.com/)**
* ⭐ **[gifcap](https://gifcap.dev/)** / [GitHub](https://github.com/joaomoreno/gifcap), [screengif](https://github.com/dergachev/screengif) or [licecap](https://www.cockos.com/licecap/) - Turn Screencasts into GIFs * ⭐ **[gifcap](https://gifcap.dev/)** / [GitHub](https://github.com/joaomoreno/gifcap), [screengif](https://github.com/dergachev/screengif) or [licecap](https://www.cockos.com/licecap/) - Turn Screencasts into GIFs
* [Shinobi](https://shinobi.video/) - Network Video Recorder * [Shinobi](https://shinobi.video/) - Network Video Recorder
* [MythTV](https://www.mythtv.org/) - Digital Video Recorder (DVR) * [MythTV](https://www.mythtv.org/) - Digital Video Recorder (DVR)
* [tldv](https://tldv.io/) or [ZoomRec](https://github.com/kastldratza/zoomrec) - Record Google Meets / Zoom Calls * [tldv](https://tldv.io/) or [ZoomRec](https://github.com/kastldratza/zoomrec) - Record Google Meets / Zoom Calls
* [FFmpeg](https://ffmpeg.org/) * [FFmpeg](https://ffmpeg.org/)
* [Vileo](https://lukasbach.github.io/vileo/) * [Vileo](https://lukasbach.github.io/vileo/)
* [Shar.ec](https://shar.ec/) * [Shar.ec](https://shar.ec/)
* [Screen Recorder](https://github.com/akon47/ScreenRecorder) * [Screen Recorder](https://github.com/akon47/ScreenRecorder)
* [ScreenREC](https://screen-rec.vercel.app/) * [ScreenREC](https://screen-rec.vercel.app/)
* [RecordScreen](https://recordscreen.io/) * [RecordScreen](https://recordscreen.io/)
* [vokoscreenNG](https://github.com/vkohaupt/vokoscreenNG) * [vokoscreenNG](https://github.com/vkohaupt/vokoscreenNG)
* [Fluent Screen Recorder](https://github.com/MarcAnt01/Fluent-Screen-Recorder) * [Fluent Screen Recorder](https://github.com/MarcAnt01/Fluent-Screen-Recorder)
* [Google Screen Recorder](https://toolbox.googleapps.com/apps/screen_recorder/) * [Google Screen Recorder](https://toolbox.googleapps.com/apps/screen_recorder/)
*** ***
## ▷ Convert / Encode ## ▷ Convert / Encode
* ⭐ **[HandBrake](https://handbrake.fr/)** - Video Encoding Software / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake) * ⭐ **[Encoding Guide](https://sometimes-archives-things.github.io/archived-things/)** / [2](https://encoding-guide.neocities.org/), [MDbook](https://silentaperture.gitlab.io/mdbook-guide/) or [Disc Rip](https://nullish.cat/blog/disc-rip) / [2](https://rentry.org/disc-rip) - Video Encoding / Ripping Guides
* ⭐ **[FFmpeg](https://github.com/FFmpeg/FFmpeg)** or [Axiomui](https://axiomui.github.io/) - Tools to Process Multimedia * ⭐ **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** or [fs927](https://rentry.org/fs927) - Learn how to Remux Videos
* ⭐ **FFmpeg Tools** - [Autobuild](https://github.com/BtbN/FFmpeg-Builds), [2](https://github.com/m-ab-s/media-autobuild_suite) / [Guide](https://github.com/leandromoreira/ffmpeg-libav-tutorial), [2](https://ffmpeg.guide/) / [Cheat Sheet](https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730) / [Commands](https://alfg.dev/ffmpeg-commander/), [2](https://evanhahn.github.io/ffmpeg-buddy/) / [WebM Converter](https://argorar.github.io/WebMConverter/) / [Info Copy](https://github.com/4ndrs/PureMPV) / [Preview Filters](https://ffmpeg.lav.io/) / [AI Commands](https://github.com/gstrenge/llmpeg), [2](https://github.com/TejasQ/idli) * ⭐ **[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools
* ⭐ **[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools * ⭐ **[HandBrake](https://handbrake.fr/)** / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake)
* ⭐ **[archived-things](https://sometimes-archives-things.github.io/archived-things/)**, [The Encoding Guide](https://encoding-guide.neocities.org/) or [Silentaperture](https://silentaperture.gitlab.io/mdbook-guide/) - Video Encoding Guides * ⭐ **[FFmpeg](https://github.com/FFmpeg/FFmpeg)** or [Axiomui](https://axiomui.github.io/)
* ⭐ **[Disc Rip](https://nullish.cat/blog/disc-rip)** - Disc Ripping Guide / [Mirror](https://rentry.org/disc-rip) * ⭐ **FFmpeg Tools** - [Autobuild](https://github.com/BtbN/FFmpeg-Builds), [2](https://github.com/m-ab-s/media-autobuild_suite) / [Guide](https://github.com/leandromoreira/ffmpeg-libav-tutorial), [2](https://ffmpeg.guide/) / [Cheat Sheet](https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730) / [Commands](https://alfg.dev/ffmpeg-commander/), [2](https://evanhahn.github.io/ffmpeg-buddy/) / [WebM Converter](https://argorar.github.io/WebMConverter/) / [Preview Filters](https://ffmpeg.lav.io/)
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** - Learn how to Remux Videos * [Swivel](https://www.newgrounds.com/wiki/creator-resources/flash-resources/swivel) - SWF to Video Converter
* [Swivel](https://www.newgrounds.com/wiki/creator-resources/flash-resources/swivel) - SWF to Video Converter * [DDVT](https://forum.doom9.org/showthread.php?t=183479) - Dolby Vision RPU Demuxing / Injecting / Editing
* [DDVT](https://forum.doom9.org/showthread.php?t=183479) - Dolby Vision RPU Demuxing / Injecting / Editing * [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos
* [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos * [XMedia Recode](https://www.xmedia-recode.de/en/)
* [XMedia Recode](https://www.xmedia-recode.de/en/) - Video Conversion * [staxrip](https://github.com/staxrip/staxrip/) / [Guide](https://telegra.ph/HEVC-Encoding-with-StaxRip-Settings-for-best-compression-included-05-12 )
* [staxrip](https://github.com/staxrip/staxrip/) - Video Encoding * [FastFlix](https://fastflix.org/)
* [IFME](https://github.com/Anime4000/IFME) - Video Encoding * [NEAV1E](https://github.com/Alkl58/NotEnoughAV1Encodes)
* [Voukoder](https://www.voukoder.org/) - Video Encoding Plugin * [Video2Edit](https://www.video2edit.com/)
* [FastFlix](https://fastflix.org/) - Video Conversion / [GitHub](https://github.com/cdgriffith/FastFlix) * [Winnydows](https://winnydows.com/en/)
* [NEAV1E](https://github.com/Alkl58/NotEnoughAV1Encodes), [Av1an](https://github.com/master-of-zen/Av1an) - AV1 Encoding * [sickbeard_mp4_automator](https://github.com/mdhiggins/sickbeard_mp4_automator)
* [Winnydows](https://winnydows.com/en/) - Video Conversion Software * [FastFlix](https://github.com/cdgriffith/FastFlix)
* [sickbeard_mp4_automator](https://github.com/mdhiggins/sickbeard_mp4_automator) - Automate Video Processing * [Video Express Converter](https://vc.germanov.dev/)
* [Video Express Converter](https://vc.germanov.dev/) - Online Video Conversion * [Av1an](https://github.com/master-of-zen/Av1an)
* [Seven Converter](https://converter.sevenbytes.com/) - Video Conversion / [GitHub](https://github.com/SevenbytesSoftware/SevenConverter) * [Seven Converter](https://converter.sevenbytes.com/) / [GitHub](https://github.com/SevenbytesSoftware/SevenConverter)
* [nmkoder](https://github.com/n00mkrad/nmkoder) - Media Encoding And Muxing * [nmkoder](https://github.com/n00mkrad/nmkoder)
* [VideoConverter](https://videoconverter.com/) - Online Video Conversion * [VideoConverter](https://videoconverter.com/)
* [selur](https://www.selur.de/) - Video Encoding * [Boram](https://github.com/Kagami/boram/)
* [vvenc](https://github.com/fraunhoferhhi/vvenc), [vvdec](https://github.com/fraunhoferhhi/vvdec), [VVCEasy](https://github.com/MartinEesmaa/VVCEasy) - VVC Encode / Decode * [selur](https://www.selur.de/)
* [vvenc](https://github.com/fraunhoferhhi/vvenc), [vvdec](https://github.com/fraunhoferhhi/vvdec), [VVCEasy](https://github.com/MartinEesmaa/VVCEasy) - VVC Encode / Decode
***
***
## ▷ Live Streaming
## ▷ Live Streaming
* 🌐 **[Awesome Streaming](https://github.com/juancarlospaco/awesome-streaming-tools)** or [StreamerFreebies](https://streamerfreebies.com/) - Live Streaming Resources
* ⭐ **[OBS](https://obsproject.com/)** - Live Stream Manager * 🌐 **[Awesome Streaming](https://github.com/juancarlospaco/awesome-streaming-tools)**, [StreamerFreebies](https://streamerfreebies.com/) or [VDO Ninja](https://vdo.ninja/) - Live Streaming Resources
* ⭐ **OBS Tools** - [Virtual Cam](https://obsproject.com/forum/resources/obs-virtualcam.949/) / [Tweaks](https://discord.gg/CTT) / [Effects](https://github.com/exeldro/obs-shaderfilter/) / [Keyboard Visualiser](https://github.com/ThoNohT/NohBoard) / [Background Remover](https://github.com/occ-ai/obs-backgroundremoval) / [Phone Controller](https://github.com/Kounex/obs_blade) / [WebRTC Server](https://github.com/GRVYDEV/Project-Lightspeed) / [Plugin Updater](https://ko-fi.com/s/0b5bd4536d) * 🌐 **[Best VTuber](https://gist.github.com/emilianavt/cbf4d6de6f7fb01a42d4cce922795794)** or [VTuber References](https://docs.google.com/spreadsheets/d/15UpI8GEqv22T45AD3L1EgcPB4l2Tvr64aDgLq7xZfMA/htmlview) - VTuber Tool Indexes
* [Stream Elements](https://streamelements.com/) - Streaming Service Manager * ⭐ **[OBS](https://obsproject.com/)** - Live Stream Manager
* [Streamlabs-OBS](https://github.com/stream-labs/desktop) - Live Stream Manager * ⭐ **OBS Tools** - [Virtual Cam](https://obsproject.com/forum/resources/obs-virtualcam.949/) / [Tweaks](https://discord.gg/CTT) / [Effects](https://github.com/Xaymar/obs-StreamFX) / [Keyboard Visualiser](https://github.com/ThoNohT/NohBoard) / [Background Remover](https://github.com/occ-ai/obs-backgroundremoval) / [Phone Controller](https://github.com/Kounex/obs_blade) / [WebRTC Server](https://github.com/GRVYDEV/Project-Lightspeed)
* [SteamLabs](https://streamlabs.com/) - Live Stream Manager * [Stream Elements](https://streamelements.com/) - Streaming Service Manager
* [Restream](https://restream.io/) - Live Stream Manager * [Streamlabs-OBS](https://github.com/stream-labs/desktop) - Live Stream Manager
* [Twitch Studio](https://www.twitch.tv/broadcast/studio) - Live Stream Manager * [SteamLabs](https://streamlabs.com/) - Live Stream Manager
* [FBX](https://fbx.gg/) - Live Stream Manager * [Restream](https://restream.io/) - Live Stream Manager
* [XSplit](https://www.xsplit.com/) - Live Stream Manager * [Twitch Studio](https://www.twitch.tv/broadcast/studio) - Live Stream Manager
* [TwitchChat](https://twitchat.fr/) - Live Stream Manager / [Discord](https://discord.com/invite/fmqD2xUYvP) * [FBX](https://fbx.gg/) - Live Stream Manager
* [VDO Ninja](https://vdo.ninja/) - Live Stream Colab Tool * [XSplit](https://www.xsplit.com/) - Live Stream Manager
* [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) / [Display Chat](https://github.com/MrBrax/twitch-vod-chat) - Live Stream Recorders * [TwitchChat](https://twitchat.fr/) - Live Stream Manager
* [Owncast](https://owncast.online/), [Restreamer](https://github.com/datarhei/restreamer) or [OpenStreamingPlatform](https://openstreamingplatform.com/) - Self-Hosted Live Streaming * [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) / [Display Chat](https://github.com/MrBrax/twitch-vod-chat) - Live Stream Recorders
* [WDFlat](https://www.wdflat.com/) - Stream Elements * [Owncast](https://owncast.online/) or [OpenStreamingPlatform](https://openstreamingplatform.com/) - Self-Hosted Live Streaming
* [Strem](https://github.com/strem-app/strem) - Stream Automation * [WDFlat](https://www.wdflat.com/) - Stream Elements
* [ppInk](https://github.com/PubPub-zz/ppInk/), [glnk](https://github.com/geovens/gInk), [Annotate Screen](https://annotatescreen.com/) or [Live Draw](https://github.com/antfu/live-draw) - Screen Annotation * [Strem](https://github.com/strem-app/strem) - Stream Automation
* [Songify](https://songify.overcode.tv/) - Current Playing Song App * [ppInk](https://github.com/PubPub-zz/ppInk/), [glnk](https://github.com/geovens/gInk), [Annotate Screen](https://annotatescreen.com/) or [Live Draw](https://github.com/antfu/live-draw) - Screen Annotation
* [StreamPi](https://stream-pi.com/) or [ODeck](https://github.com/willianrod/ODeck) - ElGato Streamdeck Alternatives * [VTuber Kit](https://kyuppin.itch.io/vtuber-kit) or [Vtube Studio](https://denchisoft.com/) - VTuber Apps
* [real-url](https://github.com/wbt5/real-url) - Copy Live Stream URLs * [Kalidoface 3D](https://3d.kalidoface.com/), [VRoid](https://vroid.com/en/studio), [Animaze](https://www.animaze.us/) or [TransTube](https://girkovarpa.itch.io/transtube) - VTuber Characters
* [Chat-Downloader](https://github.com/xenova/chat-downloader) - Retrieve Chat Messages from Livestreams * [avatarify-python](https://github.com/alievk/avatarify-python) or [veadotube](https://olmewe.itch.io/veadotube-mini) - Video Call Avatars
* [real-url](https://github.com/wbt5/real-url) - Copy Live Stream URLs
*** * [Chat-Downloader](https://github.com/xenova/chat-downloader) - Retrieve Chat Messages from Livestreams
## ▷ VTuber Tools ***
* 🌐 **[Runa's Archive](https://kekuwi.github.io/Runa-Archive)** - VTuber Resources # ► Video Players
* [Best VTuber](https://gist.github.com/emilianavt/cbf4d6de6f7fb01a42d4cce922795794) - VTuber Resources
* [VTResources](https://vtresources.carrd.co/) - VTuber Resources * 🌐 **[Awesome Video](https://github.com/krzemienski/awesome-video)** - Video Streaming Resources
* [VTuber Assets](https://discord.gg/acU3dFRtvC) - VTuber Resources * 🌐 **[Video Help](https://www.videohelp.com/software/sections/video-players?orderby=Rating)** - Video Player Index
* [VTuber Kit](https://kyuppin.itch.io/vtuber-kit) - VTuber App * ⭐ **[MPC-HC](https://github.com/clsid2/mpc-hc/)** or [MPC-BE](https://sourceforge.net/projects/mpcbe/) - Video Player
* [Inochi2D](https://inochi2d.com/) - VTuber App / [Discord](https://discord.com/invite/abnxwN6r9v) * ⭐ **[MPV](https://mpv.io/)** / [2](https://mpv-net.github.io/mpv.net-web-site/), [MPV-EASY-Player](https://github.com/422658476/MPV-EASY-Player) - Video Player / [GUI](https://github.com/mpvnet-player/mpv.net)
* [Vtube Studio](https://denchisoft.com/) - VTuber App * ⭐ **[VLC](https://www.videolan.org/)** - Video Player
* [Kalidoface 3D](https://3d.kalidoface.com/), [VRoid](https://vroid.com/en/studio), [Animaze](https://www.animaze.us/) or [TransTube](https://girkovarpa.itch.io/transtube) - VTuber Characters * ⭐ **[Screenbox](https://github.com/huynhsontung/Screenbox)** - Video Player
* [avatarify-python](https://github.com/alievk/avatarify-python) or [veadotube](https://olmewe.itch.io/veadotube-mini) - Video Call Avatars * [Video Player Codecs](https://www.codecguide.com/)
* [VTuberized Logos](https://vtuber-style-logos.vercel.app/) - VTuber Style Logos * [AVPlayer](http://www.awesomevideoplayer.com/) or [GridPlayer](https://github.com/vzhd1701/gridplayer) - Multi-Video Players
* [SPlayer](https://www.splayer.org/) - Video Player w/ Smart Translation
*** * [Pot Player](https://potplayer.daum.net/) - Video Player
* [ImPlay](https://github.com/tsl0922/ImPlay) - Video Player
# ► Video Players * [SMPlayer](https://www.smplayer.info/) / [2](https://sourceforge.net/projects/smplayer/) - Video Player / [YouTube](https://www.smtube.org/)
* [uView](https://www.idruf.com/) - Video Player
* 🌐 **[Awesome Video](https://github.com/krzemienski/awesome-video)** - Video Streaming Resources * [Rise Media Player](https://github.com/Rise-Software/Rise-Media-Player) - Video Player
* 🌐 **[Video Help](https://www.videohelp.com/software/sections/video-players?orderby=Rating)** - Video Player Index * [Flyleaf](https://github.com/SuRGeoNix/Flyleaf) - Video Player
* ⭐ **[MPC-HC](https://github.com/clsid2/mpc-hc/)**, [MPC-QT](https://mpc-qt.github.io/) or [MPC-BE](https://sourceforge.net/projects/mpcbe/) - Video Player * [KikoPlay](https://kikoplay.fun/) - Video Player
* ⭐ **[MPV](https://mpv.io/)** / [GUI](https://mpv-net.github.io/mpv.net-web-site/), [MPV-EASY-Player](https://github.com/422658476/MPV-EASY-Player) - Video Player / [Frontends](https://github.com/mpv-player/mpv/wiki/Applications-using-mpv) * [HTML5 video player enhanced script](https://greasyfork.org/en/scripts/381682-html5)
* ⭐ **[VLC](https://www.videolan.org/)** - Video Player * [Plyr](https://plyr.io/) - Online HTML5, YouTube and Vimeo Player / [GitHub](https://github.com/sampotts/plyr)
* ⭐ **[Screenbox](https://github.com/huynhsontung/Screenbox)** - Video Player * [PiP-Tool](https://github.com/LionelJouin/PiP-Tool) - Use Picture-in-Picture on All Videos
* [Video Player Codecs](https://www.codecguide.com/) * [PlayVideo](https://playvideos.pages.dev/) - GDrive Video Players
* [AVPlayer](http://www.awesomevideoplayer.com/) or [GridPlayer](https://github.com/vzhd1701/gridplayer) - Multi-Video Players * [MotionMonkey](https://omega.gg/MotionMonkey/) - Stream Online Videos in Player
* [SPlayer](https://www.splayer.org/) - Video Player w/ Smart Translation * [StreamLink](https://streamlink.github.io/) - Extract Videos from Sites to Players / [Twitch Adblock](https://github.com/2bc4/streamlink-ttvlol)
* [Pot Player](https://potplayer.daum.net/) - Video Player / [Twitch Addon](https://github.com/TwitchPotPlayer/TwitchPotPlayer) / [YouTube Addon](https://chromewebstore.google.com/detail/potplayer-youtube-shortcu/cfdpeaefecdlkdlgdpjjllmhlnckcodp) * [Hohoema](https://github.com/tor4kichi/Hohoema) - Nico Nico Video Player
* [ImPlay](https://github.com/tsl0922/ImPlay) - Video Player * [polsy.org.uk](https://polsy.org.uk/) - Alt Players for Video Sites
* [SMPlayer](https://www.smplayer.info/) / [2](https://sourceforge.net/projects/smplayer/) - Video Player / [YouTube](https://www.smtube.org/)
* [uView](https://www.idruf.com/) - Video Player ***
* [Rise Media Player](https://github.com/Rise-Software/Rise-Media-Player) - Video Player
* [Flyleaf](https://github.com/SuRGeoNix/Flyleaf) - Video Player ## ▷ Stream Sync
* [MoonPlayer](https://github.com/coslyk/moonplayer) - Video Player
* [KikoPlay](https://kikoplay.fun/) - Video Player * ⭐ **[SyncPlay](https://syncplay.pl/)**
* [Plyr](https://plyr.io/) - Online HTML5, YouTube and Vimeo Player / [GitHub](https://github.com/sampotts/plyr) * ⭐ **[Watch2Gether](https://w2g.tv/)**
* [PiP-Tool](https://github.com/LionelJouin/PiP-Tool) - Use Picture-in-Picture on All Videos * ⭐ **[SyncWatch](https://github.com/Semro/syncwatch)**
* [PlayVideo](https://playvideos.pages.dev/) - GDrive Video Players * ⭐ **[Kosmi](https://kosmi.io/)**
* [MotionMonkey](https://omega.gg/MotionMonkey/) - Stream Online Videos in Player * ⭐ **[neko](https://neko.m1k1o.net/)** / [GitHub](https://github.com/m1k1o/neko)
* [StreamLink](https://streamlink.github.io/) - Extract Videos from Sites to Players / [Twitch Adblock](https://github.com/2bc4/streamlink-ttvlol) * [HyperBeam](https://hyperbeam.com/) / [VIP](https://greasyfork.org/en/scripts/457795)
* [Hohoema](https://github.com/tor4kichi/Hohoema) - Nico Nico Video Player * [Trast](https://trast.live/)
* [polsy.org.uk](https://polsy.org.uk/) - Alt Players for Video Sites * [bear.cat](https://bear.cat/)
* [Metastream](https://getmetastream.com/)
*** * [Caracal Club](https://caracal.club/)
* [CyTube](https://cytu.be/)
## ▷ Stream Sync * [baked.live](https://baked.live/)
* [Rave.io](https://rave.io/)
* ⭐ **[SyncPlay](https://syncplay.pl/)** * [twoseven](https://twoseven.xyz/)
* ⭐ **[Watch2Gether](https://w2g.tv/)** * [WatchPubs](https://watchpubs.com/)
* ⭐ **[SyncWatch](https://github.com/Semro/syncwatch)** * [MovieNight](https://github.com/zorchenhimer/MovieNight)
* ⭐ **[Kosmi](https://kosmi.io/)** * [WatchParty](https://www.watchparty.me/)
* ⭐ **[neko](https://neko.m1k1o.net/)** / [GitHub](https://github.com/m1k1o/neko) * [Kast](https://kast.gg/)
* [HyperBeam](https://hyperbeam.com/) / [VIP](https://greasyfork.org/en/scripts/457795) * [Surge](https://surge.live/)
* [Trast](https://trast.live/) * [Screen Share Party](https://ba.net/screen/)
* [bear.cat](https://bear.cat/) * [TurtleTV](https://turtletv.app/)
* [Metastream](https://getmetastream.com/) * [OpenTogetherTube](https://opentogethertube.com/)
* [Caracal Club](https://caracal.club/)
* [CyTube](https://cytu.be/) ***
* [VideoTogether](https://2gether.video/en-us/)
* [baked.live](https://baked.live/) ## ▷ MPV Tools
* [Rave.io](https://rave.io/)
* [twoseven](https://twoseven.xyz/) * [MPV Config Guide](http://thewiki.moe/tutorials/mpv/), [2](https://iamscum.wordpress.com/guides/videoplayback-guide/mpv-conf/), [3](https://kokomins.wordpress.com/2019/10/14/), [4](https://hooke007-github-io.translate.goog/unofficial/index.html?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp)
* [WatchPubs](https://watchpubs.com/) * [MPV Frontends](https://github.com/mpv-player/mpv/wiki/Applications-using-mpv)
* [MovieNight](https://github.com/zorchenhimer/MovieNight) / [Discord](https://discord.gg/F2VSgjJ) * [ModernX](https://github.com/cyl0/ModernX), [tethys](https://github.com/Zren/mpv-osc-tethys) or [uosc](https://github.com/tomasklaen/uosc) - Alt User Interfaces
* [WatchParty](https://www.watchparty.me/) * [Simple MPV WebUI](https://github.com/open-dynaMIX/simple-mpv-webui) - WebUI Controller
* [Kast](https://kast.gg/) * [MPV Context Menu](https://gitlab.com/carmanaught/mpvcontextmenu)
* [Screen Share Party](https://ba.net/screen/) * [MPV Scripts](https://github.com/mpv-player/mpv/wiki/User-Scripts) - Userscripts
* [TurtleTV](https://turtletv.app/) * [MPlug](https://github.com/Nudin/mplug) - Plugin Manager
* [OpenTogetherTube](https://opentogethertube.com/) * [VideoClip](https://github.com/Ajatt-Tools/videoclip), [2](https://github.com/f0e/mpv-cut) - Clip Tool
* [MPV WebM](https://github.com/ekisu/mpv-webm) - WebM Tool
*** * [Play With MPV](https://greasyfork.org/en/scripts/416271) or [ff2mpv](https://github.com/woodruffw/ff2mpv) - Open Videos with MPV
* [MPV WebTorrent Hook](https://github.com/noctuid/mpv-webtorrent-hook) - Torrent Streamimg
## ▷ MPV Tools * [AutoSubSync MPV](https://github.com/joaquintorres/autosubsync-mpv) - Sub Sync
* [MPV SponsorBlock](https://github.com/po5/mpv_sponsorblock), [2](https://codeberg.org/jouni/mpv_sponsorblock_minimal) - SponsorBlock for MPV
* ↪️ **[MPV Shaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_mpv_shaders)** - * [ThumbFast](https://github.com/po5/thumbfast) - MPV Thumbnails
* [MPV Config Guide](http://thewiki.moe/tutorials/mpv/), [2](https://iamscum.wordpress.com/guides/videoplayback-guide/mpv-conf/), [3](https://kokomins.wordpress.com/2019/10/14/), [4](https://hooke007-github-io.translate.goog/unofficial/index.html?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp) * [FSR](https://gist.github.com/agyild/82219c545228d70c5604f865ce0b0ce5), [NNEDI / Ravu](https://github.com/bjin/mpv-prescalers/) or [FSRCNNX](https://github.com/igv/FSRCNN-TensorFlow/) - MPV Shaders
* [ModernX](https://github.com/cyl0/ModernX), [tethys](https://github.com/Zren/mpv-osc-tethys) or [uosc](https://github.com/tomasklaen/uosc) - Alt User Interfaces
* [Simple MPV WebUI](https://github.com/open-dynaMIX/simple-mpv-webui) - WebUI Controller ***
* [MPV Context Menu](https://gitlab.com/carmanaught/mpvcontextmenu)
* [MPV Scripts](https://github.com/mpv-player/mpv/wiki/User-Scripts) - Userscripts ## ▷ VLC Tools
* [VideoClip](https://github.com/Ajatt-Tools/videoclip), [2](https://github.com/f0e/mpv-cut) - Clip Tool
* [MPV WebM](https://github.com/ekisu/mpv-webm) - WebM Tool * 🌐 **[Awesome VLC](https://github.com/mfkl/awesome-vlc)** - VLC Resources
* [Play With MPV](https://greasyfork.org/en/scripts/416271) or [ff2mpv](https://github.com/woodruffw/ff2mpv) - Open Videos with MPV * [VLSub](https://github.com/exebetche/vlsub) - Sub Downloader
* [MPV WebTorrent Hook](https://github.com/noctuid/mpv-webtorrent-hook) - Torrent Streamimg * [VLC Skin](https://rentry.co/VLC-skin) - VLC Skins
* [AutoSubSync MPV](https://github.com/joaquintorres/autosubsync-mpv) - Sub Sync * [VLC Slow Seek Fix](https://redd.it/os6f1q)
* [MPV SponsorBlock](https://github.com/po5/mpv_sponsorblock), [2](https://codeberg.org/jouni/mpv_sponsorblock_minimal) - SponsorBlock for MPV
* [ThumbFast](https://github.com/po5/thumbfast) - MPV Thumbnails ***
*** # ► Media Servers
## ▷ VLC Tools * 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)**
* ⭐ **[Plex](https://www.plex.tv/)** - Media Server
* 🌐 **[Awesome VLC](https://github.com/mfkl/awesome-vlc)** - VLC Resources * ⭐ **[Jellyfin](https://jellyfin.org/)** - Media Server
* [VLSub](https://github.com/exebetche/vlsub) - Sub Downloader * [TRaSH Guides](https://trash-guides.info/) / [Discord](https://discord.com/invite/4K2kdvwzFh) or [The Complete Guide](https://redd.it/pqsomd) - Server Setup Guides
* [VLC Skin](https://rentry.co/VLC-skin) - VLC Skins * [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [/r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
* [VLC Slow Seek Fix](https://redd.it/os6f1q) * [Organizr](https://github.com/causefx/Organizr), [Reiverr](https://github.com/aleksilassila/reiverr) or [Homarr](https://github.com/ajnart/homarr) - Media Server Managers
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation
*** * [Kodi](https://kodi.tv/) - Media Server
* [Emby](https://emby.media/) - Media Server
# ► Media Servers * [Universal Media Server](https://www.universalmediaserver.com/) - Media Server
* [OSMC](https://osmc.tv/) - Media Server
* 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)** * [Kawaii-Player](https://github.com/kanishka-linux/kawaii-player) - Media Server
* ⭐ **[Plex](https://www.plex.tv/)** - Media Server * [Streama](https://github.com/streamaserver/streama) - Media Server
* ⭐ **[Jellyfin](https://jellyfin.org/)** - Media Server * [Gerbera](https://gerbera.io/) - Media Server
* ⭐ **[Kodi](https://kodi.tv/)** - Media Server * [Homehost](https://github.com/ridhwaans/homehost) - Media Server
* [TRaSH Guides](https://trash-guides.info/) / [Discord](https://discord.com/invite/4K2kdvwzFh) or [The Complete Guide](https://redd.it/pqsomd) - Server Setup Guides * [Dim](https://github.com/Dusk-Labs/dim) - Media Server
* [Self-hosted Anime](https://github.com/shyonae/selfhosted-anime/wiki) - Anime Server Setup Guides * [WatchIt](https://github.com/ZorrillosDev/watchit-app) - Media Server
* [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [/r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools * [SimpleDLNA](https://nmaier.github.io/simpleDLNA/) - Media Server
* [Organizr](https://github.com/causefx/Organizr), [Reiverr](https://github.com/aleksilassila/reiverr) or [Homarr](https://github.com/ajnart/homarr) - Media Server Managers * [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server
* [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer * [Frames](https://github.com/Eleven-am/frames) - GDrive Server
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation * [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Live Channel Media Servers
* [Emby](https://emby.media/) - Media Server * [YTDL-Sub](https://github.com/jmbannon/ytdl-sub) - Add YouTube Channels to Media Servers
* [Universal Media Server](https://www.universalmediaserver.com/) - Media Server * [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy
* [OSMC](https://osmc.tv/) - Media Server * [Autoscan](https://github.com/Cloudbox/autoscan) - Real-Time Plex & Emby File Changes
* [Kawaii-Player](https://github.com/kanishka-linux/kawaii-player) - Media Server * [Ombi](https://github.com/Ombi-app/Ombi) - Plex / Emby User Request Management
* [Streama](https://github.com/streamaserver/streama) - Media Server
* [Gerbera](https://gerbera.io/) - Media Server ***
* [Homehost](https://github.com/ridhwaans/homehost) - Media Server
* [Dim](https://github.com/Dusk-Labs/dim) - Media Server ## ▷ Plex Tools
* [Kyoo](https://github.com/zoriya/Kyoo) - Media Server
* [WatchIt](https://github.com/ZorrillosDev/watchit-app) - Media Server * [Plxplainers](https://www.plxplainers.xyz/), [Hoarding.me](https://hoarding.me/) or [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides
* [SimpleDLNA](https://nmaier.github.io/simpleDLNA/) - Media Server * [Tautulli](https://tautulli.com/) - Server Monitor
* [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server * [Free Plex Server](https://discord.gg/8Jv792Rs7m)
* [SeaAnime](https://seanime.rahim.app/) - Anime Server * [SuperPlex](https://normantheidiot.neocities.org/superplex/) - Plex Plugins
* [Frames](https://github.com/Eleven-am/frames) - GDrive Server * [Kitana](https://github.com/pannal/Kitana) - Plugin Frontend
* [HTPC](https://r-htpc.github.io/wiki/) - Home Theater PC guides / [Subreddit](https://www.reddit.com/r/htpc/) * [PlexDrive](https://github.com/plexdrive/plexdrive) or [mergerfs](https://docs.ultra.cc/books/rclone/page/rclone-vfs-and-mergerfs-setup) - Mount GDrive
* [MSX](https://msx.benzac.de/info/) - Web App * [SyncLounce](https://synclounge.tv/) - Media Sync
* [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Live Channel Media Servers * [PseudoTV](https://github.com/DEFENDORe/pseudotv) - Create TV Channels
* [YTDL-Sub](https://ytdl-sub.readthedocs.io/) - Add YouTube Channels to Media Servers * [Overseerr](https://overseerr.dev/) - User Requests
* [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy * [Pasta Tool](https://www.pastatool.com/) - Audio / Sub Changer
* [Autoscan](https://github.com/Cloudbox/autoscan) - Real-Time Plex & Emby File Changes * [Plex Debrid](https://github.com/itsToggle/plex_debrid) - Debrid for Plex
* [Ombi](https://github.com/Ombi-app/Ombi) - Plex / Emby User Request Management
***
***
## ▷ Jellyfin Tools
## ▷ Plex Tools
* [Jellyfin Setup Guide](https://www.fuzzygrim.com/posts/media-server)
* [Plxplainers](https://www.plxplainers.xyz/) or [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides * [Jellyfin Customization Guide](https://youtu.be/F85qMyBeiDI)
* [Tautulli](https://tautulli.com/) - Server Monitor * [Jellyfin Themes](https://jellyfin.org/docs/general/clients/css-customization.html##community-themes)
* [SuperPlex](https://normantheidiot.neocities.org/superplex/) - Plex Plugins * [/r/JellyfinShares](https://www.reddit.com/r/JellyfinShares/) - Server Sharing
* [Kitana](https://github.com/pannal/Kitana) - Plugin Frontend * [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Client
* [PlexDrive](https://github.com/plexdrive/plexdrive) or [mergerfs](https://docs.ultra.cc/books/rclone/page/rclone-vfs-and-mergerfs-setup) - Mount GDrive * [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) - User Requests
* [SyncLounce](https://synclounge.tv/) - Media Sync * [jellyfin-plugin-anime](https://github.com/jellyfin-archive/jellyfin-plugin-anime) - Anime Plugin
* [PseudoTV](https://github.com/DEFENDORe/pseudotv) - Create TV Channels
* [Overseerr](https://overseerr.dev/) - User Requests / [IMDb Extension](https://chromewebstore.google.com/detail/overseerr-assistant/hopnjiadheaagfhpipecoamoegijhnij) ***
* [Pasta Tool](https://www.pastatool.com/) - Audio / Sub Changer
* [Plex Debrid](https://github.com/itsToggle/plex_debrid) - Debrid for Plex ## ▷ Kodi Tools
*** * ⭐ [Kodi Setup Guide](https://redd.it/zzfdtb)
* [Kodi Builds Chart](https://kodiapps.com/builds-chart)
## ▷ Jellyfin Tools * [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons
* [Plex For Kodi](https://github.com/plexinc/plex-for-kodi) or [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) - Plex Connect
* 🌐 **[Awesome Jellyfin](https://github.com/awesome-jellyfin/awesome-jellyfin)** - Jellyfin Resources * [quasar](https://quasar.surge.sh//) - orrent Plugin
* ⭐ **[Blink](https://github.com/prayag17/Blink)** or [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Clients * [IPTV Client](https://kodi.wiki/view/Add-on:PVR_IPTV_Simple_Client)
* [/r/JellyfinShare](https://www.reddit.com/r/JellyfinShare/) - Jellyfin Server Sharing * [Simkl](https://simkl.com/) - Media Tracker
* [Jellyfin Forum](https://forum.jellyfin.org/) - Official Jellyfin Forum * [Elementum](https://elementum.surge.sh/) - Trakt Sync
* [Jellyfin Vue](https://github.com/jellyfin/jellyfin-vue) - Jellyfin Web Client * [mediaelch](https://github.com/komet/mediaelch) - Media Manager
* [Jellyfin Setup Guide](https://www.fuzzygrim.com/posts/media-server)
* [Jellyfin Customization Guide](https://youtu.be/F85qMyBeiDI)
* [Jellyfin Themes](https://jellyfin.org/docs/general/clients/css-customization/#community-themes) ***
* [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) - User Requests
* [jellyfin-plugin-anime](https://github.com/jellyfin-archive/jellyfin-plugin-anime) - Anime Plugin # ► Video Download
* [Jellyfin RPC](https://github.com/Radiicall/jellyfin-rpc) - Jellyfin Discord Rich Presence
* ↪️ **[YouTube Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)**
*** * ↪️ **[Twitch Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_downloaders)**
* ⭐ **[Download Helper](https://www.downloadhelper.net/)**, [AddonCrop Downloader](https://addoncrop.com/v25/youtube-downloader/), [Cococut](https://cococut.net/), [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
## ▷ Kodi Tools * ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** - Multi-Site / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [2](https://github.com/StefanLobbenmeier/youtube-dl-gui)
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site
* ⭐ **[Elementum](https://elementum.surge.sh/)** - Torrent Streaming / Trakt Sync * ⭐ **[9xbuddy](https://9xbuddy.xyz/)**, [2](https://9xbuddy.com/) - Multi-Site
* [EverythingKodi](https://rumble.com/c/EverythingKodi) - Kodi Addon Tutorials * ⭐ **[Lux](https://github.com/iawia002/lux)** - Multi-Site
* [Kodi Builds Chart](https://kodiapps.com/builds-chart) * [How-to Rip Videos from Amazon](https://web.archive.org/web/20210102125108/https://www.reddit.com/r/Piracy/comments/kmodia/improved_text_video_tutorial_on_how_to_rip_from/)
* [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons * [CD(R)M-Project](https://discord.gg/cdrm-project) - StreamFab Crack
* [Plex For Kodi](https://github.com/plexinc/plex-for-kodi) or [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) - Plex Connect * [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site
* [quasar](https://quasar.surge.sh/) - Torrent Plugin * [ytDownloader](https://ytdn.netlify.app/) - Multi-Site
* [IPTV Client](https://kodi.wiki/view/Add-on:PVR_IPTV_Simple_Client) * [TubeOffline](https://www.tubeoffline.com/) - Multi-Site
* [Simkl](https://simkl.com/) - Media Tracker * [you-get](https://you-get.org/) - Multi-Site
* [Yout](https://yout.com/) - Multi-Site - Multi-Site
* [pastedownload](https://pastedownload.com/)
* [weibomiaopai](https://weibomiaopai.com/download-video-parser.php) - Multi-Site
It integrates with kodi to play movies from torrents. It is something like torrentio + stremio * [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site
* [webvideo-downloader](https://github.com/jaysonlong/webvideo-downloader) - Multi-Site
* [mediaelch](https://github.com/komet/mediaelch) - Media Manager * [TikTok Scraper](https://github.com/drawrowfly/tiktok-scraper), [myfaveTT](https://myfavett.com/), [SnapTik](https://snaptik.app/), [tiktok-to-ytdlp](https://github.com/Dinoosauro/tiktok-to-ytdlp) or [urlescraper](https://github.com/Tomeriko96/urlescraper) - TikTok
* [DMVideo](https://dmvideo.download/) - DailyMotion
*** * [PinCase](https://pincase.xyz/) - Pinterest
* [kmttg](https://www.videohelp.com/software/kmttg) - TivoToGo Download Manager
# ► Video Download * [hls-downloader](https://github.com/puemos/hls-downloader), [hls extension](https://webextension.org/listing/hls-downloader.html) or [hlsloader.com](https://www.hlsloader.com/) - HLS Downloaders
* [GetWVKeys](https://getwvkeys.cc/) - Send Widevine Requests / [GitHub](https://github.com/GetWVKeys/)
* ↪️ **[YouTube Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)**
* ↪️ **[Twitch Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_downloaders)** ***
* ⭐ **[Download Helper](https://www.downloadhelper.net/)**, [Cococut](https://cococut.net/), [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
* ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** - Multi-Site / CLI / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [GUI](https://github.com/StefanLobbenmeier/youtube-dl-gui) # ► Video Editing
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online / [Instances](https://instances.hyper.lol/)
* ⭐ **[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.online/), [3](https://9xbuddy.in/) - Multi-Site / Online * 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)** - AI Video Tools Index
* ⭐ **[Lux](https://github.com/iawia002/lux)** - Multi-Site / CLI * 🌐 **[Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers)** or [Free-Codecs](https://www.free-codecs.com/) - Video Editing Codecs
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media * ⭐ **[EyeCndy](https://eycndy.co/)** - Visual Technique Examples
* [CD(R)M-Project](https://discord.gg/SYyvPxVyyW) - StreamFab Downloading Discord * [MotionFactory](https://www.motionfactory.io/) - Video Editing Workflow Manager
* [TubeOffline](https://www.tubeoffline.com/) - Multi-Site / Online * [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums
* [VideoFK](https://www.videofk.com/) - Multi-Site / Online * [Blaine's Movie Maker Blog](https://movies.blainesville.com/p/wmm-60-on-windows-7.html) - Windows Movie Maker Tutorials
* [SASRIP](https://sasrip.sas41.com/) - Multi-Site / Online
* [you-get](https://you-get.org/) - Multi-Site / CLI ***
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site / Software
* [Yout](https://yout.com/) - Multi-Site / Online ## ▷ Video Editors
* [pastedownload](https://pastedownload.com/) - Multi-Site / Online
* [weibomiaopai](https://weibomiaopai.com/download-video-parser.php) - Multi-Site / Online * ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor
* [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site / Software / [Discord](https://discord.gg/uFNUXvFFmg) * ⭐ **[Shotcut](https://shotcut.org/)** - Video Editor
* [webvideo-downloader](https://github.com/jaysonlong/webvideo-downloader) - Multi-Site / CLI * [Auto-Editor](https://auto-editor.com/) - CLI Editor
* [TikTok Scraper](https://github.com/drawrowfly/tiktok-scraper), [myfaveTT](https://myfavett.com/), [SnapTik](https://snaptik.app/), [tiktok-to-ytdlp](https://github.com/Dinoosauro/tiktok-to-ytdlp) - TikTok * [MoviePy](https://zulko.github.io/moviepy/) - Python Editor
* [Threads Downloader](https://threadsdownloader.com/) - Threads * [Webm Generator](https://github.com/dfaker/WebmGenerator) - Webm Editor
* [urlescraper](https://github.com/Tomeriko96/urlescraper) - Urlebird * [avisynth](http://avisynth.nl/index.php/Main_Page) - Video Processor
* [DMVideo](https://dmvideo.download/) - DailyMotion / Online * [Source Filmmaker](https://store.steampowered.com/app/1840/Source_Filmmaker/) - Steam Movie-Making Tool / [Resources](https://sfmlab.com/)
* [PinCase](https://pincase.xyz/) - Pinterest / Online * [OpenRV](https://github.com/AcademySoftwareFoundation/OpenRV) or [xSTUDIO](https://www.dneg.com/xstudio/) - Image / Sequence Playback Review
* [hls-downloader](https://github.com/puemos/hls-downloader), [hls extension](https://webextension.org/listing/hls-downloader.html) or [hlsloader](https://www.hlsloader.com/) - HLS Downloaders * [Remotion](https://www.remotion.dev/) - Video Editor
* [GetWVKeys](https://getwvkeys.cc/) - Send Widevine Requests / [GitHub](https://github.com/GetWVKeys/) * [Olive](https://www.olivevideoeditor.org/) - Video Editor
* [VirtualDub2](https://sourceforge.net/projects/vdfiltermod/) - Video Editor
*** * [LosslessCut](https://github.com/mifi/lossless-cut) - Video Editor
* [EZVid](https://www.ezvid.com/) - Video Editor
# ► Video Editing * [OpenShot](https://www.openshot.org/) - Video Editor
* [kdenlive](https://kdenlive.org/en/) - Video Editor
* 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)** - AI Video Tools Index * [Lightworks](https://lwks.com/) - Video Editor
* 🌐 **[Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers)** or [Free-Codecs](https://www.free-codecs.com/) - Video Editing Codecs * [VSDC](https://www.videosoftdev.com/) - Video Editor
* ⭐ **[Eyecandy](https://eycndy.co/)** - Visual Technique Examples * [avidemux](https://avidemux.sourceforge.net/) - Video Editor
* [MotionFactory](https://www.motionfactory.io/) - Video Editing Workflow Manager * [Pitivi](https://www.pitivi.org/) - Video Editor
* [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums * [Visla](https://www.visla.us/) - Video Editor
* [Blaine's Movie Maker Blog](https://movies.blainesville.com/p/wmm-60-on-windows-7.html) - Windows Movie Maker Tutorials * [Windows Movie Maker](https://www.majorgeeks.com/files/details/windows_movie_maker.html), [2](https://archive.org/details/mm26enu_202002), [3](https://archive.org/details/MM2.1And2.6_201903) - Video Editor
* [Video Enhance AI](https://www.topazlabs.com/topaz-video-ai) - Video Enhancement Tool
*** * [Gyroflow](https://gyroflow.xyz/) - Video Stabilization / [GitHub](https://github.com/gyroflow/gyroflow)
* [Flowframes](https://nmkd.itch.io/flowframes) / [Beta](https://kemono.party/patreon/user/19695417) or [SVP](https://www.svp-team.com/) / [Guide](https://www.svp-team.com/wiki/Manual:SVPcode) - Video Interpolation / Increase FPS
## ▷ Video Editors * [VideoColorizerColab](https://colab.research.google.com/github/jantic/DeOldify/blob/master/VideoColorizerColab.ipynb) - Video Colorization Colab
* [OpenColorIO](https://opencolorio.org/) - Video Color Manager
* ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor * [FreshLUTs](https://freshluts.com/) - Free LUTs (Color Filters)
* ⭐ **[Shotcut](https://shotcut.org/)** - Video Editor * [Avidemux](http://fixounet.free.fr/avidemux/) - Cut / Filter / Encode
* [Auto-Editor](https://auto-editor.com/) - CLI Editor * [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos
* [MoviePy](https://zulko.github.io/moviepy/) - Python Editor * [Opus](https://www.opus.pro/) - Clip Creator
* [Webm Generator](https://github.com/dfaker/WebmGenerator) - Webm Editor * [blur](https://github.com/f0e/blur) or [Smoothie](https://github.com/couleur-tweak-tips/smoothie-rs) - Add Motion Blur to Videos / [Tutorial](https://youtu.be/16-KU4r3BcA)
* [avisynth](http://avisynth.nl/index.php/Main_Page) or [VapourSynth](https://www.vapoursynth.com/) - Video Processors * [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting
* [Source Filmmaker](https://store.steampowered.com/app/1840/Source_Filmmaker/) - Steam Movie-Making Tool / [Resources](https://sfmlab.com/) * [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools
* [OpenRV](https://github.com/AcademySoftwareFoundation/OpenRV) or [xSTUDIO](https://www.dneg.com/xstudio/) - Image / Sequence Playback Review * [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM
* [Remotion](https://www.remotion.dev/) - Video Editor
* [Olive](https://www.olivevideoeditor.org/) - Video Editor ***
* [VirtualDub2](https://sourceforge.net/projects/vdfiltermod/) - Video Editor
* [LosslessCut](https://github.com/mifi/lossless-cut) - Video Editor ## ▷ Online Editors
* [EZVid](https://www.ezvid.com/) - Video Editor
* [OpenShot](https://www.openshot.org/) - Video Editor * ⭐ **[Mastershot](https://mastershot.app/)**
* [kdenlive](https://kdenlive.org/en/) - Video Editor * [VideoInu](https://videoinu.com/)
* [Lightworks](https://lwks.com/) - Video Editor * [Clideo](https://clideo.com/)
* [VSDC](https://www.videosoftdev.com/) - Video Editor * [Kapwing](https://www.kapwing.com/)
* [avidemux](https://avidemux.sourceforge.net/) - Video Editor * [InVideo](https://invideo.io/)
* [Pitivi](https://www.pitivi.org/) - Video Editor * [Panzoid](https://panzoid.com/)
* [Visla](https://www.visla.us/) - Video Editor * [KeepChangeIt](https://keepchangeit.com/)
* [Windows Movie Maker](https://www.majorgeeks.com/files/details/windows_movie_maker.html), [2](https://archive.org/details/mm26enu_202002), [3](https://archive.org/details/MM2.1And2.6_201903) - Video Editor * [veed.io](https://www.veed.io/tools/video-editor)
* [Video Enhance AI](https://www.topazlabs.com/topaz-video-ai) - Video Enhancement Tool * [Convert2Video](https://convert2video.com/)
* [Gyroflow](https://gyroflow.xyz/) - Video Stabilization / [GitHub](https://github.com/gyroflow/gyroflow) * [Video Cutter](https://video-cutter-js.com/)
* [Flowframes](https://nmkd.itch.io/flowframes) / [Beta](https://kemono.party/patreon/user/19695417) or [SVP](https://www.svp-team.com/) / [Guide](https://www.svp-team.com/wiki/Manual:SVPcode) - Video Interpolation / Increase FPS * [FlexClip](https://www.flexclip.com/)
* [VideoColorizerColab](https://colab.research.google.com/github/jantic/DeOldify/blob/master/VideoColorizerColab.ipynb) - Video Colorization Colab * [Vididoo](https://vididoo.vercel.app/)
* [OpenColorIO](https://opencolorio.org/) - Video Color Manager * [VideoToolbox](https://www.videotoolbox.com/)
* [FreshLUTs](https://freshluts.com/) - Free LUTs (Color Filters) * [VideoCandy](https://videocandy.com/)
* [Avidemux](http://fixounet.free.fr/avidemux/) - Cut / Filter / Encode * [Animoto](https://animoto.com/)
* [suckless-cut](https://github.com/couleur-tweak-tips/suckless-cut) or [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos * [Flixier](https://editor.flixier.com/)
* [Opus](https://www.opus.pro/) - Clip Creator * [descript](https://www.descript.com/)
* [blur](https://github.com/f0e/blur) or [Smoothie](https://github.com/couleur-tweak-tips/smoothie-rs) - Add Motion Blur to Videos / [Tutorial](https://youtu.be/16-KU4r3BcA) * [vidmix](https://vidmix.app/)
* [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting * [mebm](https://bwasti.github.io/mebm/)
* [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools * [Crop Video](https://crop-video.com/) - Crop Videos
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM * [LoopVid](https://loopvid.kastden.org/) - Loop Videos
* [Crossfade](https://crossfade.io/) - Video and Audio Crossfading
*** * [VidLouder](https://www.videolouder.com/) - Increase Video Volume
## ▷ Online Editors ***
* ⭐ **[Pikimov](https://pikimov.com/)** ## ▷ VFX Sites
* ⭐ **[Mastershot](https://mastershot.app/)**
* [VideoInu](https://videoinu.com/) * ⭐ **[Download Pirate](https://www.downloadpirate.com/)** / [Discord](https://discord.gg/ucTvVtBz9Z)
* [Clideo](https://clideo.com/) * [FootageCrate](https://footagecrate.com/)
* [Kapwing](https://www.kapwing.com/) * [FreeVideoEffect](https://freevideoeffect.com/)
* [Panzoid](https://panzoid.com/) * [VideoCoPilot](https://www.videocopilot.net/)
* [Convert2Video](https://convert2video.com/) * [VFXmed](https://www.vfxmed.com/)
* [Omniclip](https://omniclip.app/) - [GitHub](https://github.com/aegir-assembly/omni-clip) * [flex_cg_vfx](https://t.me/flex_cg_vfx)
* [Video Cutter](https://video-cutter-js.com/) * [ShareAE](https://www.shareae.com/) - After Effects
* [Vididoo](https://vididoo.vercel.app/) * [HunterAE](https://hunterae.com/) - After Effects
* [VideoToolbox](https://www.videotoolbox.com/) * [AERiver](https://aeriver.com/) - After Effects
* [VideoCandy](https://videocandy.com/) * [Intro HD](https://intro-hd.net/) - After Effects
* [vidmix](https://vidmix.app/) * [AEDownloadPro](https://aedownloadpro.com/) - After Effects
* [mebm](https://bwasti.github.io/mebm/) * [Adobe After Effects Collection](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - After Effects
* [Video2Edit](https://www.video2edit.com/)
* [Crop Video](https://crop-video.com/) - Crop Videos ***
* [LoopVid](https://loopvid.kastden.org/) - Loop Videos
* [Crossfade](https://crossfade.io/) - Video and Audio Crossfading ## ▷ Animation Tools
* [VidLouder](https://www.videolouder.com/) - Increase Video Volume
* 🌐 **[Creator Resources](https://www.newgrounds.com/wiki/creator-resources/)** - Art & Animation Resource Index
*** * ⭐ **[Unreal Engine](https://www.unrealengine.com/)**, [MoonRay](https://openmoonray.org/), [cgsoftbox](https://t.me/cgsoftbox), [SketchUp](https://www.sketchup.com/) or [Twinmotion](https://www.twinmotion.com/en-US) - 3D Creation Tools
* ⭐ **[LeiaPix](https://www.leiapix.com/)** - 2D Image to 3D Animation Tool
## ▷ VFX Sites * [OpenToonz](https://opentoonz.github.io/e/), [Wick Editor](https://www.wickeditor.com/editor/), [Clipnote Studio](https://calcium-chan.itch.io/clipnote) or [Pencil2D](https://www.pencil2d.org/) - Animation Tools
* [Animaker](https://www.animaker.com/) - Animated Video Creator
* ⭐ **[Download Pirate](https://www.downloadpirate.com/)** / [Discord](https://discord.gg/ucTvVtBz9Z) * [CG_Hacker](https://t.me/CG_Hacker), [cg_tuts](https://t.me/cg_tuts) or [cgreferenceshub](https://t.me/cgreferenceshub) - CG Tutorials
* [FootageCrate](https://footagecrate.com/) * [AMV101](https://www.amv101.com/) - Animated Music Video-Making Guides
* [FreeVideoEffect](https://freevideoeffect.com/) * [Mega Scans](https://quixel.com/megascans) - 3D Scans
* [VideoCoPilot](https://www.videocopilot.net/) * [Mixer](https://quixel.com/mixer) - 3D Texture Creation Tool
* [VFXmed](https://www.vfxmed.com/) * [PlanetSide](https://planetside.co.uk/) - CG Environment Generator
* [flex_cg_vfx](https://t.me/flex_cg_vfx) * [cgplugdump](https://t.me/cgplugdump) - CG Software Plugins
* [ShareAE](https://www.shareae.com/) - After Effects * [AnimeEffects](https://github.com/AnimeEffectsDevs/AnimeEffects), [enve](https://maurycyliebner.github.io/), [Expressive](https://www.expressivesuite.com/), [Cavalry](https://cavalry.scenegroup.co/), [TupiTube](https://tupitube.com/) or [Synfig](https://www.synfig.org/) - 2D Animation Tools
* [HunterAE](https://hunterae.com/) - After Effects * [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork
* [AERiver](https://aeriver.com/) - After Effects * [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool
* [MSRTC](https://msrtc-maharashtra.in/) - After Effects / [Telegram](https://t.me/aftereffectsplugins01) * [Storyboarder](https://wonderunit.com/storyboarder/) - Quickly Visualize & Test Animations / [GitHub](https://github.com/wonderunit/storyboarder)
* [AEDownloadPro](https://aedownloadpro.com/) - After Effects * [LuxCoreRender](https://luxcorerender.org/) - Rendering Engine
* [Intro HD](https://intro-hd.net/) - After Effects * [RenderChan](https://morevnaproject.org/renderchan/) - 2D Animation Render Manager
* [Adobe After Effects Collection](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - After Effects * [Mandelbulber](https://mandelbulber.com/) or [FragM](https://github.com/3Dickulus/FragM) - Fractal Rendering Software / [3D](https://mb3d.overwhale.com/)
* [JWildfire](https://jwildfire.overwhale.com/), [IFSRenderer](https://github.com/bezo97/IFSRenderer) or [Fractorium](http://fractorium.com/) - Flame Fractal Rendering Software
*** * [BestSnip](https://bestsnip.com/animation/), [Sketch Machine](https://sketchmachine.net/), [Plask](https://plask.ai/) or [Rive](https://rive.app/) - Online Animation Tools
* [LibreSprite](https://libresprite.github.io/), [Pixel Compresor](https://makham.itch.io/pixel-composer), [JPixel](https://emad.itch.io/jpixel) or [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Animation Tools
## ▷ Animation Tools * [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks
* 🌐 **[Creator Resources](https://www.newgrounds.com/wiki/creator-resources/)** - Art & Animation Resource Index * [Picrew](https://picrew.me/) - Animated Character Maker
* ⭐ **[Unreal Engine](https://www.unrealengine.com/)**, [MoonRay](https://openmoonray.org/), [cgsoftbox](https://t.me/cgsoftbox), [SketchUp](https://www.sketchup.com/) or [Twinmotion](https://www.twinmotion.com/en-US) - 3D Creation Tools * [Mixamo](https://www.mixamo.com/) or [Cascadeur](https://cascadeur.com/) - 3D Character Animation Tools
* ⭐ **[Immersity AI](https://www.immersity.ai/)** - 2D Image to 3D Animation Tool * [MMHuman3D](https://github.com/open-mmlab/mmhuman3d) - 3D Human Model Creator
* [OpenToonz](https://opentoonz.github.io/e/), [Wick Editor](https://www.wickeditor.com/editor/), [Clipnote Studio](https://calcium-chan.itch.io/clipnote) or [Pencil2D](https://www.pencil2d.org/) - Animation Tools * [Talking Face Avatar](https://github.com/saba99/Talking_Face_Avatar) - Talking Avatar Generator
* [Animaker](https://www.animaker.com/) - Animated Video Creator * [Blender Open Movies](https://youtube.com/playlist?list=PLav47HAVZMjnTFVZL-aImCQIC0uLZtNCz) - CGI Assets
* [CG_Hacker](https://t.me/CG_Hacker), [cg_tuts](https://t.me/cg_tuts) or [cgreferenceshub](https://t.me/cgreferenceshub) - CG Tutorials
* [AMV101](https://www.amv101.com/) - Animated Music Video-Making Guides ***
* [Mega Scans](https://quixel.com/megascans) - 3D Scans
* [Mixer](https://quixel.com/mixer) - 3D Texture Creation Tool ## ▷ Stock Videos
* [PlanetSide](https://planetside.co.uk/) - CG Environment Generator
* [cgplugdump](https://t.me/cgplugdump) - CG Software Plugins * 🌐 **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#videos)** or **[CuteStockFootage](https://cutestockfootage.com/free/video)** - Stock Video Indexes
* [Physically Based](https://physicallybased.info/) - RGB Values of Elements * ⭐ **[VidsPlay](https://www.vidsplay.com/)** - Stock Videos
* [AnimeEffects](https://github.com/AnimeEffectsDevs/AnimeEffects), [enve](https://maurycyliebner.github.io/), [Expressive](https://www.expressivesuite.com/), [Cavalry](https://cavalry.scenegroup.co/), [TupiTube](https://tupitube.com/) or [Synfig](https://www.synfig.org/) - 2D Animation Tools * [4K Media](https://4kmedia.org/) - 4K Stock Videos
* [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork * [Dareful](https://dareful.com/) - 4K Stock Videos
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool * [Monzoom](https://www.monzoom.com/) - 4K Stock Videos
* [Storyboarder](https://wonderunit.com/storyboarder/) - Quickly Visualize & Test Animations / [GitHub](https://github.com/wonderunit/storyboarder) * [BeachFrontBroll](https://www.beachfrontbroll.com/) - Stock Videos
* [LuxCoreRender](https://luxcorerender.org/) - Rendering Engine * [Videvo](https://www.videvo.net/) - Stock Videos
* [RenderChan](https://morevnaproject.org/renderchan/) - 2D Animation Render Manager * [veed.io](https://www.veed.io/videos) - Stock Videos
* [Mandelbulber](https://mandelbulber.com/) or [FragM](https://github.com/3Dickulus/FragM) - Fractal Rendering Software / [3D](https://mb3d.overwhale.com/) * [MitchMartinez](https://mitchmartinez.com/free-4k-red-epic-stock-footage/) - Stock Videos
* [JWildfire](https://jwildfire.overwhale.com/), [IFSRenderer](https://github.com/bezo97/IFSRenderer) or [Fractorium](http://fractorium.com/) - Flame Fractal Rendering Software * [MixKit](https://mixkit.co/) - Stock Videos
* [BestSnip](https://bestsnip.com/animation/), [Sketch Machine](https://sketchmachine.net/), [Plask](https://plask.ai/) or [Rive](https://rive.app/) - Online Animation Tools * [ineedfx](https://ineedfx.com/) - Stock Videos
* [LibreSprite](https://libresprite.github.io/), [Pixel Compresor](https://makham.itch.io/pixel-composer), [JPixel](https://emad.itch.io/jpixel) or [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Animation Tools * [MotionPlaces](https://www.motionplaces.com/) - Worldwide Stock Videos
* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings * [DroneStock](https://dronestock.com/) - Drone Video Footage
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks * [MovieTools](https://movietools.info/) - Video Loops
* [Viggle](https://viggle.ai/) / [Discord](https://discord.com/invite/viggle) or [Picrew](https://picrew.me/) - Animated Character Creators
* [Mixamo](https://www.mixamo.com/) or [Cascadeur](https://cascadeur.com/) - 3D Character Animation Tools
* [MMHuman3D](https://github.com/open-mmlab/mmhuman3d) - 3D Human Model Creator
* [Talking Face Avatar](https://github.com/saba99/Talking_Face_Avatar) - Talking Avatar Generator
* [Blender Open Movies](https://youtube.com/playlist?list=PLav47HAVZMjnTFVZL-aImCQIC0uLZtNCz) - CGI Assets
***
## ▷ Stock Videos
* 🌐 **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#videos)** or **[CuteStockFootage](https://cutestockfootage.com/free/video)** - Stock Video Indexes
* ⭐ **[VidsPlay](https://www.vidsplay.com/)** - Stock Videos
* [4K Media](https://4kmedia.org/) - 4K Stock Videos
* [Dareful](https://dareful.com/) - 4K Stock Videos
* [Monzoom](https://www.monzoom.com/) - 4K Stock Videos
* [BeachFrontBroll](https://www.beachfrontbroll.com/) - Stock Videos
* [Videvo](https://www.videvo.net/) - Stock Videos
* [veed.io](https://www.veed.io/videos) - Stock Videos
* [MitchMartinez](https://mitchmartinez.com/free-4k-red-epic-stock-footage/) - Stock Videos
* [MixKit](https://mixkit.co/) - Stock Videos
* [ineedfx](https://ineedfx.com/) - Stock Videos
* [MotionPlaces](https://www.motionplaces.com/) - Worldwide Stock Videos
* [DroneStock](https://dronestock.com/) - Drone Video Footage
* [MovieTools](https://movietools.info/) - Video Loops

File diff suppressed because it is too large Load Diff

View File

@ -1,32 +0,0 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"extends": ["@taskylizard/biome-config"],
"files": {
"ignore": [".vitepress/**/*.vue", ".vitepress/vue-shim.d.ts"]
},
"formatter": {
"enabled": false
},
"javascript": {
"globals": [
"defineNitroConfig",
"eventHandler",
"useRuntimeConfig",
"readValidatedBody",
"defineEventHandler"
]
},
"linter": {
"rules": {
"style": {
"useFilenamingConvention": {
"level": "info",
"options": {
"filenameCases": ["camelCase", "PascalCase"]
}
},
"noDefaultExport": "off"
}
}
}
}

8
eslint.config.js Normal file
View File

@ -0,0 +1,8 @@
// @ts-check
import tasky from '@taskylizard/eslint-config'
export default tasky({
vue: true,
browser: true,
typescript: true
})

View File

@ -39,5 +39,3 @@ outline: false
* *"I love having an extreme amount of privacy. And it's not just for piracy, so this is REALLY useful. Thanks!"* * *"I love having an extreme amount of privacy. And it's not just for piracy, so this is REALLY useful. Thanks!"*
* *"Every person I share this sub with is always completely grateful, and it's no wonder why."* * *"Every person I share this sub with is always completely grateful, and it's no wonder why."*
* *"Finding out about FMHY's wiki is the best thing that has happened to me, it has helped me so much in every way imaginable, i'm very grateful, keep it up!"*

View File

@ -1,805 +0,0 @@
***
***
**[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)**
***
***
***
# ► Gaming Tools
* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_covers_.2F_posters)**
* ↪️ **[Game Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_game_soundtracks)**
* ⭐ **[Library of Codexes](https://libraryofcodexes.com/)** - Game Codex Library
* ⭐ **[HowLongToBeat](https://howlongtobeat.com/)** - Find Average Game Lengths
* ⭐ **[/r/tipofmyjoystick](https://www.reddit.com/r/tipofmyjoystick/)** - Find Games via Screenshot or Description
* ⭐ **[Game Pauser](https://madebyjase.com/game-pauser/)** - Pause Unpausable Cutscenes
* ⭐ **[Valve Archive](https://valvearchive.com/)** - Rare Valve Data Archive
* [NIWA](https://www.niwanetwork.org/) - Nintendo Independent Wiki Alliance / [Discord](https://discord.gg/59Mq6qB )
* [Play Old PC Games](https://www.play-old-pc-games.com/) - Retro PC Game Setup Guides
* [humble-cli](https://github.com/smbl64/humble-cli) - Humble Bundle CLI
* [Gog To Free](https://greasyfork.org/en/scripts/481134) - Add Piracy Site Links to GOG Store
* [Moonlight Stream](https://moonlight-stream.org/) / [Server](https://app.lizardbyte.dev/Sunshine/) - Remote Desktop Client
* [The Models Resource](https://www.models-resource.com/) - Game Models
* [The Spriters Resource](https://www.spriters-resource.com/) - Video Game Sprites
* [MiiCharacters](https://www.miicharacters.com/) - Famous Mii Creation Guides
* [Buzz In](https://buzzin.live/) - Online Buzzer System
* [Challonge](https://challonge.com/) - Tournament Creator / Manager
* [Archipelago](https://archipelago.gg/) - Multi-Game Randomizer
* [Medal](https://medal.tv/) - Shadowplay for non Nvidia Cards / [Premium Bypass](https://medalbypass.vercel.app/)
* [RePlays](https://github.com/lulzsun/RePlays) - Game Recording Manager
* [Moments](https://steelseries.com/gg/moments) - Game Clip Tool
* [Scanlines for Windows](https://s4windows.itch.io/scanlines-for-windows) - Add Scanlines to Games / [Discord](https://discord.gg/MqxMj8MT55)
* [Keystrokes](https://www.deviantart.com/jaxoriginals/art/Keystrokes-v1-3-889349339) - Keystrokes Overlay
* [LP Archives](https://lparchive.org/) - Let's Play Archive
* [PSNProfiles](https://psnprofiles.com/) - Trophy Guide / PSN Profile Viewer
* [Achievement Watcher](https://rentry.co/FMHYBase64#achievement-watcher-mod) - Achievement File Parser, Notifications & Playtime Tracker - [Note](https://pastebin.com/Sg1SJrRx)
* [Shmuplations](https://shmuplations.com/) - Japanese Developer Interviews
* [Wiki.gg](https://wiki.gg/wikis/) - Game Wikis / [Redirector](https://support.wiki.gg/wiki/Redirect_to_wiki.gg)
* [CSDb](https://csdb.dk/) or [GB64](https://gb64.com/index.php) - Commodore 64 Resources
* [MORT](https://github.com/killkimno/MORT) - Real-time Game Text Translation
* [Textractor](https://github.com/Artikash/Textractor) - Extract Text from Games / Visual Novels
* [GARbro](https://github.com/morkt/GARbro/) - Browse / Extract Visual Novel Resources
* [ConceptArt](https://vk.com/conceptart) - Video Game Concept Art
* [FatmanTutorial](https://archive.org/details/fatmantutorial) - How-to Repack Games
* [How Denuvo Works](https://rentry.co/denuvo)
***
## ▷ Steam / Epic
* 🌐 **[Steam Tool Collection](https://steamcommunity.com/sharedfiles/filedetails/?id=451698754)**, [steam.tools](https://steam.tools/) or [SteamInternals](https://cs.rin.ru/forum/viewtopic.php?f=10&t=65887) - Steam Tool Indexes
* 🌐 **[Steam Deck Mods](https://docs.google.com/document/d/1TWhN9nCorKxut5O7UbPQPDhXLb-8C-CIoesB01yfhmY/)** - Steam Deck Mods / [Discord](https://discord.com/invite/SteamDeck)
* ↪️ **[Steam Workshop Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders)**
* ⭐ **[Koalageddon](https://github.com/acidicoala/Koalageddon/)** / [v2](https://github.com/acidicoala/Koalageddon2) - DLC Unlocker for Steam, Epic, Origin, EA and Uplay
* ⭐ **[SmokeAPI](https://github.com/acidicoala/SmokeAPI)** - Steam DLC Unlocker / [Auto Installer](https://github.com/pointfeev/CreamInstaller)
* ⭐ **[Goldberg](https://github.com/otavepto/gbe_fork)** / [GUI](https://github.com/brunolee-GIT/GSE-Generator) / [Guide](https://rentry.co/goldberg_emulator) / [SmartSteamEmu](https://cs.rin.ru/forum/viewtopic.php?p=2009102#p2009102) - Offline Steam DRM Bypass / Multiplayer Emulator
* ⭐ **[Steamtools](https://github.com/st2024/Steamtools/releases)** / [Guide](https://rentry.co/Steamtools) or [GreenLuma](https://cs.rin.ru/forum/viewtopic.php?f=29&t=103709) / [Manager](https://github.com/BlueAmulet/GreenLuma-2024-Manager) - Offline Steam DRM Bypass / DLC Unlockers
* ⭐ **[Unsteam](https://cs.rin.ru/forum/viewtopic.php?f=20&t=134707&hilit=unsteam)** - Online Steam DRM Bypass / Cracked Servers Only / Multiplayer Emulator
* ⭐ **[Steamless](https://github.com/atom0s/Steamless)** - Steam DRM Remover
* ⭐ **[Steam-Auto-Crack](https://github.com/oureveryday/Steam-auto-crack)** or [SteamAutoCracker](https://github.com/BigBoiCJ/SteamAutoCracker) - Auto Apply Goldberg + Steamless / [Guide](https://codeberg.org/fernbacher/How-To-Crack)
* ⭐ **[SteamDB](https://steamdb.info/)** - Steam Insights Tool / [Extension](https://steamdb.info/extension/)
* ⭐ **[SDD GUI](https://github.com/mmvanheusden/SteamDepotDownloaderGUI)** or [DepotDownloader](https://github.com/SteamRE/DepotDownloader) - Steam Depot Downloaders
* ⭐ **[RedAlt SteamUp](https://cs.rin.ru/forum/viewtopic.php?f=14&t=138413&p=3000090)** - Steam Depot Update Creator
* ⭐ **[Heroic Games Launcher](https://heroicgameslauncher.com/)**, [LEGENDARY](https://github.com/derrod/legendary) / [Discord](https://legendary.gl/discord) or [Rare](https://github.com/RareDevs/Rare) - Epic Games Launcher
* ⭐ **[Nemirtingas Epic Emulator](https://cs.rin.ru/forum/viewtopic.php?f=29&t=105551)** - Epic Online Service Emulator
* ⭐ **[TCNO](https://github.com/TCNOco/TcNo-Acc-Switcher)** - Platform Account Switcher / [Tutorial](https://youtu.be/0h-xjiW9M7Y)
* [CreamAPI](https://cs.rin.ru/forum/viewtopic.php?t=70576) - Steam DLC Unlocker / [Auto Setup](https://cs.rin.ru/forum/viewtopic.php?p=2013521)
* [DreamAPI](https://cs.rin.ru/forum/viewtopic.php?f=10&t=111520) - DLC Unlocker for Epic, Origin and EA
* [Anadius](https://rentry.co/FMHYBase64#anadius) - DLC Unlockers for EA and Origin
* [ScreamAPI](https://github.com/acidicoala/ScreamAPI) - Epic DLC Unlocker
* [GetDataFromSteam-SteamDB](https://github.com/Sak32009/GetDataFromSteam-SteamDB) - Find SteamDB DLC Data / Create Configs
* [SKSAppManifestGenerator](https://github.com/Sak32009/SKSAppManifestGenerator) - Create AppManifest Data
* [Superheater](https://superheater.fgsfds.link/) - Fix / Patch Steam Games / [Discord](https://discord.gg/mWvKyxR4et)
* [Depressurizer](https://github.com/Depressurizer/Depressurizer) - Steam Library Organizer
* [Steam Art Manager](https://github.com/Tormak9970/Steam-Art-Manager) - Find / Manage Game Art
* [Steam API Check Bypass](https://github.com/oureveryday/Steam-API-Check-Bypass) - Steam API Check Bypass
* [ColdAPI](https://github.com/Rat431/ColdAPI_Steam) - Offline Steam Emulator
* [Super Steam Packer](https://cs.rin.ru/forum/viewtopic.php?f=29&t=131328&hilit=super+steam+packer) - Pack and share your Steam games
* [Steam Link](https://play.google.com/store/apps/details?id=com.valvesoftware.steamlink) - Stream Steam Library to TV
* [Steam Mover](https://www.traynier.com/software/steammover) - Store Steam Games on Multiple Drives
* [Steam Piracy](https://greasyfork.org/en/scripts/460862) or [Stream To Free](https://greasyfork.org/en/scripts/481139) - Add Piracy Site Links to Steam Store
* [SteamScout](https://www.togeproductions.com/SteamScout/) - Steam Review Analyzer
* [BoilR](https://github.com/PhilipK/BoilR) - Sync Game Platforms with Steam
* [UWPHook](https://briano.dev/UWPHook/) - Add Windows Store Games to Steam
* [Steam Rom Manager](https://github.com/SteamGridDB/steam-rom-manager) - Add ROMs to Steam
* [SteamBorrowBypass](https://github.com/benjamin-dev1/SteamBorrowBypass-Windows-10-) - Steam Library Sharing
* [HonestSteamBrowser](https://honeststeambrowser.com/) - Steam Server Browser
* [The Wheelhaus](https://thewheelhaus.com/) - Find Random Steam Games
* [Free Packages](https://steamdb.info/freepackages/) - Mass Activate All Free Steam Games / [Guide](https://youtu.be/svbdw-pYNT8)
* [SteamDesktopAuthenticator](https://github.com/Jessecar96/SteamDesktopAuthenticator) - Desktop Implementation of Steam's Mobile Authenticator
* [Steam Python](http://steam.readthedocs.io) - Interact with Steam via Python
* [Idle Master Extended](https://github.com/JonasNilson/idle_master_extended) or [IdleDaddy](https://play.google.com/store/apps/details?id=com.steevsapps.idledaddy) - Steam Card Automation
* [SteamAchievementManager](https://github.com/gibbed/SteamAchievementManager) - Steam Achievement Manager
* [Steam Charts](https://steamcharts.com/) - Steam Statistics
* [SteamRep](https://steamrep.com/), [SteamID](https://steamid.io/) / [2](https://steamid.uk/), [SteamDetective](https://steamdetective.com/) or [SteamFinder](https://steamidfinder.com/) - Steam ID Lookup
* [SteamGuard](https://github.com/dyc3/steamguard-cli) - Generate Steam 2FA Codes
* [Watt Toolkit](https://steampp.net/) - Enhance Steam Functionality / [GitHub](https://github.com/BeyondDimension/SteamTools)
* [AugmentedSteam](https://augmentedsteam.com/) - Steam Web Enhancement Extension
* [Steam Auto Shutdown](https://github.com/diogomartino/steam-auto-shutdown) - Shutdown Steam after Downloads Finish
* [Steam URL Opener](https://github.com/veteran29/steam-url-open-extension) - Open URLs Inside Steam Client
* [Steam Age Bypass](https://greasyfork.org/en/scripts/18450-steam-bypass-age-confirmation-prompts) - Bypass Age Confirmation
* [Steam Currency Converter](https://github.com/Solidet-com/steam-currency-converter) / [Note](https://pastebin.com/rjYe4kjT) - Steam Currency Converter
* [Millennium](https://steambrew.app/) - Steam Client Customization / [Discord](https://steambrew.app/discord)
* [Adwaita for Steam](https://github.com/tkashkin/Adwaita-for-Steam) - Steam GNOME Skin
* [Backgrounds.Gallery](https://backgrounds.gallery/) - Steam Backgrounds
* [Steam.Design](https://steam.design/) - Steam Background Cropper
* [Center.Steam](https://center.steam.design/) - Center Steam Text
* [Wishlist Removals](https://steamcommunity.com/sharedfiles/filedetails/?id=1746978201) - Remove Hidden Items from Steam Wishlist
* [Steam Inventory Helper](https://steaminventoryhelper.com/) - Steam Inventory Enhancement Extension
* [ArchiFarm](https://github.com/JustArchiNET/ArchiSteamFarm) - Farm Steam Trading Cards
* [Fuck Off EA App](https://github.com/p0358/Fuck_off_EA_App) - Use Origin Instead of EA App
* [/r/SteamDeckPirates](https://www.reddit.com/r/SteamDeckPirates/) - Steam Deck Piracy Subreddit
* [Bazzite](https://bazzite.gg/) - Alt Steam Deck OS
* [Decky Loader](https://decky.xyz/) - Steam Deck Plugin Loader / [Plugins](https://plugins.deckbrew.xyz/) / [GitHub](https://github.com/SteamDeckHomebrew/decky-loader)
* [Steam Deck Tools](https://steam-deck-tools.ayufan.dev) - Fan Overlay, Power Control and Steam Controller
* [great-on-deck-search](https://github.com/cptpiepmatz/great-on-deck-search) - Verified Steam Deck Game Search
* [Steam-Deck.Force](https://github.com/scawp/Steam-Deck.Force-SteamOS-On-Boot) - Force SteamOS Boot
* [HoloISO](https://github.com/HoloISO/releases) - SteamOS 3 (Holo) Archiso Config / [Telegram](https://t.me/HoloISO)
***
## ▷ Game Launchers
* ⭐ **[Playnite](https://playnite.link/)** - Game Library / Launcher / [Extensions](https://playnite.link/addons.html) / [Achievements](https://github.com/Lacro59/playnite-successstory-plugin) / [Auto-Crack](https://github.com/turusudiro/SteamEmuUtility) / [Discord](https://discord.com/invite/BrtABqe)
* ⭐ **[GoG Galaxy](https://www.gog.com/galaxy)** or **[Project GLD](https://github.com/Y0URD34TH/Project-GLD/)** - Game Libraries / Launchers
* [Black Pearl Origin](https://github.com/BlackPearlOrigin/blackpearlorigin) - Cross Platform Game Library / Launcher / [Plugins](https://bpo-store.github.io/) / [Discord](https://discord.com/invite/WpBr3hJVf5)
* [Launchbox](https://www.launchbox-app.com/) - Retro / Console Game Library / Launcher
* [GameHUB Launcher](https://www.deviantart.com/not-finch/art/GameHUB-launcher-2-for-Rainmeter-785369648) - Rainmeter Game Launcher
* [Hydra](https://github.com/hydralauncher/hydra) - Game Launcher / Torrent Client
* [Arc](https://www.arcgames.com/en/about/client) - Gearbox Game Launcher / Library
* [GameVault](https://gamevau.lt) - Self-Hosted Gaming Platform / [Discord](https://discord.gg/NEdNen2dSu)
* [XIVLauncher](https://goatcorp.github.io/) - Fixed FFXIV Launcher
***
## ▷ Optimization Tools
* 🌐 **[PCGamingWiki](https://www.pcgamingwiki.com/)** - Game Optimization Resources / Fixes
* 🌐 **[Nvidia Overclocking](https://github.com/LunarPSD/NvidiaOverclocking/blob/main/Nvidia%20Overclocking.md)** - Nvidia Overclocking Resources
* ↪️ **[System Optimization Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_hardware_tools)**
* ⭐ **[SpecialK](https://www.special-k.info/)** - Game Optimization Tool / [Discord](https://discord.gg/specialk)
* ⭐ **[MSI Afterburner](https://www.msi.com/Landing/afterburner)**, [GPU Tweak lll](https://www.asus.com/campaign/GPU-Tweak-III/index.php) or [EVGA Precision X1](https://www.evga.com/precisionx1/) / [Warning](https://ibb.co/VSYtdTW) - GPU Overclocking / [Guide](https://docs.google.com/document/d/14ma-_Os3rNzio85yBemD-YSpF_1z75mZJz1UdzmW8GE/)
* ⭐ **[SystemRequirmentsLab](https://www.systemrequirementslab.com/cyri/)** or [PCGameBenchmark](https://www.pcgamebenchmark.com/) - Game Requirements Tests
* ⭐ **[MSI Kombustor](https://www.geeks3d.com/furmark/kombustor/)** - GPU Benchmark Test
* ⭐ **[ProSettings](https://prosettings.net/)**, [Share Gaming Tweaks](https://www.tenforums.com/gaming/117377-share-gaming-tweaks-chec-my-comprehensive-list-will-blow-your-mind.html), [/r/OptimizedGaming](https://www.reddit.com/r/OptimizedGaming/), [SweetFX](https://sfx.thelazy.net/), [ENBSeries](http://enbdev.com) or [Use Gaming Tweaks](https://github.com/PrincessAkira/Use-Gaming-Tweaks) - Settings Optimization Guides
* ⭐ **[DisplayMagician](https://displaymagician.littlebitbig.com/)** or [AutoActions](https://github.com/Codectory/AutoActions) - Per-Game Display Profiles
* ⭐ **[Magpie](https://github.com/Blinue/Magpie)** or [Vuenxx](https://discord.gg/ASZjqrjWYf) / [Note](https://pastebin.com/DyQh6K0Q) - Free FSR 3 Mods
* [RagnoTech Optimization Catalog](https://ragnos1997.com/optimization-catalog/) or [TroubleChute](https://www.youtube.com/c/TroubleChute/featured) - Gaming Optimization Guides
* [Calyptos Latency Guide](https://docs.google.com/document/d/1c2-lUJq74wuYK1WrA_bIvgb89dUN0sj8-hO3vqmrau4/), [cancerogenoslab](https://sites.google.com/view/cancerogenoslab/) or [MikeMartin](https://www.mikemartin.co/) - FPS / Latency Guides
* [OCAT](https://gpuopen.com/ocat/) / [GitHub](https://github.com/GPUOpen-Tools/ocat), [Rivatuner Statistics Server](https://www.guru3d.com/files-details/rtss-rivatuner-statistics-server-download.html), [CapFrameX](https://www.capframex.com/) or [Xbox Game Bar](https://rentry.co/WindowsFPS) - FPS Benchmarking
* [SSTap](https://github.com/FQrabbit/SSTap-Rule) - Decrease Ping
* [Overclock](https://www.overclock.net/) - Overclocking Forum
* [Ryzen Master Utility](https://www.amd.com/en/technologies/ryzen-master) - Overclocking Control for Ryzen Desktop CPU
* [AMD-APU-Tuning-Utility](https://github.com/JamesCJ60/Universal-x86-Tuning-Utility) - AMD APU Tuning
* [dlss-swap](https://github.com/beeradmoore/dlss-swapper) - Download, Manage & Swap DLSS
* [dgVoodoo2](http://dege.freeweb.hu/dgVoodoo2/) - Glide & DirectX Graphics Wrapper
* [VibranceGUI](https://vibrancegui.com/) - Automate Digital Vibrance Control
* [ReShade](https://reshade.me/) - Generic Post-Processing Injector / [GitHub](https://github.com/crosire/reshade) / [Shaders](https://github.com/BlueSkyDefender/Depth3D) / [Discord](https://discord.com/invite/PrwndfH)
* [DLSSG to FSR3](https://github.com/Nukem9/dlssg-to-fsr3) - AMD FSR3 Frame Generation for NVIDIA
* [WindowedBorderlessGaming](https://westechsolutions.net/sites/WindowedBorderlessGaming/), [Borderless Gaming](https://github.com/Codeusa/Borderless-Gaming) or [FullScreenizer](http://runtimeterror.com/tools/fullscreenizer/) - Borderless Windows for All Games
* [Lossless Scaling](https://rentry.co/FMHYBase64#lossless-scaling) - Windowed Game Scaling
* [DxWnd](https://sourceforge.net/projects/dxwnd/) - Play Fullscreen Only Games in Window
* [Widescreen Fixes Pack](https://thirteenag.github.io/wfp) / [GitHub](https://github.com/ThirteenAG/WidescreenFixesPack), [Widescreen Fixer v3.4](https://community.pcgamingwiki.com/files/file/1754-widescreen-fixer-v34-r737/) or [Flawless Widescreen](https://www.flawlesswidescreen.org/) - Widescreen Fixes
* [4GB Patch](https://ntcore.com/?page_id=371) - Patch x86 executables to use 4GB
***
## ▷ Controller Tools
* [DS4Windows](https://ryochan7.github.io/ds4windows-site/), [AntiMicroX](https://github.com/AntiMicroX/antimicroX), [DualSenseX](https://github.com/Paliverse/DualSenseX), [PCXSense](https://github.com/Denellyne/PCXSense) or [Input Remapper](https://github.com/sezanzeb/input-remapper) - Gamepad Input Tools / [Steam Note](https://pastebin.com/ycswQGVR)
* [x360ce](https://www.x360ce.com/) / [GitHub](https://github.com/x360ce/x360ce) - DS4 / 360 Controller Emulator
* [XOutput](https://github.com/csutorasa/XOutput) - DirectInput to Xinput wrapper
* [DsHidMini](https://docs.nefarius.at/projects/DsHidMini/) - Use PS3 Controllers on Windows
* [JoyToKey](https://joytokey.net/en/) - Controller Emulator
* [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays
* [PC Remote](https://play.google.com/store/apps/details?id=com.monect.portable) - Use Phone as Controller
* [Gamepad-Tester](https://gamepad-tester.com/) or [AresLuna](https://aresluna.org/gamepad-tester/) - Controller Connectivity Testers
* [HidHide](https://docs.nefarius.at/projects/HidHide/) - Input Device Firewall
* [Whitescent Engine](https://apt.izzysoft.de/fdroid/index/apk/com.github.whitescent.engine) - Use Phone as Joy Stick / [GitHub](https://github.com/whitescent/Engine)
* [JoystickGremlin](https://whitemagic.github.io/JoystickGremlin/) - Remap Joystick Devices
* [Arcade Controls](http://arcadecontrols.com/arcade.htm) - DIY Arcade Controls
* [AltCtrls](https://altctrls.info/) - Custom Controller Crafting Resources
***
## ▷ Game Mods
* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Side Scrolling Modding Forum / [Games List](https://www.chronocrash.com/forum/resources/categories/openbor.2/)
* ⭐ **[ModDB](https://moddb.com/)** - Game Mods
* ⭐ **[Nexus Mods](https://www.nexusmods.com/)** - Game Mods / [Bulk Downloader](https://greasyfork.org/en/scripts/483337) / [Redirect Skip](https://greasyfork.org/en/scripts/394039) / [Discord](https://discord.com/invite/nexusmods)
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** - Bethesda Game Modding Guides / [Discord](https://discord.com/invite/S99Ary5eba)
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) or [WeMod](https://rentry.co/fmhybase64#wemod) - Mod Managers
* [Otis_Inf Camera Mods](https://redd.it/hvttbd) - Game Camera Mods Index
* [mod.io](https://www.mod.io/) - Cross Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
* [WabbaJack](https://www.wabbajack.org/) / [Discord](https://discord.com/invite/wabbajack) - Automated Modlist Installer
* [NextGenUpdate](https://www.nextgenupdate.com/) - Game Mods
* [ModWorkshop](https://modworkshop.net/) - Game Mods / [Discord](https://discord.com/invite/Eear4JW)
* [GameFront](https://gamefront.com/) - Game Mods / [Discord](https://discord.com/invite/gamefront)
* [Video Game Mods](https://videogamemods.com/) - Game Mods / [Discord](https://discord.com/invite/C2JussB8hk)
* [GameBanana](https://gamebanana.com/) - Game Mods / [Discord](https://discord.com/invite/h5xJv9M)
* [Silent's Blog](https://cookieplmonster.github.io/mods/index/) - Game Mods / Patches
* [FlingTrainer](https://flingtrainer.com/) - Game Mods / Trainers
* [Top Mods](https://www.top-mods.com/) - PC Game Mods
* [ProAsm](http://www.proasm.com/) - Retro Game Mods
* [ProWrestlingMods](https://prowrestlingmods.io/) - Wrestling Game Mods / [Discord](https://discord.gg/ctUmSTueV3)
* [KSP-CKAN](https://github.com/KSP-CKAN/CKAN/) - Kerbal Space Program Mod Loader
* [Pre-Fortress 2](https://prefortress.com/) - TF1 Style TF2 Mod
* [Unreal Archive](https://unrealarchive.org/index.html) - Unreal Tournament Mods, Maps, Skins etc.
* [Quaddicted](https://www.quaddicted.com/) - Classic Quake Mods, Maps & Tools
* [ZagruzkaMods](https://zagruzkamods.com/) or [GameJunkie](https://www.gamejunkie.pro/) - Simulator Game Mods
* [ESO Addons](https://github.com/arviceblot/eso-addons) - Elder Scrolls Online Mod Manager
* [Funky](https://pukmajster.github.io/funky/) - Left 4 Dead 2 Mod Manager
* [Hidden Fallout 4 Mods](https://rentry.co/89gads), [2](https://docs.google.com/document/d/1Im5Mg-l2btRsYVOjaJa0slrjDcXNvi41J5pHw_Zuwqw/edit?usp=sharing) - Fallout 4 Mods Removed from Nexus
* [UGX Mods](https://www.ugx-mods.com/) - COD Zombies Mods / [Discord](https://discord.gg/g9S2nSp)
* [RimWorldBase](https://www.rimworldbase.com/) - RimWorld Mods
* [PvZ Link Server](https://discord.gg/TySsGQWB5A) - Plants vs Zombies Mods
* [NFL2KMod](https://www.nfl2kmod.com/) - NFL Game Mods
* [StellarisMods](http://stellarismods.net/) - Stellaris Mods
* [SMods](https://smods.ru/) - Cities: Skylines Mods
* [MDMC](https://mdmc.moe/) - Muse Dash Mods / [Discord](https://discord.com/invite/mdmc)
* [BSManager](https://github.com/Zagrios/bs-manager) - Beat Saber Version / Mod Manager / [Discord](https://discord.com/invite/uSqbHVpKdV)
* [BSMG](https://bsmg.wiki/) - Beat Saber Mods
* [NFSMods](https://nfsmods.xyz/) / [Discord](https://discord.gg/MuC3KKW) or [NFSAddons](https://www.nfsaddons.com/) - Need for Speed Mods
* [SimPlaza](https://simplaza.org/) - Microsoft Flight Simulator Addons
* [Modding-OpenMW](https://modding-openmw.com/) - Morrowind Mods
***
## ▷ Game Saves
* ↪️ **[File Backup / Sync](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_backup_.2F_sync)**
* [Ludusavi](https://github.com/mtkennerly/ludusavi) or [GameSave Manager](https://www.gamesave-manager.com/) - Video Game Backup Tools
* [Save Game World](https://www.savegameworld.com/) - PC / PlayStation / Switch / Xbox / Wii
* [SavegameDownload.com](https://www.savegamedownload.com/) - PC / PlayStation / Switch / Xbox / Android
* [Save Game Files](https://www.savegamefiles.com/) - PC / PlayStation / Xbox / Wii
* [YourSaveGames](https://www.yoursavegames.com/) - PC / PSP
* [SaveGame.Pro](https://savegame.pro/) - PC
* [Saves For Games](https://savesforgames.com/) - PC
* [Save Editor Online](https://www.saveeditonline.com/) - Game Save Editor
* [MegaGames](https://megagames.com/), [GTrainers](https://gtrainers.com/) or [GameCopyWorld](https://www.gamecopyworld.com/games/index.php) - Game Trainers
***
## ▷ Game Maps
* 🌐 **[Map Genie](https://mapgenie.io/)**, [GameMaps](https://www.gamemaps.com/), [THGL](https://www.th.gl/) or [VGMaps](https://www.vgmaps.com/) - Game Map Indexes
* [noclip](https://noclip.website/) - Explore Game Maps
* [KudosPrime](https://www.kudosprime.com/) - Racing Game Maps
* [bspview](https://sbuggay.github.io/bspview) / [GitHub](https://github.com/sbuggay/bspview) - Explore Quake & GoldSRC Maps
* [NES Maps](https://www.nesmaps.com/) - NES Game Maps
* [SNES Maps](https://www.snesmaps.com/) - SNES Game Maps
* [Forgehub](https://www.forgehub.com/) - Halo Maps / [Discord](https://discord.com/invite/ybGX7sv)
* [Zelda BotW Street View](https://nassimsoftware.github.io/zeldabotwstreetview/) - Breath of The Wild Map
* [Palworld Interactive](https://palworld.th.gl/) - Palworld Map
* [Fortnite.gg](https://fortnite.gg/) - Fortnite Map, Guides, Skins etc.
* [Hitmaps](https://www.hitmaps.com/) - Hitman Maps / [Discord](https://discord.gg/RssFsajjjX)
* [Hallownest](https://www.hallownest.net/) or [Interactive HN Map](https://scripterswar.com/hollowknight/map) - Hollow Knight Maps
***
## ▷ Git Gud
* 🌐 **[Mousepad Mastersheet](https://docs.google.com/spreadsheets/d/1RAnmZxDNduaGV8kB-GCvZ0MO6d9-0j9jmrU2f8dp0Ww/)** - Mousepad Comparison Chart
* 🌐 **[Click Latencies](https://docs.google.com/spreadsheets/d/1-QI7-LY9Ul_DsVE4ZOqBQxqqqqrdJ04Ite8IY3AQMds/)** - Mouse Click Latency Chart
* ⭐ **[Before I Play](https://beforeiplay.com/)** - Tips for any Game
* ⭐ **[GamingSmart](https://gamingsmart.com/)** or [Mouse Sensitivity](https://www.mouse-sensitivity.com/) - Game Sensitivity Converters / Tools
* ⭐ **[Aim400kg](https://aim400kg.com/)**, [3D Aim Trainer](https://www.3daimtrainer.com/), [Aimlabs](https://aimlabs.com/), [Aiming.Pro](https://aiming.pro/) or [AimTrainer](https://aimtrainer.io/) - Aim Training
* ⭐ **[Speedrun](https://www.speedrun.com/)** - Speedrunning Streams, Leaderboards, Resources etc.
* [GameGuides](https://www.gamerguides.com/), [Retro Guides](https://rentry.co/FMHYBase64#retro-game-strategy-guides), [Game8](https://game8.co/), [StrategyWiki](https://strategywiki.org/), [Samurai Gamers](https://samurai-gamers.com/), [UHS Hints](https://www.uhs-hints.com/) or [Kirklands](https://archive.org/details/kirklands-manual-labor-sony-playstation-2-usa-4k-version) - Game Guides
* [Piper](https://github.com/libratbag/piper) - Gaming Mouse Config Tool
* [LiveSplit](https://livesplit.org/) - Customizable Speedrun Timer
* [TASVideos](https://tasvideos.org/) - Watch and Publish Tool Assisted Speedruns
* [Tomatoanus](https://www.youtube.com/@tomatoanus/) - Speedrun Breakdowns
* [BakkesMod](https://bakkesmod.com/) - Rocket League Trainer
* [ReplacementDocs](http://replacementdocs.com/) or [GamesDatabase](https://www.gamesdatabase.org/) - Game Manuals
* [SNES Manuals](https://sites.google.com/view/snesmanuals) - SNES Game Manuals
* [FOUR.lol](https://four.lol/) - Tetris Openers Wiki
* [Underdogs Cup Lounge](https://discord.gg/QCbC9cA) - Tetris Resources & Coaching Discord
***
## ▷ Tracking / Discovery
* 🌐 **[Awesome Engineering Games](https://github.com/arcataroger/awesome-engineering-games)** - Engineering Games
* ⭐ **[Glitchwave](https://glitchwave.com/)**, [Grouvee](https://www.grouvee.com/), [RankOne](https://www.rankone.global/), [InfiniteBacklog](https://infinitebacklog.net/) or [Backloggd](https://www.backloggd.com/) - Game Trackers
* ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings
* ⭐ **[IGDB](https://www.igdb.com/)** or **[GiantBomb](https://www.giantbomb.com/games/)** - Game Database
* ⭐ **[TasteDive](https://tastedive.com/games )**, [50GamesLike](https://www.50gameslike.com/), [Mythic Maps](https://mythicmap.com/) / [Discord](https://discord.gg/xw6cgmjDzB) or [/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations
* [Rec Charts](https://mega.nz/folder/kj5hWI6J#0cyw0-ZdvZKOJW3fPI6RfQ) - Game Recommendation Guides
* [Incendar](https://incendar.com/) - Game Release Date Tracker
* [GG App](https://ggapp.io/), [Gamelib](https://gamelib.app/explore), [Backloggery](https://backloggery.com/) or [Exophase](https://www.exophase.com/) - Game Trackers
* [LaunchBox Games Database](https://gamesdb.launchbox-app.com/), [GameFAQs](https://gamefaqs.gamespot.com/), [Rawg](https://rawg.io/), [Moby Games](https://www.mobygames.com/), [rate.house](https://rate.house/chart/game), [listal](https://www.listal.com/) or [FrontierNav](https://frontiernav.net/) - Game Databases
* [IMDb Advanced Search](https://www.imdb.com/search/) - Game Search
* [JRGPC](https://jrpgc.com/) - JRPG Databases / [Discord](https://discord.com/invite/jrpgc)
* [RPGCodex](https://rpgcodex.net/forums/) - RPG Database / Forum
* [SteamPeek](https://steampeek.hu/) or [IndieDB](https://www.indiedb.com/) - Indie Game Databases
* [RetroShowcase](https://www.retroshowcase.gr/) or [The Good Old Days](https://www.goodolddays.net/) - Retro Game Databases
* [Sega Retro](https://segaretro.org/) - Sega Game Database
* [AtariAge](https://atariage.com/) - Atari Game Database
* [Polish Pixels](https://polishpixels.com/) - Retro Polish Games Database
* [Co-Optimu](https://www.co-optimus.com/) or [PlayCo-opGame](https://playco-opgame.com/) - Co-Op Game Databases
* [SvenEvils Playground](https://store.steampowered.com/curator/8485829/) or [Local Multiplayer List](https://docs.google.com/spreadsheets/d/14f6qS2GJy8C-b40Df3dNH_aZq7WfZ4jMggzEajUrX0w/) - Local Multiplayer Game Database
* [DoesItPlay?](https://www.doesitplay.org/) - Offline Game Compatibility Database
* [Low Spec Games](https://pastebin.com/MTCXZxCN) - Low Spec Game Database
* [HOTU](https://www.homeoftheunderdogs.net/) - Rare Game Database
* [Delisted Games](https://delistedgames.com/) - Delisted Games Database
* [BoardGameGeek](https://boardgamegeek.com/) - Board Game Database
* [Board Game Breakdown](https://boardgamebreakdown.com/) - Board Game Reviews
* [MoreGamesLike](https://www.moregameslike.com/) or [Games Like Finder](https://gameslikefinder.com/) - Find Similar Games
* [DigitalDreamDoor](https://digitaldreamdoor.com/pages/games.html) - List of the Best Games
* [Are We Anti-Cheat Yet?](https://areweanticheatyet.com/) - Anti-Cheat Game Database / GNU/Linux or Wine/Proton Compatibility
* [Unseen64](https://www.unseen64.net/) - Cancelled / Lost Games
***
# ► Multiplayer Tools
* ⭐ **[Find-PlayDate](https://www.find-playdate.com/)** - Find People to Play Games With
* ⭐ **[Nucleus Co-op](https://github.com/SplitScreen-Me/splitscreenme-nucleus)** - Local Split-Screen PC Multiplayer
* [Liquipedia](https://liquipedia.net/) - Competitve Gaming / Esports Wiki / [Discord](https://discord.com/invite/liquipedia)
* [Overwolf](https://www.overwolf.com/) - Create In-Game Overlay Apps
* [Tracker.gg](https://tracker.gg/) - Game Leaderboards / Stats
* [StatsVerse](http://statsverse.com/) - Battlefield Leaderboards
* [Sym.gg](https://sym.gg/) - Battlefield Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP)
* [PaladinsGuru](https://paladins.guru/) - Paladins Leaderboards / [Discord](https://discord.com/invite/5aKtMB7)
* [TrueGameData](https://truegamedata.com/) - COD Leaderboards
* [Warzone Loadout](https://warzoneloadout.games/) - Warzone Loadouts and Builds
* [Rust Labs](https://rustlabs.com/) - Rust Info / Tools
* [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Multiplayer Project / [Discord](https://discord.com/invite/UBAZFys)
* [Braytech](https://bray.tech/) - Destiny 2 Stats
* [Leaf](https://leafapp.co/) or [HaloDataHive](https://halodatahive.com/) - Halo Infinite Leaderboards / Stats
* [D4Builds](https://d4builds.gg/) - Diablo 4 Builds
* [WoWProgress](https://www.wowprogress.com) or [CheckPVP](https://www.check-pvp.fr/) - WoW Rankings
* [RaidPlan](https://raidplan.io/) - WoW Raid Planner / [Discord](https://discord.com/invite/mTuHsfb)
* [FallGuysStats](https://github.com/ShootMe/FallGuysStats) or [Fallalytics](https://fallalytics.com/) - Fall Guys Stat Trackers
* [Pancake Patcher](https://gamebanana.com/tools/7382) - Fall Guys String Patcher
* [FallGuysDB](https://fallguys-db.pages.dev/) - Fall Guys Store & Show Rotations
* [Fortnite Tracker](https://fortnitetracker.com/) - Fortnite Leaderboards / Stats
* [FortniteEXP](https://www.fortnitexp.net/) - Fortnite XP Progression / Leveling Rates
* [SaveTheWorldClaimer](https://github.com/PRO100KatYT/SaveTheWorldClaimer) - Fortnite Auto-Points Claimer
* [CrewLink](https://github.com/ottomated/CrewLink) - Among Us Proximity Chat
***
## ▷ Multiplayer Mods
* 🌐 **[Multiplayer Mods](https://docs.google.com/spreadsheets/d/e/2PACX-1vSV41AswEt3EpzSyd85YRVtoJaIIXWjtBy347dISJg4fs6xSNPqcgfsh76TxX_l-mnT7pjMlSqTW-87/pubhtml)** or [Unmoddable](https://unmoddable.com/) - Multiplayer Mods for Singleplayer Games
* [Plutonium](https://plutonium.pw/) - Black Ops 2 / MW3 Mod Project / [Discord](https://discord.gg/d95y8ah) / Requires Legit Copy
* [Venice Unleashed](https://veniceunleashed.net/) / [Discord](https://discord.com/invite/dpJwaVZ) or [Warsaw Revamped](https://warsaw-revamped.com/) / [Discord](https://discord.com/invite/C9Zrh4G) - Battlefield Mod Projects
* [BF2142 Reclamation](https://battlefield2142.co/) - BF2142 Multiplayer Project / [Discord](https://discord.gg/MEwBW9U)
* [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5)
* [Marne](https://marne.io/) - BF1 Multiplayer Project / [Discord](https://marne.io/discord)
* [Tilted Online](https://wiki.tiltedphoques.com/tilted-online/) / [GitHub](https://github.com/tiltedphoques/TiltedEvolution) - Multiplayer Skyrim & Fallout 4 / [Discord](https://discord.gg/skyrimtogether) / [Setup Guide](https://youtu.be/ytSftFoQQHA)
* [NV:MP](https://nv-mp.com/) - Fallout: New Vegas Multiplayer / [Discord](https://discordapp.com/invite/mKVdhmEDrW)
* [Nitrox](https://nitrox.rux.gg/) - Subnautica Multiplayer
* [CnCNet](https://cncnet.org/) - Multiplayer Command & Conquer / [Discord](https://discord.com/invite/aJRJFe5)
* [Old School RuneScape](https://oldschool.runescape.com/) - Classic Runescape / [Discord](https://discord.com/invite/osrs)
* [Mega Man Arena](https://www.megamanarena.com/) or [Megaman 2.5D](https://petersjostrand.com/) - Multiplayer Mega Man
* [NolfRevival](http://nolfrevival.tk/) - NOLF, NOLF 2 & Contract Jack
* [Toontown Rewritten](https://www.toontownrewritten.com/) or [Corporate Clash](https://corporateclash.net/) - Toontown Multiplayer Revivals
***
## ▷ Multiplayer Fixes
* ⭐ **[Online Fix](https://online-fix.me/)** - LAN Multiplayer Fix / [Discord](https://discord.gg/yExgFYncMD)
* ⭐ **[Playit.gg](https://playit.gg/)** - LAN Multiplayer Fix / [Discord](https://discord.gg/AXAbujx)
* ⭐ **[zerotier](https://www.zerotier.com/)** - LAN Multiplayer Fix
* [Radmin](https://www.radmin-vpn.com/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/8MapDM7m96)
* [Hamachi](https://vpn.net/) - LAN Multiplayer Fix
* [NetMaker](https://www.netmaker.io/) - LAN Multiplayer Fix
* [Team XLink](https://www.teamxlink.co.uk/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/XUS9n73KSP)
* [ZLOEmu](https://zloemu.net/) - LAN Multiplayer Fix
* [t7patch](https://github.com/shiversoftdev/t7patch) - Black Ops 3 Crash Fix
***
## ▷ Multiplayer Servers
* ⭐ **[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers
* [Server.pro](https://server.pro/) - Game Server Hosting
* [Impostor](https://impostor.github.io/Impostor/) - Among Us Private Server / [Discord](https://discord.com/invite/Mk3w6Tb)
* [VRCList](https://vrclist.com/) - Find VRChat Worlds / Signup Required
* [DiIiS](https://github.com/blizzless/blizzless-diiis) - Open-Source Diablo III Local Server
* [Insignia](https://insignia.live/) - Original Xbox Replacement Servers / [Discord](https://discord.gg/CWkdVdc)
* [Project Cartographer](https://www.halo2.online/) - Halo 2 Online Servers
* [Halo Custom Edition](https://www.haloce.org/) - Halo CE Online Servers
* [V4nguard (discord)](https://discord.com/invite/v4nguard-948590455715684393) - Alt Destiny 1 Servers
* [Overwatch-Server-Selector](https://github.com/foryVERX/Overwatch-Server-Selector) - Overwatch Server Selector
* [Northstar](https://thunderstore.io/c/northstar/), [2](https://northstar.tf/) - Titanfall 2 Server Hosting & Modding / [GitHub](https://github.com/R2Northstar/Northstar/releases) / [Guide](https://rentry.org/northstar-guide) / [Discord](https://discord.gg/CEszSguY3A)
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
* [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf)
***
# ► Homebrew
* 🌐 **[Darthsternie](https://darthsternie.net/)** - Console Firmware / Exploit Archive
* 🌐 **[Emulators on Consoles](https://emulation.gametechwiki.com/index.php/Category:Emulators_on_consoles)** - List of Emulators for Consoles
* ⭐ **[Hacks.Guide](https://hacks.guide/)**, **[CFW Guide](https://cfw.guide/)**, [ConsoleMods.org](https://consolemods.org/) / [Discord](https://discord.gg/x5vEnkR4C8), [Digiex](https://digiex.net/forums/), [Homebrew Guides](https://rentry.co/Guides), [CFWaifu](https://www.cfwaifu.com/), [Homebrew General](https://www.homebrewgeneral.net/) or [Gamebrew](https://www.gamebrew.org/) - Homebrew Guides
* ⭐ **[Nintendo Homebrew](https://discord.gg/C29hYvh)** - Nintendo Homebrew Discord
* ⭐ **[GBATemp](https://gbatemp.net/)** - Homebrew Forum
* [/r/Homebrew](https://www.reddit.com/r/homebrew/) - Homebrew Subreddit
* [Game Boy Tech Page](https://web.archive.org/web/19990209041732/http://home.hiwaay.net/%7Ejfrohwei/gameboy/home.html) - Game Boy Tools
* [Game Boy Book Reader](https://www.mqp.com/fun/) - Game Boy Book Reader
* [NESC-SNESC-Modifications](https://github.com/KMFDManic/NESC-SNESC-Modifications) - NES, SNES & Playstation Mods
* [ModMyClassic](https://modmyclassic.com/) - Classic Console Mods
* [N64Brew](https://n64brew.dev/wiki/Main_Page) - N64 Homebrew Wiki
* [/r/XboxModding](https://www.reddit.com/r/XboxModding/) or [/r/XboxRetailHomebrew](https://www.reddit.com/r/XboxRetailHomebrew/) - Xbox Homebrew Subreddits
* [/r/XboxHomebrew](https://www.reddit.com/r/XboxHomebrew/) - Xbox One/Series Homebrew Subreddit
* [/r/360Hacks Guide](https://redd.it/8y9jql) - Xbox 360 Modding Guide
* [C-Xbox Tool](https://gbatemp.net/download/c-xbox-tool.7615/) - .XBE to ISO File Converter
* [NKit](https://wiki.gbatemp.net/wiki/NKit) - Disc Image Processor
* [NASOS](https://download.digiex.net/Consoles/GameCube/Apps/NASOSbeta1.rar) - Gamecube iso.dec to ISO Converter
* [NESDev](https://www.nesdev.org/) - NES / SNES Dev Homebrew Guides / Forum
* [hakchi2 CE](https://github.com/TeamShinkansen/Hakchi2-CE) / [Discord](https://discord.gg/UUvqsAR) - Add More Roms to NES/SNES Classic Mini
* [Easy Guide to Making Amiibo](https://redd.it/5ywlol) - How to Make Your Own Amiibo
***
## ▷ Switch Homebrew
* ⭐ **[Switch Guide](https://nh-server.github.io/switch-guide/)** - Switch Homebrew Guide
* ⭐ **[Switchway](https://switchway.net/)** - Switch Homebrew Guide
* [Switch Hacking Is Easy](https://rentry.org/SwitchHackingIsEasy) - Switch Homebrew Guide
* [/r/SwitchPirates](https://www.reddit.com/r/SwitchPirates/) or [/r/SwitchHacks](https://reddit.com/r/SwitchHacks) - Switch Homebrew Subreddits
* [LAN Play Status](http://lan-play.com/) or [Switch-LAN-Play](https://github.com/spacemeowx2/switch-lan-play) / [Discord](https://discord.gg/PUEmfV4) - Switch Multiplayer Servers
* [FlagBrew](https://flagbrew.org/) - Switch / [Discord](https://discord.com/invite/4Rv8DTzGFa)
* [NSP Forwarder](https://nsp-forwarder.n8.io/) - Switch NSP Forwarder
* [DeepSea](https://github.com/Team-Neptune/DeepSea) - Switch CFW Package
* [emuiibo](https://github.com/XorTroll/emuiibo) - Amiibo Emulator
***
## ▷ Wii U / Wii Homebrew
* ⭐ **[WiiBrew](https://wiibrew.org/)** - Wii Homebrew Wiki
* ⭐ **[WiiUBrew](https://wiiubrew.org/wiki/Main_Page)** - WiiU Homebrew Wiki
* ⭐ **[Wii U Hacks Guide](https://wiiu.hacks.guide/)** - Wii U Jailbreak Guide
* ⭐ **[Wii Hacks Guide](https://wii.hacks.guide/)** - Wii Jailbreak Guides
* ⭐ **[Wiimmfi](https://wiimmfi.de/)** or [WiiLink](https://wfc.wiilink24.com/) - Wii Multiplayer Servers
* [Pretendo](https://pretendo.network/) - Wii U Network Replacement / [Discord](https://invite.gg/pretendo)
* [/r/WiiUHacks](https://www.reddit.com/r/WiiUHacks/) - Wii U Homebrew Subreddit
* [/r/WiiHacks](https://www.reddit.com/r/WiiHacks/) - Wii Homebrew Subreddit
* [Open Shop Channel](https://oscwii.org/) - Wii Homebrew App Library
* [WBFStoISO](https://www.wbfstoiso.com/) - WBFS to ISO
* [WiiLink](https://www.wiilink24.com/) - WiiConnect24 Replacement
***
## ▷ 3DS / DS Homebrew
* 🌐 **[DS Homebrew](https://ds-homebrew.com/)** - DS Homebrew Resources / [Wiki](https://wiki.ds-homebrew.com/) / [Discord](https://discord.com/invite/yD3spjv)
* ⭐ **[3DS Jailbreak Guide](https://3ds.hacks.guide/)** - 3DS Jailbreak Guide
* ⭐ **[DSi Jailbreak Guide](https://dsi.cfw.guide/)** - DSi Jailbreak Guide
* ⭐ **[Wiimmfi](https://wiimmfi.de/)** or [Kaeru Team](https://kaeru.world/) - DS Multiplayer Servers
* [Pretendo](https://pretendo.network/) - 3DS Network Replacement / [Discord](https://invite.gg/pretendo)
* [Universal DB](https://db.universal-team.net/) - 3DS / DS Modding Apps
* [Theme Plaza](https://themeplaza.art/themes) - 3DS Themes / [Discord](https://discord.com/invite/Pz25PX5vr5)
* [Artic Base](https://github.com/PabloMK7/ArticBaseServer) - Play Physical 3DS Games on Citra
* [BootNTR](https://github.com/Nanquitas/BootNTR) - Stream 3DS to PC or Mac / [Instructions](https://gbatemp.net/threads/3ds-screen-recording-without-a-capture-card-ntr-cfw-method.423445/)
* [/r/3DSPiracy](https://www.reddit.com/r/3dspiracy/) or [3DSHacks](https://reddit.com/r/3dshacks/) - 3DS Modding Subreddit
* [FlagBrew](https://flagbrew.org/) - 3DS Homebrew Apps / [Discord](https://discord.com/invite/4Rv8DTzGFa)
* [Luma3DS](https://github.com/LumaTeam/Luma3DS) - 3DS Custom Firmware
* [GodMode9](https://github.com/d0k3/GodMode9) - 3DS File Browser
* [Batch CIA 3DS Decryptor](https://gbatemp.net/threads/batch-cia-3ds-decryptor-a-simple-batch-file-to-decrypt-cia-3ds.512385/) - Decrypt 3DS Files
* [Rverse](https://discord.gg/wCvJSCxf4G) - 3DS Miiverse Recreation Discord Server
***
## ▷ Playstation Homebrew
* ⭐ **[PS4 Modding](https://youtu.be/vGhSgogxaG8)**, [PSX Hax](https://www.psxhax.com/), [PSDevWiki](https://www.psdevwiki.com/) or [Wololo](https://wololo.net/) - Playstation Modding Guides
* [Chiaki](https://git.sr.ht/~thestr4ng3r/chiaki) - PS4 / PS5 Remote Play Client
* [/r/PS5Homebrew](https://www.reddit.com/r/ps5homebrew/) - PS5 Homebrew Subreddit
* [/r/PS4Homebrew](https://www.reddit.com/r/ps4homebrew/) - PS4 Homebrew Subreddit
* [Exploit Host](https://github.com/Al-Azif/ps4-exploit-host) - PS4 Exploit Hosting
* [DarkSoftware](https://www.darksoftware.xyz/) - PS4 / PS3 Firmware
* [/r/PS3Homebrew](https://reddit.com/r/ps3homebrew) - PS3 Homebrew Subreddit
* [PS3 Disc Dumper](https://github.com/13xforever/ps3-disc-dumper) - Decrypted PS3 Disc Dumper
* [PS3 Game Updater](https://www.psx-place.com/threads/ps3-game-updater-v1-5-psn-liberator-v0-96b-rudi-rastelli-adds-ps3p-pkg-ripper-support.3766/), [Rusty Pan](https://github.com/RainbowCookie32/rusty-psn) or [Manually Updated](http://demo.aldostools.org/updates.html) - Update PS3 Games
* [PS3Themes](http://www.ps3-themes.com/) - PS3 Themes
* [PSONE](https://psone.online/) - Play PS1 Games Online / PS3 Required / [Discord](https://discord.com/invite/uhZuGX9)
* [PSXDev](https://www.psxdev.net/) - PS1 Development
* [MemcardRex](https://shendosoft.blogspot.com/2014/01/memcardrex-18-released.html?m=1) - PS1 Save Transfer Tools / [Archive](https://archive.org/details/MemcardRex1.8)
* [/r/VitaPiracy](https://www.reddit.com/r/VitaPiracy/) / [Discord](https://discord.gg/6Udcx2w) or [/r/VitaHacks](https://reddit.com/r/vitahacks/) - PSVita Homebrew Subreddits
* [PSP Archive](https://psp-archive.github.io/) - PSP Homebrew Archive / [Discord](https://discord.gg/VZcjFvy3mT)
* [VitaDB](https://vitadb.rinnegatamante.it/) - PS Vita Homebrews
* [Vita Volume](https://gitlab.com/sinful-butterfly/vita-volume) - Set PS Vita Volume without Buttons
* [PSPunk](https://www.pspunk.com/) - PSP Homebrew Info
***
# ► Game Specific
* 🌐 **[Awesome Trackmania](https://github.com/EvoEsports/awesome-trackmania)** - Trackmania Resources
* ⭐ **[Super Mario Wiki](https://www.mariowiki.com/)** - Super Mario Wiki
* [Half Life Project Beta](https://hl2-beta.ru/?language=english) - Unreleased / Cut Half-Life Content
* [CyberCAT-SimpleGUI](https://github.com/Deweh/CyberCAT-SimpleGUI) - Cyberpunk 2077 Save Editor
* [Cyberpunk Hacker](https://cyberpunk-hacker.com/) - Cyberpunk 2077 Hacking Minigame Solver
* [Flowey's Time Machine](https://crumblingstatue.github.io/FloweysTimeMachine/) - Undertale Save Editor
* [Kirigiri's Palword](https://rentry.co/FMHYBase64#kirigiris-palword) - Palworld Releases
* [Palworld.gg](https://palworld.gg/), [PalworldTrainer.com](https://palworldtrainer.com/) or [Paldb.cc](https://paldb.cc/) - Palworld Databases
* [Palworld Host Save Fix](https://github.com/xNul/palworld-host-save-fix) - Palworld Save Bug Fix
* [The Halo Archive (Discord)](https://discord.gg/feB7RgAHBh) or [405th](https://www.405th.com/) - Halo Assets Archive
* [Grim Tools](https://www.grimtools.com/) - Grim Dawn Tools
* [Stardew.app](https://stardew.app/) - Stardew Valley Progress Tracker
* [Trackmania Replay Viewer](https://gbx.bigbang1112.cz/tool/replay-viewer) - View Trackmania Replays
* [ACPatterns](https://acpatterns.com/) - Animal Crossing Pattern Tool / [Discord](https://discord.com/invite/9rGkZNk)
* [Hard Drop](https://harddrop.com/wiki/Tetris_Wiki) or [Tetris.wiki](https://tetris.wiki/) - Tetris Wikis
* [Fumen](https://harddrop.com/fumen/) - Tetris Field Editor
* [Minesweepergame.com](https://minesweepergame.com/) and [Minesweeper.online Wiki](https://minesweeper.online/help/gameplay) - All about Minesweeper
* [WRCsetups](https://wrcsetups.com/) - WRC Setups
* [Peacock](https://github.com/thepeacockproject/Peacock) - Hitman World of Assassination Server Replacement
* [Useful Osu](https://github.com/CarbonUwU/Useful-osu) - Osu! Resources
* [Collection Manager](https://github.com/Piotrekol/CollectionManager) - Osu! Collection Manager
* [osu trainer](https://github.com/FunOrange/osu-trainer) - Osu! Trainer
* [danser-go](https://github.com/Wieku/danser-go) - Osu! Dancing Visualizer
* [SpinShare](https://spinsha.re/) - Spin Rhythm XD Custom Charts
***
## ▷ MOBA Tools
* ⭐ **[OP.GG](https://www.op.gg/)** - LoL Player Background Check
* ⭐ **[U.GG](https://u.gg/)**, [LoLTheory](https://loltheory.gg/ ) or [LoLAlytics](https://lolalytics.com/) / [Discord](https://discord.com/invite/zKyaZ6w) - LoL Champion Builds / Tiers
* ⭐ **[Gol.gg](https://gol.gg/esports/home/)** - LoL Competitive Stats, All Regions
* ⭐ **[Tactics.tools](https://tactics.tools/)** / [Discord](https://discord.com/invite/K4Z6shucH8) or [MetaTFT](https://www.metatft.com/) / [Discord](https://discord.com/invite/RqN3qPy) - Team Fight Tactic Guides, Stats, Tools etc.
* [MobaFire](https://www.mobafire.com/) - LoL Champion Guides
* [ProBuilds](https://www.probuilds.net/) - LoL Pro Player Builds
* [LoL Math](https://lolmath.net/) - LoL Item Optimizer / [Discord](https://discord.com/invite/BpGpdzw)
* [iTero](https://www.itero.gg/) - LoL AI Coach
* [DraftGap](https://draftgap.com/) - LoL Draft Analysis Tools
* [Mobalytics](https://mobalytics.gg/) - Game Performance & Stats Analyzer
* [Porofessor](https://porofessor.gg/) - Live LoL Game Stats
* [ProStreams](https://prostreams.gg/) - Watch Pro LoL Twitch Streams
* [DotaBuff](https://www.dotabuff.com/), [Stratz](https://stratz.com/), [OpenDota](https://www.opendota.com/), [Dota2ProTracker](https://www.dota2protracker.com/) or [16-Bits](https://16-bits.org/) - Dota 2 Stat Trackers / Hero Guides
* [SmiteGuru](https://smite.guru/) - Smite Leaderboards
***
## ▷ Minecraft Tools
* 🌐 **[MCDOC](https://mcdoc.openm.tech/)** - Minecraft Tools & Unlockers / [Discord](https://dsc.gg/openms)
* 🌐 **[Awesome Minecraft](https://github.com/bs-community/awesome-minecraft)**, [Birdflop]( https://www.birdflop.com/resources/) or [Minecraft Tools](https://minecraft.tools/en/) - Minecraft Resources
* 🌐 **[Minecraft QOL Mods](https://rentry.co/mc-qol)** or [sk1er.club](https://sk1er.club/) - Quality of Life Mods
* 🌐 **[OptiFine Alternatives](https://optifine.alternatives.lambdaurora.dev/)** - OptiFine Alternatives for Fabric
* 🌐 **[ChunkBase](https://www.chunkbase.com/apps/)** - Minecraft Map Tools
* 🌐 **[TMC Links](https://gist.github.com/JoakimThorsen/e90bd7a588af25ae529530987d9acc8a)** - Technical Minecraft Resources
* 🌐 **[ShaderLABS](https://shaderlabs.org/wiki/Main_Page)** - Shader Comparisons and Resources
* 🌐 **[Minecraft TAS](https://minecrafttas.com/)** - All about Minecraft Tool-Assisted Speedruns
* ↪️ **[Minecraft Server Hosts / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_hosting)**
* ↪️ **[Minecraft Launchers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_launchers)** / [Beta](https://betacraft.uk/) / [Bedrock](https://bedrocklauncher.github.io/)
* ↪️ **[Minecraft Mods](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_mods)**
* ↪️ **[Minecraft Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_optimization_mods)**
* ⭐ **[Eaglercraft](https://eaglercraft.com/)** - Browser Minecraft / [Note](https://pastebin.com/wpDZzgN5) / [Source](https://git.eaglercraft.rip/eaglercraft) / [Client](https://eaglercraftx1-8.github.io/1.8/resent4.0/index.html) / [Mod Client](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Code Mods](https://eaglerforge-builder.vercel.app/) / [Servers](https://servers.eaglercraft.com/) / [Eaglercrack](https://eaglercrack.net/)
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** or [DigiMinecraft](https://www.digminecraft.com/) - Minecraft Resources / Guides
* ⭐ **[MCModdingGuide](https://rentry.org/MCModdingGuide)** - Minecraft Modding Guide
* ⭐ **[Couleur Tweak Tips](https://ctt.cx/)** - Minecraft Tweaks / Tips / [Discord](https://discord.gg/CTT)
* ⭐ **[spark](https://spark.lucko.me/)** - Minecraft Performance Profiler
* ⭐ **[MCPropertyEncyclopedia](https://joakimthorsen.github.io/MCPropertyEncyclopedia/)** - Block Property Encyclopedia
* ⭐ **[Villager Trading Cheatsheet](https://i.ibb.co/sKBjbzg/e9f8d80e2376.png)**
* ⭐ **[Minecraft Brewing Cheatsheet](https://minecraft.wiki/images/Minecraft_brewing_en.png)**
* [GamerGeeks](https://www.gamergeeks.net/) - Minecraft Tools / Calculators
* [Charm](https://svenhjol.github.io/Charm/), [Essential](https://essential.gg/) or [Quark](https://quarkmod.net/) - Minecraft Quality of Life Mods
* [MCPEDL](https://mcpedl.com/) - Minecraft PE/Bedrock Mods, Maps & Resources
* [Pax](https://github.com/froehlichA/pax) or [Mod Manager](https://github.com/kaniol-lck/modmanager) - Minecraft Mod Managers
* [Forgix](https://github.com/PacifistMC/Forgix) - Merge Mod Loaders
* [r/feedthebeast](https://reddit.com/r/feedthebeast/) - Minecraft Mod Discussion Subreddit
* [Vanillatweaks](https://www.vanillatweaks.net/), [Smithed](https://smithed.net/) or [VoodooBeard](https://mc.voodoobeard.com/) / [Discord](https://discord.gg/SnJQcfq) - Minecraft Data Packs
* [Minecraft Command Science](https://minecraftcommand.science/) or [MCStacker](https://mcstacker.net/) - Minecraft Command Generators
* [Minecraft Performance Flags](https://github.com/Mukul1127/Minecraft-Performance-Flags-Benchmarks) - Java Minecraft Benchmarks
* [Report Inspector](https://misode.github.io/report/) - Crash Report / Profiling Inspector
* [No Telemetry](https://modrinth.com/mod/no-telemetry) - Disable Telemetry Data
* [Data Pack Generators](https://misode.github.io/) - Minecraft Data Pack Generators
* [Distant Horizons](https://gitlab.com/jeseibel/distant-horizons) - Increased Minecraft Render Distance
* [ViveCraft](https://www.vivecraft.org/) - VR Minecraft
* [Skyclient](https://skyclient.co/) - Hypixel Asset Installer
* [SkyCrypt](https://sky.shiiyu.moe/) - SkyBlock Stats
* [Cubical](https://www.cubical.xyz/) / [Beta](https://beta.cubical.xyz/) - Minecraft Schematic Tool
* [Pixelart Builder](https://play.google.com/store/apps/details?id=com.electricfoal.photocrafter&hl=en&gl=US) or [PixelStacker](https://taylorlove.info/pixelstacker/) - Turn Photos into Minecraft Art
* [ReplayMod](https://replaymod.com/) - Record Minecraft Game Sessions / [GitHub](https://github.com/ReplayMod/ReplayMod)
* [GeyserMC](https://geysermc.org/) - Join Minecraft Java Servers with Bedrock Client / [Consoles](https://wiki.geysermc.org/geyser/using-geyser-with-consoles/)
* [Minecraft Server Scanner](https://github.com/Footsiefat/Minecraft-Server-Scanner) - Minecraft Server Info
* [Minecraft Server Checker](https://moistcatawumpus.github.io/minecraft-server-checker/) - Simple Server Checker
* [NameMC](https://namemc.com/) - Minecraft Name Availability Tracker
* [mcsrvstat](https://mcsrvstat.us/) - Server Status Updates
* [Forge](https://files.minecraftforge.net/), [Quilt](https://quiltmc.org/) or [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) - Minecraft Modding API
* [Mineflayer](https://prismarinejs.github.io/mineflayer/) - Minecraft Bot Creator
* [PVPRP](https://pvprp.com/) - Minecraft Texture Packs
* [ShadersMods](https://shadersmods.com/) or [MinecraftShader](https://minecraftshader.com/) - Minecraft Shaders
* [Iris Shaders](https://modrinth.com/mod/iris) - Fabric Shadermod for Minecraft
* [Block Palettes](https://www.blockpalettes.com/) or [Block Colors](https://blockcolors.app/) - Block Color Palettes
* [Laby](https://laby.net/) / [Discord](https://discord.com/invite/8JBMHDfWKp), [MinecraftSkins](https://www.minecraftskins.com/) or [MSkins](https://mskins.net/en) - Minecraft Skins
* [Ely.by](https://ely.by/) - Skin System / Authorization
* [Nova Skin](https://minecraft.novaskin.me/) or [Blockbench](https://www.blockbench.net/)- Minecraft Skin Editor
* [MinecraftCapes](https://minecraftcapes.net/) or [Capes](https://modrinth.com/mod/capes) - Minecraft Capes
* [Minecraft Armor Stand](https://haselkern.com/Minecraft-ArmorStand/) - Create Poses for Minecraft Armor
* [VoxelSphereGenerator](https://oranj.io/blog/VoxelSphereGenerator), [BDStudio](https://eszesbalint.github.io/bdstudio/editor) or [Minecraft Shapes](https://minecraftshapes.com/) - Minecraft Shape Tools / Voxel Editors
* [Custom-MC-Render-Cweeper](https://rentry.co/custom-mc-render-cweeper) - Custom 3D Model to Minecraft Render
* [MCprep](https://theduckcow.com/dev/blender/mcprep/) - Blender OBJ Import / Texturepacks / Character Rigging / Animations
* [DriveBackupV2](https://modrinth.com/plugin/drivebackupv2) - Minecraft Cloud Storage Backup
* [Amidst](https://github.com/toolbox4minecraft/amidst) - Minecraft World Overview Display Tool
* [The Minecraft Archive Project](https://map.crummy.com/) - Minecraft World Archive
* [Amulet](https://www.amuletmc.com/), [MCA Selector](https://github.com/Querz/mcaselector) or [uNmINeD](https://unmined.net/) - Minecraft Map Editors / Viewers
* [MineAtlas](http://mineatlas.com/), [Cubiomes Viewer](https://github.com/cubitect/cubiomes-viewer) or [MCSeeder](https://mcseeder.com/) - Minecraft Seeds
* [MinecraftMaps](https://www.minecraftmaps.com/) or [Mapcraft](https://mapcraft.me/) - Minecraft Maps
* [Minecraft Earth Map](https://earth.motfe.net/) - Earth Maps
* [MapartCraft](https://rebane2001.com/mapartcraft/) or [Cartographer](https://cartographer-mc.com/) - Mapart schematic / map.dat Generator
* [Chunker](https://chunker.app/) - Minecraft Format Converter (can corrupt worlds)
* [ObjtoSchematic](https://objtoschematic.com/) - Converts Minecraft Obj files to Schematics / [Discord](https://discord.com/invite/McS2VrBZPD)
* [NBT Studio](https://github.com/tryashtar/nbt-studio/ ) or [webNBT](https://irath96.github.io/webNBT/) - Minecraft NBT File Editors
* [TerraForged](https://github.com/TerraForged/TerraForged) - Improved Biomes Mod
* [Biomes-O-Plenty](https://github.com/Glitchfiend/BiomesOPlenty) - Extra Biomes Mod
* [Fabric-Bedrock-Miner](https://github.com/LXYan2333/Fabric-Bedrock-Miner) - Minecraft Bedrock Miner
* [Outvoted](https://modrinth.com/mod/outvoted) - Outvoted Minecraft Live Mobs
* [Voyager](https://voyager.minedojo.org/) - Minecraft AI
* [Enchant Order](https://iamcal.github.io/enchant-order/) - Minecraft Enchantment Ordering Tool
* [MiniMessageViewer](https://webui.advntr.dev/) - Format Plugin Messages
* [MinecraftJSON](https://www.minecraftjson.com/) - Minecraft Tellraw Generator
* [MCDF](https://mcdf.wiki.gg/) - Discontinued Minecraft Features Wiki
***
## ▷ Pokemon Tools
* 🌐 **[Awesome Pokémon](https://github.com/tobiasbueschel/awesome-pokemon)** - Curated List of Pokémon Resources
* ⭐ **[Bulbapedia](https://bulbapedia.bulbagarden.net/wiki/Main_Page)** - Pokémon Wiki
* ⭐ **[Serebii.net](https://www.serebii.net/)**, [Pokémon Database](https://pokemondb.net/) or [PocketMonsters.net](https://pocketmonsters.net/) - Pokémon Databases
* ⭐ **[PokeList](https://pokemonlist.netlify.app/)**, [Pokedex](https://github.com/skydoves/Pokedex) or [PokeAPI](https://pokeapi.co/) - Pokedexes
* ⭐ **[Pokémon Typechart](https://pokemondb.net/type)** - Pokémon Type Charts / [Image](https://img.pokemondb.net/images/typechart.png)
* ⭐ **[PokeMMO](https://pokemmo.com/en/)**, [DelugeRPG](https://www.delugerpg.com/), [Pokémon Legends Gods](https://www.pokemongods.com/) or [Pokémon Revolution Online](https://pokemonrevolution.net/) - Pokémon MMOs
* ⭐ **[Pokémon Showdown](https://pokemonshowdown.com/)** - Online Pokémon Battles
* [PokeCommunity](https://www.pokecommunity.com/) - Pokémon Community
* [Project Pokémon](https://projectpokemon.org/) - Pokémon Tools, Exploits, Saves etc.
* [PokeGB](https://github.com/binji/pokegb) - Pokémon Blue Emulator
* [PokemonLog](https://pokemonlog.com/), [PokeHarbor](https://www.pokeharbor.com/) or [Pokémon Coders](https://www.pokemoncoders.com/) - Hacked Pokémon ROMs
* [pret](https://github.com/orgs/pret/repositories) - Pokémon Disassembly / Decompilation Projects
* [PokéRogue](https://pokerogue.net/) - Pokémon Dungeon Crawler / [Discord](https://discord.com/invite/uWpTfdKG49)
* [Gearoid Pokémon](https://gearoid.me/pokemon/) - Pokémon Guessing Game
* [PKHeX](https://github.com/kwsch/PKHeX) - Pokémon Save File Editor
* [GameBanana](https://gamebanana.com/mods/games/14783) - Pokémon Brilliant Diamond / Shining Pearl Mods
* [Universal Pokémon Randomizer ZX](https://github.com/Ajarmar/universal-pokemon-randomizer-zx/) - Randomize Pokémon (works for GBA through 3DS)
* [NYCPokeMap](https://nycpokemap.com/) - Real-time Pokémon Go Map for NYC
* [PkmnCards](https://pkmncards.com/) - Pokémon Card Database
* [unite-db](https://unite-db.com/) - Pokémon Unite Database
* [HelixChamber](https://helixchamber.com/) - Unused Pokémon Material
* [Pokémon Fossil Museum](https://my.matterport.com/show/?m=P9WCbyCBGBM) - Explore Pokémon Fossil Museum
***
## ▷ Counter-Strike Tools
* ⭐ **[HLTV](https://www.hltv.org/)** - Counter-Strike News
* ⭐ **[CsWarzOnE](https://cswarzone.com/)** - Counter-Strike Downloads
* [CSGO Trader](https://csgotrader.app/) - CS:GO Trading Enhancements
* [ArminC-AutoExec](https://github.com/ArmynC/ArminC-AutoExec) - ArminC's CS2 Config
* [CS2 Browser](https://cs2browser.com/) or [CS2 Server Picker](https://github.com/FN-FAL113/cs2-server-picker) - Counter-Strike 2 Server Browser
* [Faceit](https://www.faceit.com/) - Matchmaking Client
* [Faceit Finder](https://faceitfinder.com/) - Faceit Account Finder
* [Repeek](https://repeek.gg/) - Faceit Enhancement Extension
***
## ▷ GTA Tools
* 🌐 **[GTAAll](https://www.gtaall.com/)**, [GTAInside](https://gtainside.com/), [GameModding](https://gamemodding.com/), [GTAGarage](https://gtagarage.com/) or [LibertyCity](https://libertycity.net/) - GTA Mods, Walkthroughs & More
* 🌐 **[GTA5-Mods](https://www.gta5-mods.com/)** - GTAV Mods
* 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy
* ⭐ **[San Andreas: Multiplayer](https://www.sa-mp.mp/)** - Multiplayer GTA:SA / [Discord](https://discord.com/invite/samp)
* ⭐ **[CLEO](https://cleo.li/)** - Extensible Library Plugin For GTA III, VC & SA / [Discord](https://discord.com/invite/d5dZSfgBZr)
* ⭐ **[SilentPatch](https://cookieplmonster.github.io/mods/gta/)** - Quality of Life Fixes For GTA III, VC & SA
* [Grand Theft Wiki](https://www.grandtheftwiki.com/Main_Page) - GTA Wiki
* [GTA Cars](https://gtacars.net/) - GTA Car Database / Stats
* [Rainbomizer](https://rainbomizer.com/) - GTA Randomizer Mods
* [OpenIV](https://openiv.com/) - Rockstar Game Modding Tool
* [Gillian's GTA](https://gillian-guide.github.io/) - GTA IV Modding Guide
* [GTA Connected](https://gtaconnected.com/) - Multiplayer Mod / GTA III, IV, VC, SC / [Discord](https://discord.gg/YSyasDa)
* [D.E.P](https://www.definitive-edition-project.com/) - Fix GTA PC Port Bugs
* [Vice City: Multiplayer](https://vc-mp.org/) - Mutiplayer GTA:VC
***
## ▷ Doom Tools
* ⭐ **[Doom Wiki](https://doomwiki.org/wiki/Entryway)** - Doom Wiki
* ⭐ **[ZDoom](https://www.zdoom.org/downloads)** - Doom Source Port
* ⭐ **[ZDaemon](https://www.zdaemon.org/)**, **[Doomseeker](https://doomseeker.drdteam.org/)**, [oDamex](https://odamex.net/), [DoomUtils](http://doomutils.ucoz.com/) or [Zandronum](https://zandronum.com/) - Online Multiplayer Doom
* [Realm667](https://www.realm667.com/index.php/en/) - Doom Mods
* [Classic DOOM](https://classicdoom.com/) or [DoomWorld](https://www.doomworld.com/) - Doom Downloads
* [Doom64 EX](https://doom64ex.wordpress.com/downloads/) - Doom 64 PC Port
* [dhewm3](https://dhewm3.org/) - Doom 3 Source Port
* [DoomsHack](https://doomshack.org/), [Doom Pastebin](https://pastebin.com/3DWF3Msq) or [Doom Wad Station](https://www.doomwadstation.net/) - Doom WADs
* [DOOM FX](https://github.com/RandalLinden/DOOM-FX) - Doom SNES Source Code
* [UltimateDoomBuilder](https://ultimatedoombuilder.github.io/) - Doom Map Builder
***
## ▷ Mario Kart Tools
* ⭐ **[Retro Rewind](https://discord.gg/qbr3Y4PJFH)** - Retro MKW Tracks / Multiplayer / [Wiki](https://wiki.tockdom.com/wiki/Retro_Rewind) / [Auto-Updater](https://github.com/patchzyy/WheelWizard/releases) / [Setup Guide](https://redd.it/1dzerns)
* ⭐ **[CTGP Revolution](https://www.chadsoft.co.uk/)** - Custom MKW Tracks / Multiplayer / Disc required
* ⭐ **[Mario Kart Midnight](https://wiki.tockdom.com/wiki/Mario_Kart_Midnight)** - Custom MKW Tracks / Multiplayer
* ⭐ **[MKWRs](https://mkwrs.com)** or [MKLeaderboards](https://www.mkleaderboards.com/) - Mario Kart Records / Videos
* ⭐ **[MKW Lobbies](https://wiimmfi.de/stats/mkw)** - Online MKW Lobbies
* [/r/MarioKart](https://www.reddit.com/r/mariokart/) or [/r/MarioKartWii](https://www.reddit.com/r/MarioKartWii/) - Mario Kart Subreddits
* [RiiBalanced](https://drive.google.com/file/d/1AKJH3s0YpxQ09eud0EEd2YVFJ56f9VuO/view) - Rebalanced MKW Mod / [Discord](https://discord.gg/YZxyK4f3EU)
* [TTs Online](https://redd.it/ie6gi7) - MKW Online Time Trials Mod
* [CTGPRecords](https://www.youtube.com/@CTGPRecords) - Custom Track Records / Videos
* [MaxVRList](https://maxvrlist.com/) - VR Leaderboards
* [xer](https://xer.fr/mkw) - MKW Item Probabilities
* Tockdom Wikis - [MKW](https://wiki.tockdom.com/wiki/Main_Page) / [MK8](https://mk8.tockdom.com/) / [MK3DS](https://mk3ds.com/) / [MKDS](https://wiki.dshack.org/) / [MKDD](https://mkdd.org/) - Custom Mario Kart Wikis
* [Custom Track Tutorial](https://wiki.tockdom.com/wiki/Custom_Track_Tutorial) - How-to Make Custom MKW Tracks
* [MKW Texture Hacks](https://wiki.tockdom.com/wiki/Texture_Hack_Distribution) - Custom MKW Textures
***
## ▷ Geometry Dash Tools
* 🌐 **[Cvolton Tools](https://github.com/Cvolton?tab=repositories)** - Multiple GD Tools
* ↪️ **[GD Demon Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_geometry_dash_demon_lists)**
* ⭐ **[Geode](https://geode-sdk.org/)** - Mod Menu & Modding Framework
* ⭐ **[GDDP](https://gddp.pro/)** or [GD Demon Ladder](https://gdladder.com/) - Practice & Improve Your Skills
* [Soluble Texture Packs](https://solubletexturepacks.com/) - GD Texture Packs / [Manager](https://geode-sdk.org/mods/geode.texture-loader/)
* [Spritesheet Splitter](https://gdcolon.com/gdsplitter/) - Split & Merge GD Spritesheets
* [GD Save Explorer](https://gdcolon.com/gdsave/) - View Detailed Stats & Data of Save Files
* [Song File Hub](https://songfilehub.com/home) - GD Songs & Mashups / [Discord](https://discord.com/invite/maSgd4zpEF)
* [Globed](https://geode-sdk.org/mods/dankmeme.globed2/) - GD Multiplayer Mod
* [GD Browser](https://gdbrowser.com/) - GD Level Browser
* [GD Font Generator](https://gdcolon.com/gdfont) - Generate Custom GD Logos & Messages
* [SPWN](https://spu7nix.net/spwn/#/) - GD Level Programming Language
* [GD Docs](https://docs.gd-programming.org/) - GD Programming Documentation
* [GD History](https://history.geometrydash.eu/) - GD Archival Project / [Downloader](https://github.com/Cvolton/GDHistory-Downloader)
* [GMD Private Server](https://github.com/Cvolton/GMDprivateServer) - Private Server Maker
* [Report Bugged 2.2 Levels](https://docs.google.com/forms/d/e/1FAIpQLScDKMIxPKeMxGpyDbQnsDDhW7ba0Lh4ZFAD4RA_ZIt5sbId9A/viewform)
* [3Dash](https://delugedrop.itch.io/3dash) - 3D Geometry Dash Game
* 3Dash Tools - [Patched Server](https://3dash.mg95.dev/) / [Demon List](https://3dashdl.pages.dev/#/) / [Challenge List](https://3dashdemonlist.github.io/Challenge/) / [Impossible Levels](https://3dashdemonlist.github.io/ILL/)
***
## ▷ Roblox Tools
* 🌐 **[Roblox Archive](https://archive.roblonium.com/)** - Roblox Client Archive
* ⭐ **[Roblox Account Manager](https://github.com/ic3w0lf22/Roblox-Account-Manager)** - Roblox Account Manager
* ⭐ **[Rolimon's](https://www.rolimons.com/games)** or [RoMonitor Stats](https://romonitorstats.com/) - Roblox Experience Stats
* ⭐ **[Bloxstrap](https://bloxstrap.pizzaboxer.xyz/)** - Roblox Player Bootstrapper / **[GitHub](https://github.com/pizzaboxer/bloxstrap)**
* [Novetus](https://bitl.itch.io/novetus) - Self-Hosted Multi-version Roblox Client
* [Roblox Studio Mod Manager](https://github.com/MaximumADHD/Roblox-Studio-Mod-Manager) - Roblox Studio Bootstrapper
* [RoPro](https://ropro.io/), [Roblox+](https://chromewebstore.google.com/detail/roblox%20/jfbnmfgkohlfclfnplnlenbalpppohkm), [BTRoblox](https://twitter.com/AntiBoomz/status/1378597179556823040), [RoGold](https://rogold.live/) or [RoSeal](https://www.roseal.live/) - Enhance Roblox Website
* [RBXServers](https://rbxservers.xyz/) or [Freevipservers](https://freevipservers.net/) - Roblox VIP Servers
* [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) - Roblox APIs
* [ingame.clothing](https://ingame.clothing/) - Preview Avatar Clothing
***
## ▷ Terraria Tools
* ⭐ **[Terranion](https://yal.cc/r/terranion/)** - Terraria Wiki
* [Terraria Forum](https://forums.terraria.org/) - Terraria Community, Mods Help and more
* [TEdit](https://www.binaryconstruct.com/tedit), [terramap](https://terramap.github.io/), [TerraFirma](https://github.com/mrkite/TerraFirma/releases/) or [terraria-map-editor](https://tedit.github.io/terraria-map-editor-web/) - Map Viewers / Editors
* [Terrasavr](https://yal.cc/r/terrasavr/) - Terraria Character Editor
* [Increased FOV](https://gamebanana.com/tuts/14022) - Increase Terraria FOV for 21:9 Monitors
***
## ▷ Gacha Tools
* 🌐 **[Paimon.moe](https://paimon.moe/)** or [Honey Impact](https://genshin.honeyhunterworld.com/) - Genshin Impact Resources / Tools
* 🌐 **[Honkai.gg](https://honkai.gg/)** - Honkai Star Rail Resources / Tools
* ⭐ **[Prydwen](https://www.prydwen.gg/)** - Gacha Game Guides / [Discord](https://discord.gg/prydwen)
* ⭐ **[Keqingmains](https://keqingmains.com/)** - Genshin Guides
* ⭐ **[GIMI](https://github.com/SilentNightSound/GI-Model-Importer)** - Genshin Impact Modding Tool / [Gamebanana Page](https://gamebanana.com/games/8552) / [Discord](https://discord.gg/agmg)
* [/r/GachaGaming](https://www.reddit.com/r/gachagaming/) - Gacha Games Subreddit
* [LunarCore](https://github.com/Melledy/LunarCore) - Private Honkai: Star Rail Servers
* [Star Rail Station](https://starrailstation.com/), [Pokke's Library](https://pokkelibrary.com/) or [stardb.gg](https://stardb.gg/) - Honkai Star Rail Guides
* [Seelie.me](https://seelie.me/) - Genshin / Star Rail Planner
* [Genshin Center](https://genshin-center.com/) - Genshin Planner
* [Genshin Optimizer](https://frzyc.github.io/genshin-optimizer/) - Genshin Impact Calculator / Artifact Optimizer
* [Genshin Helper Doc](https://docs.google.com/spreadsheets/d/1gNxZ2xab1J6o1TuNVWMeLOZ7TPOqrsf3SshP5DLvKzI/htmlview?pru=AAABdXYM80o*xMxXJdNbCCZ-v9FLVh6EXg) - Genshin Builds Guide
* [Grasscutter](https://grasscutter.io/) - Private Genshin Impact Servers / [Discord](https://discord.gg/T5vZU6UyeG)
* [Genshin Impact FPS Unlocker](https://github.com/34736384/genshin-fps-unlock) - Unlock Genshin Impact FPS Cap
* [Hoyolab Teyvat Interactive Map](https://act.hoyolab.com/ys/app/interactive-map/index.html), [Mapgenie Teyvat Interactive Map](https://mapgenie.io/genshin-impact) or [Genshin Impact Map](https://genshin-impact-map.appsample.com/) - Genshin Impact Maps
***
## ▷ Tabletop Tools
* 🌐 **[Awesome TTRPG](https://github.com/Zireael07/awesome-tabletop-rpgs)** - Online TTRPGs / Resources
* 🌐 **[5ETools](https://5e.tools/)**, [Roll for Fantasy](https://rollforfantasy.com/), [Kassoon](https://www.kassoon.com/dnd/) or [DragonsFoot](https://www.dragonsfoot.org/) - TTRPG Tools
* ⭐ **[dice.run](https://dice.run/)**, [Random Dice](http://www.dicesimulator.com/), [Desktop Dice](https://girkovarpa.itch.io/desktopdice) or [Google Dice](https://g.co/kgs/fVJuzq) - Dice Simulators
* ⭐ **[Kanka](https://kanka.io/en-US)** - Tabletop RPG Manager
* [RPG.net](https://forum.rpg.net/) - RPG Forums
* [Adventurer's Codex](https://adventurerscodex.com) - Online D&D 5e Campaign Manager / System
* [NaturalCrit](https://www.naturalcrit.com/) - Create D&D Homebrews / Badges
* [FantasiaArchive](https://fantasiaarchive.com/) - World Building / Documenting Tool
* [DnD World Building](https://arcadia.net/Cruinne/DnD/Articles/worldbuilding.html) - Fantasy World Building Guides
* [The Acaeum](https://www.acaeum.com/) - Dungeons & Dragons Database
* [Archives of Nethys](https://aonprd.com/) - Pathfinder Database
* [WarGamer](https://www.wargamer.com/) - Tabletop RPG Guides
* [Roll20](https://roll20.net/) or [Rolisteam](https://rolisteam.org/) - Tabletop RPG Streaming
* [Tabletopy](https://tabletopy.com/) - Tabletop RPG Soundboard
* [Map Generator](https://emptybuttons.itch.io/map-generator) - Tabletop Roleplaying Map Generator
* [MOGG](http://img.mogg.fr/HIRES/) - Magic The Gathering Card Scans

File diff suppressed because it is too large Load Diff

View File

@ -8,8 +8,8 @@ hero:
text: freemediaheckyeah text: freemediaheckyeah
tagline: The largest collection of free stuff on the internet! tagline: The largest collection of free stuff on the internet!
prelink: prelink:
title: Check out Retro Rewind! title: Monthly Updates [Feb 2024]
link: /posts/Retro-Rewind link: /posts/feb-2024
image: image:
src: /test.png src: /test.png
alt: FMHY Icon alt: FMHY Icon
@ -26,55 +26,19 @@ hero:
features: features:
- title: Movies / TV / Anime - title: Movies / TV / Anime
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#7aa2f7" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><rect width="20" height="15" x="2" y="7" rx="2" ry="2"/><path d="m17 2l-5 5l-5-5"/></g></svg> icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#31373D" d="M35 31s0 4-4 4H5c-4 0-4-4-4-4V12c0-4 4-4 4-4h26s4 0 4 4v19z"/><path fill="#31373D" d="M21.303 10.389a.999.999 0 1 1-1.414 1.414l-9.192-9.192a.999.999 0 1 1 1.414-1.414l9.192 9.192z"/><path fill="#31373D" d="M14.697 10.389a.999.999 0 1 0 1.414 1.414l9.192-9.192a.999.999 0 1 0-1.414-1.414l-9.192 9.192z"/><path fill="#55ACEE" d="M18 11c8 0 10 1 11 2s2 3 2 8s-1 7-2 8s-3 2-11 2s-10-1-11-2s-2-3-2-8s1-7 2-8s3-2 11-2z"/><circle cx="31.5" cy="31.5" r="1.5" fill="#66757F"/><circle cx="4.5" cy="31.5" r="1.5" fill="#66757F"/></svg>
link: /videopiracyguide link: /videopiracyguide
details: Stream, download, torrent and binge all your favourites movies or shows! details: Download, stream, torrent and binge all your favourites movies or shows!
- title: Music / Podcasts / Radio - title: Music / Podcasts / Radio
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#ad7fa8" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M9 18V5l12-2v13M9 9l12-2"/><circle cx="6" cy="18" r="3"/><circle cx="18" cy="16" r="3"/></g></svg> icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#5DADEC" d="M14.182.168L7.818 1.469A1.07 1.07 0 0 0 7 2.471v15.857A6.226 6.226 0 0 0 5 18c-2.762 0-5 1.741-5 3.889c0 2.147 2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H10V6.477l4.182-.855A1.07 1.07 0 0 0 15 4.62V.835c0-.459-.368-.76-.818-.667zm21 4l-6.363 1.301c-.451.092-.819.543-.819 1.002v15.857A6.198 6.198 0 0 0 26 22c-2.762 0-5 1.741-5 3.889c0 2.147 2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H31V10.477l4.182-.855A1.07 1.07 0 0 0 36 8.62V4.835c0-.459-.368-.76-.818-.667z"/><path fill="#5DADEC" d="m23.182 10.167l-6.363 1.301c-.451.093-.819.544-.819 1.003v15.857A6.198 6.198 0 0 0 14 28c-2.762 0-5 1.741-5 3.889s2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H19V16.477l4.182-.855A1.07 1.07 0 0 0 24 14.62v-3.785c0-.459-.368-.76-.818-.668z"/></svg>
link: /audiopiracyguide link: /audiopiracyguide
details: Stream, download and torrent songs, podcasts and more! details: Stream, download and torrent songs, podcasts and more!
- title: Games / Emulation - title: Games / Emulation
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#73d216" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M6 12h4m-2-2v4m7-1h.01M18 11h.01"/><rect width="20" height="12" x="2" y="6" rx="2"/></g></svg> icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#31373D" d="m2.13 14.856l-.004-.002S.075 27.271.075 29.061c0 1.824 1.343 3.302 3 3.302c.68 0 1.3-.258 1.803-.678l10.166-8.938L2.13 14.856zm31.69 0l.004-.002s2.051 12.417 2.051 14.207c0 1.824-1.343 3.302-3 3.302c-.68 0-1.3-.258-1.803-.678l-10.166-8.938l12.914-7.891z"/><g fill="#14171A"><circle cx="25.975" cy="15.551" r="8.5"/><circle cx="9.975" cy="15.551" r="8.5"/><path d="M9.975 7.051h16v16.87h-16z"/></g><circle cx="13.075" cy="23.301" r="5" fill="#14171A"/><circle cx="22.875" cy="23.301" r="5" fill="#14171A"/><circle cx="22.875" cy="23.301" r="3" fill="#67757F"/><circle cx="13.075" cy="23.301" r="3" fill="#67757F"/><circle cx="25.735" cy="11.133" r="1.603" fill="#FFCC4D"/><circle cx="25.735" cy="17.607" r="1.603" fill="#77B255"/><circle cx="22.498" cy="14.37" r="1.603" fill="#50A5E6"/><circle cx="28.972" cy="14.37" r="1.603" fill="#DD2E44"/><path fill="#8899A6" d="M11.148 12.514v-2.168a.505.505 0 0 0-.505-.505H9.085a.505.505 0 0 0-.505.505v2.168l1.284 1.285l1.284-1.285zm-2.569 3.63v2.168c0 .279.226.505.505.505h1.558a.505.505 0 0 0 .505-.505v-2.168l-1.284-1.285l-1.284 1.285zm5.269-3.1H11.68l-1.285 1.285l1.285 1.285h2.168a.506.506 0 0 0 .505-.505V13.55a.506.506 0 0 0-.505-.506zm-5.799 0H5.88a.506.506 0 0 0-.505.505v1.558c0 .279.226.505.505.505h2.168l1.285-1.285l-1.284-1.283z"/></svg>
link: /gamingpiracyguide link: /gamingpiracyguide
details: Download and play all your favourite games or emulate some old but gold ones! details: Download and play all your favourite games or emulate some old but gold ones!
- title: Book / Comics / Manga - title: Book / Comics / Manga
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#fcaf3e" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M8 3H2v15h7c1.7 0 3 1.3 3 3V7c0-2.2-1.8-4-4-4m8 9l2 2l4-4"/><path d="M22 6V3h-6c-2.2 0-4 1.8-4 4v14c0-1.7 1.3-3 3-3h7v-2.3"/></g></svg> icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#553788" d="M15 31c0 2.209-.791 4-3 4H5c-4 0-4-14 0-14h7c2.209 0 3 1.791 3 4v6z"/><path fill="#9266CC" d="M34 33h-1V23h1a1 1 0 1 0 0-2H10c-4 0-4 14 0 14h24a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M34.172 33H11c-2 0-2-10 0-10h23.172c1.104 0 1.104 10 0 10z"/><path fill="#99AAB5" d="M11.5 25h23.35c-.135-1.175-.36-2-.678-2H11c-1.651 0-1.938 6.808-.863 9.188C9.745 29.229 10.199 25 11.5 25z"/><path fill="#269" d="M12 8a4 4 0 0 1-4 4H4C0 12 0 1 4 1h4a4 4 0 0 1 4 4v3z"/><path fill="#55ACEE" d="M31 10h-1V3h1a1 1 0 1 0 0-2H7C3 1 3 12 7 12h24a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M31.172 10H8c-2 0-2-7 0-7h23.172c1.104 0 1.104 7 0 7z"/><path fill="#99AAB5" d="M8 5h23.925c-.114-1.125-.364-2-.753-2H8C6.807 3 6.331 5.489 6.562 7.5C6.718 6.142 7.193 5 8 5z"/><path fill="#F4900C" d="M20 17a4 4 0 0 1-4 4H6c-4 0-4-9 0-9h10a4 4 0 0 1 4 4v1z"/><path fill="#FFAC33" d="M35 19h-1v-5h1a1 1 0 1 0 0-2H15c-4 0-4 9 0 9h20a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M35.172 19H16c-2 0-2-5 0-5h19.172c1.104 0 1.104 5 0 5z"/><path fill="#99AAB5" d="M16 16h19.984c-.065-1.062-.334-2-.812-2H16c-1.274 0-1.733 2.027-1.383 3.5c.198-.839.657-1.5 1.383-1.5z"/></svg>
link: /readingpiracyguide link: /readingpiracyguide
details: Whether you're a bookworm, otaku or comic book fan, you'll be able to find your favourite pieces of literature here for free! details: Whether you're a bookworm, otaku or comic book fan, you'll be able to find your favourite pieces of literature here for free!
--- ---
<script setup>
import { onMounted } from 'vue'
onMounted(() => {
var preferredKawaii
try {
preferredKawaii = localStorage.getItem('uwu')
} catch (err) {}
const urlParams = new URLSearchParams(window.location.search)
const kawaii = urlParams.get('uwu')
const setKawaii = () => {
const images = document.querySelectorAll('.VPImage.image-src')
images.forEach((img) => {
img.src = '/logo-uwu.svg'
})
}
if (kawaii === 'true') {
try {
localStorage.setItem('uwu', true)
} catch (err) {}
console.log('uwu mode enabled. Disable with "?uwu=false".');
setKawaii()
} else if (kawaii === 'false') {
try {
localStorage.removeItem('uwu', false)
} catch (err) {}
const images = document.querySelectorAll('.VPImage.image-src')
images.forEach((img) => {
img.src = '/test.png'
})
} else if (preferredKawaii) {
setKawaii()
}
})
</script>

View File

@ -1,7 +1,7 @@
{ {
"name": "fmhy", "name": "fmhy",
"type": "module", "type": "module",
"packageManager": "pnpm@9.4.0", "packageManager": "pnpm@8.15.1",
"scripts": { "scripts": {
"docs:dev": "vitepress dev", "docs:dev": "vitepress dev",
"docs:build": "vitepress build", "docs:build": "vitepress build",
@ -12,14 +12,13 @@
"api:preview": "node .output/server/index.mjs", "api:preview": "node .output/server/index.mjs",
"og:dev": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev", "og:dev": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev",
"format": "prettier -w --cache --check .", "format": "prettier -w --cache --check .",
"lint": "biome lint .", "lint": "eslint .vitepress -f pretty --cache",
"lint:fix": "biome lint . --write",
"lint:fix:unsafe": "biome lint . --write --unsafe",
"postinstall": "nitropack prepare" "postinstall": "nitropack prepare"
}, },
"dependencies": { "dependencies": {
"@headlessui/vue": "^1.7.22", "@headlessui/vue": "^1.7.17",
"@resvg/resvg-js": "^2.6.0", "@resvg/resvg-js": "^2.6.0",
"vitepress": "npm:@taskylizard/vitepress@1.0.10",
"consola": "^3.2.3", "consola": "^3.2.3",
"feed": "^4.2.2", "feed": "^4.2.2",
"fs-extra": "^11.2.0", "fs-extra": "^11.2.0",
@ -29,21 +28,18 @@
"nprogress": "^0.2.0", "nprogress": "^0.2.0",
"pathe": "^1.1.2", "pathe": "^1.1.2",
"unocss": "^0.58.4", "unocss": "^0.58.4",
"vitepress": "npm:@taskylizard/vitepress@1.1.1",
"vue": "^3.4.15", "vue": "^3.4.15",
"x-satori": "^0.1.5", "x-satori": "^0.1.5",
"zod": "^3.22.4" "zod": "^3.22.4"
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "^1.8.3",
"@iconify-json/carbon": "^1.1.28", "@iconify-json/carbon": "^1.1.28",
"@iconify-json/heroicons-solid": "^1.1.11",
"@iconify-json/twemoji": "^1.1.15", "@iconify-json/twemoji": "^1.1.15",
"@taskylizard/biome-config": "^1.0.1", "@taskylizard/eslint-config": "^1.1.1",
"@types/fs-extra": "^11.0.4", "@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.15", "@types/node": "^20.11.15",
"@types/nprogress": "^0.2.3", "@types/nprogress": "^0.2.3",
"prettier": "^3.2.4", "eslint": "^8.56.0",
"tailwindcss": "^3.4.4" "prettier": "^3.2.4"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,99 +0,0 @@
---
title: Mario Kart Wii Retro Rewind
description: Retro Rewind
date: 2024-07-09
next: false
aside: left
prev: false
sidebar: false
footer: true
---
# What is Retro Rewind?
[Retro Rewind](https://discord.gg/qbr3Y4PJFH) is a Mario Kart Wii custom track distribution that features ***every retro track*** from Super Mario Kart to Mario Kart 7, as well as some from Mario Kart 8 and Mario Kart Tour, totaling 152. Retro Rewind can be played online in public rooms with Dolphin Emulator, a Wii or WiiU.
It also features many [enhancements](https://ibb.co/RCckmdT) such as:
* Max VR has been increased from 9999 to 30000.
* Thunderclouds are now [Mega Clouds](https://i.imgur.com/8H54rGH.mp4), which give Mega Mushrooms, rather than shrinking.
* Added (optional) inside drift to all vehicles, meaning more of them are competitive.
* Outside drift bikes have an extra level of mini turbo, and karts have three levels, similar to MK8DX.
* Vehicles can brake while drifting, making all tracks playable, and more vehicles viable.
* Ability to change or randomize vehicle/character combo between races.
* Significantly faster menu animations and load times between races.
* A online multiplayer version of Time Trials has been added.
* Unpopular modes like 100cc and mirror have been removed from online.
***
# PC Setup Guide
1. Download Mario Kart Wii, or [dump your disc](https://youtu.be/36nNq49tfSM).
1. Download [Dolphin](https://dolphin-emu.org/download/) and [extract it](https://fmhy.net/file-tools#file-archivers).
1. Open Dolphins controller tab, set [gamecube port](https://i.ibb.co/SXtDkXt/image.png) to standard, press configure, and select your controller in the drop down menu. Go back to the controller tab, set [Wii Remote 1](https://i.ibb.co/wYk0R4L/image.png) to "Emulated Wii Remote," press configure, and select your mouse from the dropdown menu.
1. Download [WheelWizard](https://github.com/patchzyy/WheelWizard/releases), go to settings, set the 3 paths, click save, select home, run the installer.
1. Go back to settings, select "Launch Mii channel," create a Mii to use for your license, and that's it, you can now launch and play Retro Rewind via WheelWizard!
***
# Wii / WiiU Setup Guide
**Note** - This method requires a disc.
1. Install the Homebrew Channel using this [guide for Wii](https://wii.hacks.guide/) or this [guide for WiiU](https://youtu.be/w44Iz3HQuIo).
1. Download [Retro Rewind](https://discord.gg/UxHmgNdPxw) and drag the files to your SD card.
1. Plug your SD card into your Wii and launch Homebrew.
1. You can launch Retro Rewind from here, but follow the steps below get get a Wii system channel / updater.
1. Launch YAWM Modmii in Homebrew, select your SD card, and install the RetroRewind.wad for the console you're on. Thats it, you now have a Retro Rewind system channel and updater. If the channel updater wont work just download the files manually and replace them in your SD.
**[Video Guide](https://youtu.be/qH4ou21r8ic)**
***
# Things to Note
* WheelWizard can be slow, especially if you're installing RR for the first time, so it may be worth doing [manually](https://youtu.be/ZiQ7WAOlJOk) instead to speed up the process.
* You need to turn on things like inside drift, brake drifting, fast menus, and finishing times in the Retro Rewind settings.
* Retro Rewind uses a modified version of WiiLink, meaning it does NOT require a NAND to play online with Dolphin.
* If using your mouse as a wiimote isn't working well, try switching to "above tv" in Wii settings.
* To use a real gamecube controller on PC you'll need an [adapter](https://dolphin-emu.org/docs/guides/how-use-official-gc-controller-adapter-wii-u/).
* Online multiplayer Time Trials can be enabled in the top right of WheelWizard, or by right clicking mario kart in dolphin, selecting run with riivolution patches, enabling online TTs, and running the game.
* Open-Host can be enabled by pressing start or + on the Retro WFC friend menu. This will allow anyone to join your games via friend code, even if you don't have them added yourself.
* If you don't know anything about Mario Kart Wii, or why it has a cult following 16 years after its release, I'd suggest checking out [TWD98](https://www.youtube.com/@TWD98). Troy plays a lot, so its a good way to learn about the game and improve.
***
**Official Wiki**
https://wiki.tockdom.com/wiki/Retro_Rewind
**Discord Servers**
main: https://discord.gg/qbr3Y4PJFH
zpl: https://discord.gg/jczByGAqb6
**YouTube Channel**
https://www.youtube.com/@ZPL__/
**Online Rooms**
https://kevinvg207.github.io/rr-rooms/
https://ppeb.me/RetroRewind/
**Guide Links**
https://redd.it/1dzerns
https://fmhy.net/posts/Retro-Rewind
---

View File

@ -1,88 +0,0 @@
---
title: Monthly Updates [April]
description: April 2024 updates
date: 2024-04-01
next: false
aside: left
prev: false
sidebar: false
footer: true
---
# Wiki Updates
- Split Android Tools into subsections:
[Optimization](https://fmhy.net/android-iosguide#optimization), [Battery](https://fmhy.net/android-iosguide#battery-tools), [Keyboard](https://fmhy.net/android-iosguide#keyboard-text), [Screen](https://fmhy.net/android-iosguide#screen-tools), [Files](https://fmhy.net/android-iosguide#android-file-tools),
[Root / Flash](https://fmhy.net/android-iosguide#root-flash), [Productivity](https://fmhy.net/android-iosguide#productivity-calendars), [Maps](https://fmhy.net/android-iosguide#maps-location), [Notifications](https://fmhy.net/android-iosguide#notifications-widgets) and [Social Media](https://fmhy.net/android-iosguide#social-media-apps).
- Added [Abandonware](https://fmhy.net/gamingpiracyguide#abandonware), [MOBA](https://fmhy.net/gamingpiracyguide#moba-tools), [Gacha](https://fmhy.net/gamingpiracyguide#gacha-tools), [Counter-Strike](https://fmhy.net/gamingpiracyguide#counter-strike-tools), [Doom](https://fmhy.net/gamingpiracyguide#doom-tools) and [Controller Tool](https://fmhy.net/gamingpiracyguide#controller-tools) sections to Gaming.
- Added [Toys / Figures](https://fmhy.net/miscguide#toys-figures) section to Shopping.
- Added [Manga](https://fmhy.net/android-iosguide#android-manga) section to Android Reading.
- Added [MPV Shaders](https://fmhy.net/storage#mpv-shaders) section to Video Tools.
- Added [Email](https://fmhy.net/adblockvpnguide#email-privacy) section to Privacy.
- Added [Regex](https://fmhy.pages.dev/devtools#regex-tools) section to Dev Tools.
- Our [FMHY Social](https://social.fmhy.net/@fmhy) (fediverse instance / account) is now live.
- Removed wiki from saidit. Its our least used version so we're not sure its worth the effort. If enough people want it back we'll reconsider.
---
# Stars Added ⭐
- Starred [Streamed](https://fmhy.net/videopiracyguide#live-sports) in Live Sports. Fast streams, no ads.
- Starred [Poke](https://fmhy.net/social-media-tools#youtube-frontends) in YouTube Frontends. Nice UI, download support, no ads.
- Starred [Motrix](https://fmhy.net/file-tools#download-managers) in Download Managers. Some people prefer this over Jdownloader / IDM.
- Starred [Openlib](https://fmhy.net/android-iosguide#android-reading) in Android Reading. Annas Archive app.
- Starred [Stacher](https://fmhy.net/social-media-tools#youtube-downloaders) in YouTube Downloaders. Modern YT-DL GUI.
- Starred [DeepLX](https://fmhy.net/text-tools#translators) in Translators. Unlimited DeepL.
- Starred [Claude](https://fmhy.net/ai#online-chatbots) in Online Chatbots. Works better than things like gemini.
- Starred [Soft98](https://fmhy.net/downloadpiracyguide#software-sites) in Software Sites. Big library, single click DDL.
- Starred [JellyPlayer](https://fmhy.net/video-tools#jellyfin-tools) in Jellyfin Tools. Modern Jellyfin client.
- Starred [UniGetUI](https://fmhy.net/system-tools#package-managers) in Package Managers. Nice user-interface for Winget.
- Starred [Zipline](https://fmhy.net/img-tools#screenshot-tools) in Screenshot Tools. Self-hosted, feature-rich ShareX server.
- Starred [WSABuilds](https://fmhy.net/android-iosguide#android-emulators) in Android Emulators. Pre-built WSA binaries that will continue to be [updated](https://ibb.co/R4hssDc).
- Starred [SmartImage](https://fmhy.net/img-tools#reverse-image-search) in Reverse Image Search. Multi-site reverse image search tool.
---
# Things Removed
- Removed free-mp3-download as they've shutdown.
- Removed HolyUnblocker as they've [shutdown](https://github.com/QuiteAFancyEmerald/Holy-Unblocker?tab=readme-ov-file#important-message-original).
- Removed WSA as support for it has been [dropped](https://ibb.co/zxB565S).
- Unstarred FlixHQ in Streaming. This used to be good but seems to be a lot slower recently.
***
### [Previous Update Threads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates)
---
### RSS Feed: https://fmhy.net/feed.rss
---
*Note - These update threads only contains major updates. If you're interested in seeing all minor changes you can follow our commits page on [GitHub](https://github.com/fmhy/FMHYedit/commits/main). Also keep in mind that this thread will be deleted and [archived](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates) at the end of the month.*
---

View File

@ -1,112 +0,0 @@
---
title: Monthly Updates [July]
description: July 2024 updates.
date: 2024-07-01
next: false
aside: left
prev: false
sidebar: false
footer: true
---
# Tournament Results
We did another streaming sites tournament to help us better re-order and clean up the section. When we did this publicly the first time there was obvious cheating, so we decided to make this more private, and allowed only members with discord roles to vote. During each round we also had discussions about the sites which can be viewed in our discord polls channel. These discussions were taken into account when reordering, but for the most part we relied on the voting results.
In the end some sites managed to keep their previous spots, a few have been starred, unstarred, or even removed if they were low quality / broken. If you see a round with no votes either way, it means one of the sites was DQ'd.
## [Final Results](https://challonge.com/Multi_Host_Streaming.svg) / [Before vs. After](https://i.imgur.com/MXN0mR5.png)
We'll be doing more tournaments in the future, so make sure to join our discord if you want to be a part of them, and let us know which sections you'd like to see most.
***
# Wiki Updates
- Added [Stremio Tools](https://fmhy.net/videopiracyguide#stremio-tools) section to Streaming.
- Added [Video Generation](https://fmhy.net/ai#video-generation) section to AI.
- Added [Audio Transcription](https://fmhy.net/text-tools#audio-transcription) section to Text Tools.
- Added [System Audio](https://fmhy.net/system-tools#system-audio) and [USB / Bootloaders](https://fmhy.net/system-tools#usb-bootloaders) sections to System Tools.
- Added [Network Security](https://fmhy.net/adblockvpnguide#network-security) section to Privacy.
- Added [Fanfiction / Stories](https://fmhy.net/readingpiracyguide#fanfiction-stories) section to Reading.
- Added [Audio Metadata](https://fmhy.net/audiopiracyguide#audio-metadata) section to Audio.
- Added [Wayland Compositors](https://fmhy.net/linuxguide#wayland-compositors) section to Linux.
- Added [Latex Tools](https://fmhy.net/storage#latex-tools) section to Math.
- Turned [Email Tools](https://fmhy.net/internet-tools#email-tools) into a main section with subsections.
- Split Subtitle section into [Tools](https://fmhy.net/videopiracyguide#subtitles) and [Downloads](https://fmhy.net/videopiracyguide#download-subtitles).
- Added multiple (15) new sections to [Dev Tools](https://fmhy.pages.dev/devtools), and cleaned up a lot of old sections.
- Cleaned up [Video Hosts](https://fmhy.pages.dev/video-tools#video-file-hosts), [Image Optimization](https://fmhy.net/img-tools#image-optimization) and [Icons / Avatars](https://fmhy.net/img-tools#icons-avatars) sections.
- Started adding Non-English spellings (i.e. Chinese / 汉语方言) to titles in the [Non-Eng section](https://fmhy.pages.dev/non-english). We haven't been able to translate all the sections yet, so if you can help fill in the blanks please send your translations in the comments.
***
# Stars Added ⭐
- Starred [Hidan](https://fmhy.net/file-tools#file-hosts) in File Hosts. Fast, unlimited size, no account required, publishes when they remove files.
- Starred [Catppuccin](https://fmhy.net/system-tools#custom-themes) in Custom Themes. High quality pastel system app themes.
- Starred [Bio Link](https://fmhy.net/internet-tools#link-in-bio-sites) in Link in Bio Sites. Feature-rich, nice UI, stood out to us when going through the section.
- Starred [RetroAchievements](https://fmhy.net/gamingpiracyguide#emulators) in Emulators. Add achievements to retro games / ROMs.
- Starred [/r/Translator](https://www.reddit.com/r/translator/) in Translators. Allows you to request translations of almost anything.
- Starred [sdk.vercel](https://fmhy.net/ai#online-chatbots) in Online Chatbots. Chatbot playground with unlimited GPT-4o.
- Starred [FossifyOrg](https://fmhy.net/android-iosguide#foss-apks) in FOSS APKs. Covers most basic apps, minimal UI.
- Starred [Universal Android Debloater](https://fmhy.net/android-iosguide#optimization) in Android Optimization. Updated fork of original UAD.
- Starred [Amarok](https://fmhy.net/android-iosguide#android-privacy) in Android Privacy. Easily hide private files / apps on android.
- Starred [Sideloadly](https://fmhy.net/android-iosguide#ios-apps) in iOS Apps. Lightweight, simple setup, auto-updates apps.
- Starred [EeveeSpotify](https://fmhy.net/android-iosguide#ios-audio) in iOS Audio. Updated Spotify premium app now that spotilife has stopped working.
- Starred [S0undTV](https://fmhy.net/android-iosguide#smart-tv-firestick) in Firestick. Ad-free Twitch for Firestick.
- Starred [Uncyclopedia](https://fmhy.net/miscguide#random) in Fun Sites.
- Added star back to [Bloxstrap](https://fmhy.net/gaming-tools#roblox-tools). Most issues are being fixed and repo seems to be active again.
***
# Things Removed
- Unstarred Vimms, they thought it was trolls at first, but now [Lego and Sega](https://i.ibb.co/Dp9Kwk4/image.png) have both joined to take down games.
- Unstarred XDM + Motrix, neither is updated as often as other big DL managers and XDM gives people issues on mobile.
- Unstarred SKLauncher, its closed-source, cant download with adblock enabled, and we have better MC launchers listed anyways.
- Removed PrimeFlix as they've shutdown.
***
### [Previous Update Threads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates)
***
### RSS Feed: https://fmhy.net/feed.rss
***
*Note - These update threads only contains major updates. If you're interested in seeing all minor changes you can follow our [Commits Page](https://github.com/fmhy/FMHYedit/commits/main) on GitHub or [Updates Channel](https://redd.it/17f8msf) in Discord. Also keep in mind that this thread will be deleted and [archived](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates) at the end of the month.*
---
---

View File

@ -1,82 +0,0 @@
---
title: Monthly Updates [June]
description: June 2024 updates
date: 2024-06-01
next: false
aside: left
prev: false
sidebar: false
footer: true
---
# Wiki Updates
- Added [Switch](https://fmhy.net/gaming-tools#switch-homebrew), [WiiU / Wii](https://fmhy.net/gaming-tools#wii-u-wii-homebrew), [3DS / DS](https://fmhy.net/gaming-tools#_3ds-ds-homebrew) and [Playstation](https://fmhy.net/gaming-tools#playstation-homebrew) sections to Homebrew.
- Added [Virtual Reality](https://fmhy.net/gamingpiracyguide#virtual-reality) and [Game Save](https://fmhy.net/gaming-tools#game-saves) sections to Gaming.
- Added [Dev Communities](https://fmhy.net/devtools#dev-communities) and [Reverse Engineering](https://fmhy.net/devtools#reverse-engineering) sections to Dev Tools.
- Added [Linux Communities](https://fmhy.net/linuxguide#linux-communities) section to Linux.
- Added [Flights](https://fmhy.net/miscguide#flights) section to Travel.
- Organized the Maps section, and added multiple [new subsections](https://fmhy.net/miscguide#maps) to it.
- Debloated [Indexes](https://fmhy.net/miscguide#indexes), [Multi-Tool](https://fmhy.net/miscguide#multi-tool-sites), [File Scanners](https://fmhy.net/adblockvpnguide#file-scanners), [Archiving](https://fmhy.net/internet-tools#archiving) and [Sheet Music](https://fmhy.net/storage#music-sheet-collections) sections.
- Re-added our [Unsafe Sites Filter](https://github.com/WindowsAurora/FMHYFilterlist/). This can be added to uBlock to stop anything in [unsafe sites](https://fmhy.net/unsafesites) from loading in your browser.
- We compared FMHY to the badware filter list to make sure we didn't have anything on it, [and we didn't](https://ibb.co/9TQ6Nnv).
- Added optional [alternative logo](https://pastebin.com/MDnQPKP3) to our website.
***
# Stars Added ⭐
- Starred both squid.wtf and MP3 Daddy in [Audio Ripping](https://fmhy.net/audiopiracyguide#audio-ripping-sites). Deezer ripping sites both capable of getting FLAC files.
- Starred [Morphic](https://fmhy.net/ai#online-chatbots) in Online Chatbots. GPT4o powered search w/ no limits.
- Starred [ROM Heaven](https://fmhy.net/gamingpiracyguide#rom-sites) in ROM sites. Badass new ROM site with single click DDL and a high quality UI.
- Starred [All Things Linux](https://fmhy.net/linuxguide#linux-communities) in Linux Communities. Linux Discord server focused on helping others and learning.
- Starred [Eaglercraft](https://fmhy.net/gaming-tools#minecraft-tools) in Minecraft as it's started getting updates again.
- Starred [CompactGUI](https://fmhy.net/file-tools#file-archivers) in File Archivers. Very [useful](https://ibb.co/xm23Xbh) archiver with nice UI.
- Starred [Spicetify](https://fmhy.net/audiopiracyguide#spotify-adblockers) in Spotify Adblockers. This has adblock plugins that work just as well as SpotX.
- Starred [UI Revert Script](https://fmhy.net/social-media-tools#reddit-tools) in Reddit Tools. Restores Reddits 2023 UI.
- Starred [Snaptick](https://fmhy.net/storage#to-do-apps) in Android To-Do Apps. Very feature-rich to-do app.
- Starred [PurpleAdblock](https://fmhy.net/social-media-tools#twitch-adblockers) in Twitch Adblockers. Got a update recently and seems to be working again.
- Starred [ImageGlass](https://fmhy.net/img-tools#image-viewers) in Image Viewers. Popular lightweight image viewer with a nice UI.
- Starred [Neal.fun](https://fmhy.net/storage#fun-indexes) in Fun Indexes. OG site with lots of fun games / experiments.
- Starred [Pi-hole](https://fmhy.net/adblockvpnguide#dns-adblocking) in DNS Adblockers as their lists are more updated than NextDNS.
- Starred [ChatGPT](https://fmhy.net/ai#online-chatbots) in Online Chatbots as they're adding GPT4o to [free tier](https://help.openai.com/en/articles/7102672-how-can-i-access-gpt-4-gpt-4-turbo-and-gpt-4o).
***
# Things Removed
- Removed both moo and media drives as neither work anymore.
- Removed The Movie Archive as its shutdown.
- Removed Subscene as they've [closed](https://ibb.co/SVX41NW).
- Removed neofetch as its been archived.
- Unstarred Bloxstrap as [dev doesn't have time](https://github.com/pizzaboxer/bloxstrap/wiki/Addressing-usability-problems-with-Bloxstrap-v2.5.4) currently to keep it updated.
- Unstarred NextDNS as their filter lists include negligent ones (like energized) which cause a bunch of issues, including fmhy.net getting blocked.
---

View File

@ -1,71 +0,0 @@
---
title: Monthly Updates [March]
description: March 2024 Updates
date: 2024-03-01
next: false
aside: left
prev: false
sidebar: false
footer: true
---
# Wiki Updates
* Added custom search engines (CSE) for [Courses](https://cse.google.com/cse?cx=f7a118c70d0804fc4) and [Fonts](https://cse.google.com/cse?cx=82154ebab193e493d).
* Added section for [Productivity Tools](https://fmhy.net/miscguide#productivity-tools) in Useful Sites.
* Added section for [File Recovery](https://fmhy.net/file-tools#file-recovery) in File Tools.
* Added section for [Fingerprinting / Tracking](https://fmhy.net/adblockvpnguide#fingerprinting-tracking) in Privacy.
* Added sections for [Mario Kart](https://fmhy.net/gamingpiracyguide#mario-kart-tools) + [Geometry Dash](https://fmhy.net/gamingpiracyguide#geometry-dash-tools) in Gaming.
* Added section for [Crypto / Bitcoin](https://fmhy.net/miscguide#crypto-bitcoin) in Career.
* Added section for [Raspberry Pi](https://fmhy.net/linuxguide#raspberry-pi) in Linux.
* Added sections for [Design Apps](https://fmhy.net/img-tools#design-apps) + [Design Assets](https://fmhy.net/img-tools#free-assets) in Image Tools.
* Our Minecraft Server is now live. Click **[here](https://fmhy.net/posts/minecraft-server)** to join.
* Moved `fmhy.tk` to `old.fmhy.net`
***
# Stars Added ⭐
* Starred [yet another music server](https://fmhy.net/audiopiracyguide#audio-downloading) in Audio Downloading. Multi-site DDL (deezer, qobuz, tidal, spotify, youtube, FLAC.)
* Starred [wrtn](https://fmhy.net/ai#online-chatbots) in Online Chatbots. No limit GPT-4, tell it to always talk in english.
* Starred [M4UFree + YesMovies](https://fmhy.net/videopiracyguide#streaming-sites) in Streaming. Both have huge libraries, fast 1080p, and have been around for over a decade.
* Starred [Poe](https://fmhy.net/ai#online-generators) in Image Generators. 100 SDXL and 100 Playground Gens.
* Starred [Simply Optimized](https://fmhy.net/storage#minecraft-optimization-mods) in Minecraft Optimization. Some prefer this to Fabulously Optimized.
* Starred [SolidTorrents](https://fmhy.net/torrentpiracyguide#aggregators) in Torrent Aggregators.
* Starred [MrGamingStreams](https://fmhy.net/videopiracyguide#live-tv-sports) in Live TV. Fast streams, nice UI, no ads.
* Starred [720pier](https://fmhy.net/videopiracyguide#sports-streaming) in Sports Streaming. Sport replay torrents.
* Starred [Enhancer for YT](https://fmhy.net/social-media-tools#youtube-customization) in YouTube Customization. YouTube enhancement extension.
* Starred [RatS](https://fmhy.net/videopiracyguide#tracking-discovery) in Tracking / Discovery. Sync media ratings between sites.
***
# Things Removed
* Removed Vendetta from Android as the devs have [shut it down](https://i.imgur.com/F4o2ela.png).
* Removed TTV LOL as it stopped working.
* Unstarred bypass.vip and FastForward as they [don't work as well](https://i.imgur.com/EMRcqX6.png) as they used to.
* Unstarred claude in chatbots as it requires email + phone number and doesn't give as good results as it used to.
* Unstarred Harmonoid as its not longer being updated and has 100+ issues on github.
---

View File

@ -1,87 +0,0 @@
---
title: Monthly Updates [May]
description: May 2024 updates
date: 2024-05-01
next: false
aside: left
prev: false
sidebar: false
footer: true
---
# Wiki Updates
- Added [Multi-Game](https://fmhy.net/gamingpiracyguide#multi-game-sites), [Party](https://fmhy.net/gamingpiracyguide#party-games), [Shooter](https://fmhy.net/gamingpiracyguide#shooter), [Platforming](https://fmhy.net/gamingpiracyguide#platformer), [Simulation](https://fmhy.net/gamingpiracyguide#simulation), [Arcade](https://fmhy.net/gamingpiracyguide#arcade) and [RPG](https://fmhy.net/gamingpiracyguide#rpg) sections to Browser Games.
- Added [Med School](https://fmhy.net/edupiracyguide#med-school), [Philosophy](https://fmhy.net/edupiracyguide#philosophy) and [Geography](https://fmhy.net/edupiracyguide#geography-datasets) sections to Education.
- Added [Linux Guides](https://fmhy.net/linuxguide#linux-guides) and [Window Managers](https://fmhy.net/linuxguide#window-managers) sections to Linux.
- Added [Public Domain](https://fmhy.net/readingpiracyguide#public-domain) section to Reading.
- Added [German](https://fmhy.net/edupiracyguide#german) section to Language Learning.
- Renamed Audio Download to [Audio Ripping](https://fmhy.net/audiopiracyguide#audio-ripping), cleaned up the section, and separated sites and tools into their own subsections.
- Cleaned up [qBittorrent Tools](https://fmhy.net/torrentpiracyguide#qbittorrent-tools), [Paywall Bypass](https://fmhy.net/internet-tools#paywall-bypass), [Pastebins](https://fmhy.pages.dev/text-tools#pastebins) and [OSINT](https://fmhy.net/internet-tools#open-source-intelligence) sections.
- Moved [Periodic Tables](https://fmhy.net/edupiracyguide#periodic-tables), [Quotes](https://fmhy.net/edupiracyguide#quote-indexes), [File Scanners](https://fmhy.net/adblockvpnguide#file-scanners) and [Sheet Music](https://fmhy.net/audiopiracyguide#sheet-music) out of storage into main sections.
- Moved [Gaming Tools](https://fmhy.net/gaming-tools) out of gaming onto its own page.
- Separated [Painting](https://fmhy.net/img-tools#painting) and [Drawing](https://fmhy.net/img-tools#drawing) into their own sections.
***
# Stars Added ⭐
- Starred [Debloat Guide](https://fmhy.net/system-tools#system-debloating) in System Debloating. Collaborative project by our discord members, let us know what you think or if you have any suggestions for it.
- Starred [Nunflix](https://fmhy.net/videopiracyguide#multi-server) in Streaming. Multi-server streaming with fast hosts and nice UI.
- Starred [Game Bounty](https://fmhy.net/downloadpiracyguide#software-sites) in Software as they've started uploading software recently.
- Starred [FastStream](https://fmhy.net/videopiracyguide#helpful-sites-tools) in Streaming Tools. Fragmentation streaming which speeds up browser video buffering.
- Starred [Mumble](https://fmhy.net/internet-tools#chat-tools) in Chat Tools. Oldschool voice chat client used and loved by many.
- Starred [Tixati](https://fmhy.net/torrentpiracyguide#torrent-clients) in Torrent Clients. Simple client still popular in some circles.
- Starred [SpecialK](https://fmhy.net/gaming-tools#optimization-tools) in Gaming Optimization. Feature-rich game optimization tool.
- Starred [qView](https://fmhy.net/img-tools#image-viewers) in Image Viewers. Minimal and efficient open-source image viewer.
- Starred [SauceNAO](https://fmhy.net/img-tools#reverse-image-search) in Reverse Image Search. Multi-site search engine.
- Starred [Puter](https://fmhy.net/system-tools#os-emulators) in OS Emulators. Session saving browser operating system.
- Starred [playit.gg](https://fmhy.net/storage#minecraft-servers) in Minecraft Servers. Easy to setup minecraft servers.
- Starred [MCPropertyEncyclopedia](https://fmhy.net/gaming-tools#minecraft-tools) in Minecraft Tools. Comprehensive block info database.
- Starred [Shazam + WatZatSong](https://fmhy.net/audiopiracyguide#song-identification) in Song Identification. Popular song identification tools.
***
# Things Removed
- Removed MrGamingStreams as they've shutdown.
- Removed IDM Activation Script as its been archived.
***
### [Previous Update Threads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates)
***
### RSS Feed: https://fmhy.net/feed.rss
***
*Note - These update threads only contains major updates. If you're interested in seeing all minor changes you can follow our commits page on [GitHub](https://github.com/fmhy/FMHYedit/commits/main). Also keep in mind that this thread will be deleted and [archived](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates) at the end of the month.*
---
---

View File

@ -11,9 +11,7 @@ footer: true
<Post authors="['nbats']" /> <Post authors="['nbats']" />
# Join at: `fmhy.net` ### Join at: `fmhy.net`
***
- You will be spawned at the hub. - You will be spawned at the hub.
- To go to vanilla, head to the end portal. - To go to vanilla, head to the end portal.
@ -21,29 +19,30 @@ footer: true
- Modded requires Minecraft 1.20.1 Forge. - Modded requires Minecraft 1.20.1 Forge.
- Vanilla requires Minecraft 1.20.4. - Vanilla requires Minecraft 1.20.4.
***
### Mod Downloads ### Mod Downloads
**Attached is the mod pack for modded**: [RAR](https://buzzheavier.com/f/GIr%2FvkDOsAA=) + [Guide](https://rentry.org/fmhy-modded) **Attached is the mod pack for modded**:
or you could use the .mrpack files and add it to Prism or other compatible launchers: [RAR](https://qiwi.gg/file/acC63146-mods) + [Guide](https://rentry.org/fmhy-modded)
[FMHY_Modpack-2.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218042133382959184/FMHY_Modpack-2.mrpack?ex=66063922&is=65f3c422&hm=a3fecfe897d81368f91f6860f96e5359706c292269bafd82429d72b5323bf1a1) or you could use the
[`.mrpack files`](https://discord.com/channels/956006107564879872/1206145102217486366/1206145423689908224)
and add it to Prism or other compatible launchers.
[FMHY_Server_Pack_ClientPP.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218063597326827571/FMHY_Server_Pack_ClientPP.mrpack?ex=66064d20&is=65f3d820&hm=a2476bc723343c912bd4ab9e549bcfa0338c68ff0b670c266d4b1dbaabd3d032) [Optional Modpack with QOL mods added](https://qiwi.gg/file/cSee7776-FMHYServerPackClientPP)
[Optional Modpack with QOL mods added](https://buzzheavier.com/f/GIr+b3jOsAA=) Minecraft Dynmap: [Vanilla](https://survival.dynmap.fmhy.net) or
[Modded](https://modded.dynmap.fmhy.net)
*** ### Things to Know
### Things to Know
- If it times out when joining then just try rejoining again. - If it times out when joining then just try rejoining again.
- If you get stuck in the lobby, use the command `/server modded` or`/server survival` to join. - If you get stuck in the lobby, use the command `/server modded`
- If you can't break blocks or it's glitching, you are probably too close to the spawn and need to go farther. or `/server survival` to join.
- If you can't break blocks or it's glitching, you are probably too close to the
spawn and need to go farther.
- (Modded) To set a skin, use the `/skin` command. - (Modded) To set a skin, use the `/skin` command.
- To hide yourself from being shown in Dynmap, run this command `/dynmap hide`. - To hide yourself from being shown in Dynmap, run this command `/dynmap hide`.
- For modded 6GB+ RAM is required, but 12GB+ is recommended.
- Simple Voice Chat mod is supported on Modded and (optional) Vanilla servers. - Simple Voice Chat mod is supported on Modded and (optional) Vanilla servers.
- For modded 6GB+ RAM is required, but 12GB+ is recommended.
Have fun! ♥ Have fun! ♥

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 86 KiB

31318
single-page

File diff suppressed because it is too large Load Diff

View File

@ -1,32 +1,6 @@
{ {
"extends": "./.nitro/types/tsconfig.json" "extends": "./.nitro/types/tsconfig.json",
// "compilerOptions": { "compilerOptions": {
// "verbatimModuleSyntax": true, "verbatimModuleSyntax": true
// "baseUrl": ".", }
// "module": "esnext",
// "target": "esnext",
// "lib": ["DOM", "ESNext"],
// "strict": true,
// "jsx": "preserve",
// "esModuleInterop": true,
// "skipLibCheck": true,
// "moduleResolution": "node",
// "resolveJsonModule": true,
// "noUnusedLocals": true,
// "strictNullChecks": true,
// "forceConsistentCasingInFileNames": true,
// "sourceMap": true,
// "isolatedModules": true
// },
// "include": [
// "**/*.vue",
// "**/*.tsx",
// "**/*.ts",
// ".vitepress/**/**/*.ts",
// ".vitepress/**/**/*.tsx",
// ".vitepress/**/**/*.vue"
// ],
// "exclude": ["**/node_modules/**", "dist/**"],
// "extensions": [".js", ".ts", ".tsx", ".jsx", ".vue"],
// "allowSyntheticDefaultImports": true
} }

View File

@ -3,9 +3,3 @@ main = ".output/server/index.mjs"
workers_dev = true workers_dev = true
account_id = "fe5d9bd14160b07939282e45f63eb5ad" account_id = "fe5d9bd14160b07939282e45f63eb5ad"
compatibility_date = "2022-09-10" compatibility_date = "2022-09-10"
[[unsafe.bindings]]
name = "RATE_LIMITER"
type = "ratelimit"
namespace_id = "1001"
simple = { limit = 100, period = 30 }