7 Commits

Author SHA1 Message Date
taskylizard
dfe9e03e45 theme accordions 2024-03-16 08:26:14 +00:00
taskylizard
35b61000a2 Merge branch 'main' into fmhy2 2024-03-16 08:17:45 +00:00
taskylizard
cb414a1f15 Merge branch 'main' into fmhy2 2024-03-13 05:11:44 +00:00
taskylizard
a5c8bef968 start theming 2024-03-08 12:58:01 +00:00
taskylizard
04ad6338ff Merge branch 'main' into fmhy2 2024-03-08 12:09:37 +00:00
taskylizard
d7b00ccde7 Merge branch 'main' into fmhy2 2024-03-08 09:39:20 +00:00
taskylizard
c863dca62c wip 2024-03-07 17:48:28 +00:00
50 changed files with 38137 additions and 40093 deletions

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

@@ -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

@@ -19,54 +19,18 @@ export const feedback = `<a href="/feedback" class="feedback-footer">Made with
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) => {
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 // @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
@@ -171,7 +135,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

@@ -5,7 +5,24 @@ defineProps<{ title: string; description?: string }>()
<template> <template>
<div <div
tw="w-full h-full bg-black flex flex-col" tw="w-full h-full bg-black flex flex-col"
style="background-image: url(https://fmhy.pages.dev/og.png)" style="
background-image: linear-gradient(
43deg,
#b794f4 2%,
#b18df2 7.5%,
#ab87ef 13%,
#9f7aea 24%,
#8c6ee2 32%,
#7864d8 40%,
#4c51bf 56%,
#4949ae 60.5%,
#46419b 65%,
#3c366b 74%,
#2f315d 80.5%,
#272d47 87%,
#1a202c 100%
);
"
> >
<div <div
tw="p-10 w-full min-h-0 grow flex flex-col items-center justify-between" tw="p-10 w-full min-h-0 grow flex flex-col items-center justify-between"
@@ -22,6 +39,5 @@ defineProps<{ title: string; description?: string }>()
<div style="color: #c0caf5" tw="mt-2 text-4xl" v-html="description" /> <div style="color: #c0caf5" tw="mt-2 text-4xl" v-html="description" />
</div> </div>
</div> </div>
<div tw="shrink-0 h-2 w-full flex" style="background-color: #c4b5fd" />
</div> </div>
</template> </template>

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,9 +1,9 @@
:root { :root {
/* Colors: Brand */ /* Colors: Brand */
--vp-c-brand-1: #7bc5e4; --vp-c-brand-1: theme('colors.swarm.400');
--vp-c-brand-2: #c4e2f2; --vp-c-brand-2: theme('colors.swarm.500');
--vp-c-brand-3: #4882a7; --vp-c-brand-3: theme('colors.swarm.700');
--vp-c-brand-soft: #a4d5ec; --vp-c-brand-soft: theme('colors.swarm.300');
/* Colors: Button */ /* Colors: Button */
--vp-button-brand-bg: var(--vp-c-brand-1); --vp-button-brand-bg: var(--vp-c-brand-1);
@@ -24,26 +24,22 @@
--vp-c-bg-mark: rgb(232, 232, 232); --vp-c-bg-mark: rgb(232, 232, 232);
/* Colors: Custom Block */ /* Colors: Custom Block */
--vp-custom-block-info-bg: rgba(171, 210, 244, 0.05); --vp-custom-block-info-bg: theme('colors.swarm.100');
--vp-custom-block-info-border: #60c4fa; --vp-custom-block-info-border: theme('colors.swarm.800');
--vp-custom-block-info-text: rgb(39, 115, 145); --vp-custom-block-info-text: theme('colors.swarm.800');
--vp-custom-block-info-text-deep: rgb(18, 121, 162); --vp-custom-block-info-text-deep: theme('colors.swarm.900');
--vp-custom-block-tip-bg: rgba(137, 202, 176, 0.05); --vp-custom-block-tip-bg: theme('colors.meadow.100');
--vp-custom-block-tip-border: rgba(34, 197, 94, 1); --vp-custom-block-tip-border: theme('colors.meadow.800');
--vp-custom-block-tip-text: rgb(10, 128, 90); --vp-custom-block-tip-text: theme('colors.meadow.800');
--vp-custom-block-tip-text-deep: rgb(11, 133, 94); --vp-custom-block-tip-text-deep: theme('colors.meadow.900');
--vp-custom-block-warning-bg: rgba(250, 204, 21, 0.05); --vp-custom-block-warning-bg: rgba(253, 224, 71, 0.1);
--vp-custom-block-warning-border: rgba(245, 158, 11, 1); --vp-custom-block-warning-border: rgba(202, 138, 4, 1);
--vp-custom-block-warning-text: rgb(166, 114, 35); --vp-custom-block-warning-text: rgba(234, 179, 8, 1);
--vp-custom-block-warning-text-deep: rgb(199, 109, 6); --vp-custom-block-warning-text-deep: rgba(250, 204, 21, 1);
--vp-custom-block-danger-bg: rgba(220, 38, 38, 0.05); --vp-custom-block-danger-bg: theme('colors.carnation.100');
--vp-custom-block-danger-border: rgba(248, 113, 113, 1); --vp-custom-block-danger-border: theme('colors.carnation.800');
--vp-custom-block-danger-text: rgb(196, 46, 46); --vp-custom-block-danger-text: theme('colors.carnation.800');
--vp-custom-block-danger-text-deep: rgba(220, 38, 38, 1); --vp-custom-block-danger-text-deep: theme('colors.carnation.900');
/* Scrollbar */
scroll-behavior: smooth;
scrollbar-width: 4px;
} }
.dark { .dark {
@@ -53,22 +49,22 @@
--vp-c-bg-elv: rgba(23, 23, 23, 0.8); --vp-c-bg-elv: rgba(23, 23, 23, 0.8);
/* Colors: Custom Block */ /* Colors: Custom Block */
--vp-custom-block-info-bg: rgba(84, 110, 155, 0.1); --vp-custom-block-info-bg: theme('colors.swarm.950');
--vp-custom-block-info-border: #3686b1; --vp-custom-block-info-border: theme('colors.swarm.600');
--vp-custom-block-info-text: #52b0e3; --vp-custom-block-info-text: theme('colors.swarm.500');
--vp-custom-block-info-text-deep: #00b7ff; --vp-custom-block-info-text-deep: theme('colors.swarm.600');
--vp-custom-block-tip-bg: rgba(51, 130, 118, 0.1); --vp-custom-block-tip-bg: theme('colors.meadow.950');
--vp-custom-block-tip-border: rgba(4, 120, 87, 1); --vp-custom-block-tip-border: theme('colors.meadow.600');
--vp-custom-block-tip-text: rgb(25, 190, 129); --vp-custom-block-tip-text: theme('colors.meadow.500');
--vp-custom-block-tip-text-deep: rgba(52, 211, 153, 1); --vp-custom-block-tip-text-deep: theme('colors.meadow.600');
--vp-custom-block-warning-bg: rgba(253, 224, 71, 0.1); --vp-custom-block-warning-bg: rgba(253, 224, 71, 0.1);
--vp-custom-block-warning-border: rgba(202, 138, 4, 1); --vp-custom-block-warning-border: rgba(202, 138, 4, 1);
--vp-custom-block-warning-text: rgba(234, 179, 8, 1); --vp-custom-block-warning-text: rgba(234, 179, 8, 1);
--vp-custom-block-warning-text-deep: rgba(250, 204, 21, 1); --vp-custom-block-warning-text-deep: rgba(250, 204, 21, 1);
--vp-custom-block-danger-bg: rgba(239, 68, 68, 0.1); --vp-custom-block-danger-bg: theme('colors.carnation.950');
--vp-custom-block-danger-border: rgba(127, 29, 29, 1); --vp-custom-block-danger-border: theme('colors.carnation.600');
--vp-custom-block-danger-text: rgba(248, 113, 113, 1); --vp-custom-block-danger-text: theme('colors.carnation.400');
--vp-custom-block-danger-text-deep: rgba(248, 113, 113, 1); --vp-custom-block-danger-text-deep: theme('colors.carnation.500');
} }
.vp-doc a { .vp-doc a {
@@ -94,7 +90,7 @@
} }
::selection { ::selection {
background-color: #0f2c47; background-color: var(--vp-button-brand-bg);
} }
.VPFooter a { .VPFooter a {
@@ -124,17 +120,13 @@
*/ */
:root { :root {
--vp-home-hero-name-color: transparent; --vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient( --vp-home-hero-name-background: -webkit-linear-gradient(120deg,
120deg, #c4b5fd 30%,
#c4b5fd 30%, #7bc5e4);
#7bc5e4
);
--vp-home-hero-image-background-image: linear-gradient( --vp-home-hero-image-background-image: linear-gradient(-45deg,
-45deg, #c4b5fd 50%,
#c4b5fd 50%, #47caff 50%);
#47caff 50%
);
--vp-home-hero-image-filter: blur(44px); --vp-home-hero-image-filter: blur(44px);
} }
@@ -240,7 +232,7 @@
} }
} }
#VPContent strong > a { #VPContent strong>a {
font-weight: bold; font-weight: bold;
} }

277
AI.md
View File

@@ -4,87 +4,63 @@
*** ***
*** ***
* **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
* 🌐 **[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 * 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)** - Open Source Chatbot Benchmark
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index * 🌐 **[Transformer Models Timeline](https://ai.v-gar.de/ml/transformer/timeline/)** - LLM Timeline
***[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn Books into Chatbots
***[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
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
* [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes
*** ***
## ▷ Online Chatbots ## ▷ Online Chatbots
***[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)
***[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 ***[Gemini](https://gemini.google.com/)** - Google's Chatbot
***[Claude](https://claude.ai/)** - Anthropic's Chatbot ***[Claude](https://claude.ai/)** - Anthropic's Chatbot
***[sdk.vercel](https://sdk.vercel.ai/)** - GPT-4o / Multiple Chatbots
***[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/) ***[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
***[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 * [groq](https://groq.com/) - LLama and Mixtral Chatbots
* [LibreChat](https://librechat.ai/) - 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/) - Llama Powered Search
* [MagAI](https://rentry.org/freegpt4withmagai) - Multiple Chatbots * [Komo](https://komo.ai/) - GPT-3.5 Powered Search
* [Meta AI](https://www.meta.ai/) - Llama Chatbot / US only
* [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 * [iAsk](https://iask.ai/) - AI Search Engine
* [Mindfulq](https://www.mindfulq.com/) - AI Search Engine
* [Andi](https://andisearch.com/) - AI Search Engine * [Andi](https://andisearch.com/) - AI Search Engine
* [iSeek](https://www.iseek.com/) - AI Search Engine * [Metaphor](https://metaphor.systems/) / [Discord](https://discord.com/invite/jvz7GS9W8Y) - AI Search Engine
* [Farfalle](https://www.farfalle.dev/) - AI Search Engine * [Ora](https://ora.ai/start) - GPT-3.5 Based Chatbots
* [Exa](https://exa.ai/) - AI Search Engine / [Discord](https://discord.com/invite/jvz7GS9W8Y)
* [Lepton Search](https://search.lepton.run/) - AI Search Engine
* [Ai Uncensored](https://www.aiuncensored.info/) - "Uncensored" Chatbot
* [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 * [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)
* [play.vercel](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
*** ***
## ▷ 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://gpt4all.io/) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e)
* [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLM with Single Files * [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLMs w/ Single File
* [Generative AI for Beginners](https://microsoft.github.io/generative-ai-for-beginners/) - Generative AI Guides * [Dify](https://dify.ai/) - Create AI Apps
* [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), [Lobe Chat](https://github.com/lobehub/lobe-chat), [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
*** ***
@@ -94,103 +70,86 @@
* 🌐 **[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
* **[Pieces](https://pieces.app/) / [Docs](https://docs.pieces.app)** - Multi-LLM Coding AI / GPT-4 for Free * 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index
* [Cursor](https://cursor.sh/) - Coding AI * **[ChatHub](https://chathub.gg/)** - Compare AI Responses
* [Codeium](https://codeium.com/) - Coding AI * **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn PDFs into Chatbots
* [tabnine](https://www.tabnine.com/) - Coding AI * **[TypeSet](https://typeset.io/)** - Research Paper Chatbot
* [ImageCook](https://imgcook.com) / [GitHub](https://github.com/imgcook/imgcook) - Coding AI * [Erin](https://erin.ac/) or [SallyBot](https://github.com/DeSinc/SallyBot/) - ChatGPT Discord Bots
* [CodeWhisperer](https://aws.amazon.com/codewhisperer/) - 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), [DocsGPT](https://docsgpt.arc53.com/) or [ChatDOC](https://chatdoc.com/) - Turn Documents into Chatbots
* [Telosys](https://www.telosys.org/) - Coding AI * [PrivateGPT](https://github.com/imartinez/privateGPT/) or [ChatDocs](https://github.com/marella/chatdocs) - Offline Document Chatbots
* [WDTCD?](https://whatdoesthiscodedo.com/) - Coding AI * [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
* [Sourcery](https://sourcery.ai/) - Coding AI * [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI
* [Devv](https://devv.ai/) - Coding AI * [ChatGPT File Uploader](https://chromewebstore.google.com/detail/chatgpt-file-uploader/oaogphgfdbdbmhkiplemgehihiiececj) - File Upload Extension
* [Cody](https://about.sourcegraph.com/cody) - Coding AI * [ChatGPT Advanced](https://tools.zmo.ai/webchatgpt) - Add Search Results to ChatGPT
* [OpenDevin](https://github.com/OpenDevin/OpenDevin) - 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
* [CodiumAI](https://www.codium.ai/) - Coding AI * [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
* [continue](https://continue.dev/) - 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
* [Bito AI](https://bito.ai/) - Coding AI * [/r/ChatGPT](https://www.reddit.com/r/ChatGPT/) - ChatGPT Subreddit
* [Blackbox](https://www.blackbox.ai/) - Coding AI * [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
* [Codel](https://github.com/semanser/codel) - Coding AI * [VizGPT](https://www.vizgpt.ai/) - Chat Data Visualization
* [CollectivAI](https://chat.collectivai.com/) - Coding AI * [DeepSheet](https://deepsheet.dylancastillo.co/) - Data Visualization AI
* [Denigma](https://denigma.app/#demo) - Coding AI * [Autoclear ChatGPT History](https://github.com/adamlui/userscripts/tree/master/chatgpt/autoclear-chatgpt-history) - Autoclear Chats
* [GPT Engineer](https://github.com/AntonOsika/gpt-engineer) - Coding AI * [EditGPT](https://www.editgpt.app/) - Proofread Chats
* [Aider](https://aider.chat/) - Terminal Coding AI * [RepeatGPT](https://repeatgpt.com/) - Schedule Chats
* [Codacy](https://www.codacy.com/) or [AI Code Review](https://ai-code-reviewer.com/) - Code Fixing AIs * [ChatGPT Old Style](https://greasyfork.org/en/scripts/486909) - Old ChatGPT Colors
* [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
*** ***
## ▷ ChatGPT Prompts ## ▷ ChatGPT Prompts
***[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory / [Github](https://github.com/f/awesome-chatgpt-prompts) ***[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory
***[BlackFriday GPTs Prompts](https://github.com/friuns2/BlackFriday-GPTs-Prompts)** - Prompt Directory ***[BlackFriday GPTs Prompts](https://github.com/friuns2/BlackFriday-GPTs-Prompts)** - Prompt Directory
***[flowgpt](https://flowgpt.com/)** - Prompt Directory
***[Leaked Prompts](https://github.com/linexjlin/GPTs)** - Prompt Directory ***[Leaked Prompts](https://github.com/linexjlin/GPTs)** - Prompt Directory
***[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 ***[Prompt Engineering Guide](https://www.promptingguide.ai)**, [LearnPrompting](https://learnprompting.org/docs/intro), [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
***[quickref](https://quickref.me/chatgpt)** - Prompt Cheatsheets
* [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74) - Prompt Directory * [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74) - Prompt Directory
* [UseThisPrompt](https://www.usethisprompt.io/) - Prompt Directory
* [GPTea](https://gptea.io/) - Prompt Directory
* [SnackPrompt](https://snackprompt.com/) - Prompt Directory
* [PromptPerfect](https://promptperfect.jina.ai/) - Prompt Optimization
* [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/HuggingFaceH4/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
* [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
* [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 * [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
* [perchance](https://perchance.org/generators) - Random AI Generators * [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AI
* [Sieve](https://www.sievedata.com/explore) or [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AIs * [Google Labs](https://labs.google/) - AI Experiments
* [Google Labs](https://labs.google/) or [AI Test Kitchen](https://aitestkitchen.withgoogle.com/) - Google AI Experiments
*** ***
*** ***
@@ -201,12 +160,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
* [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)
*** ***
@@ -214,20 +178,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
* [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
@@ -236,47 +189,55 @@
*** ***
* 🌐 **[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
* [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 ***[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
* [Meta AI](https://www.meta.ai/) - Images & Animation
* [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 * [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
* [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 * [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)
* [Artsio](https://artsio.xyz/) / 20 Daily * [Artsio](https://artsio.xyz/) / 20 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
@@ -287,42 +248,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) * [SD WebUI Forge](https://github.com/lllyasviel/stable-diffusion-webui-forge)
* [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
@@ -336,25 +283,21 @@
*** ***
# ► 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/) * [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
@@ -362,7 +305,6 @@
## ▷ 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)
@@ -380,10 +322,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 Diffusion](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/)
@@ -410,15 +351,13 @@
## ▷ Voice Change / Clone ## ▷ Voice Change / Clone
***[Applio](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [Discord](https://discord.com/invite/iahispano) ***[Applio](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [AI Hub's Documentation](https://aihubdocs.github.io/en/)
***[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/aihub)** - AI Voice Models and Guides ***[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/aihub)** - AI Voice Models and Guides
***[RVC V2](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/en/README.en.md)** - RVC V2 Voice Cloning (locally) ***[RVC V2](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/en/README.en.md)** - RVC V2 Voice Cloning (locally)
***[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer (W-Okada) - [Guide](https://rentry.co/VoiceChangerGuide) ***[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer (W-Okada) - [Guide](https://rentry.co/VoiceChangerGuide)
***[Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC)** - RVC V2 Voice Cloning (Cloud/Colab) ***[Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC)** - RVC V2 Voice Cloning (Cloud/Colab)
* [Replay](https://www.tryreplay.io/) - RVC Desktop App * [Replay](https://www.tryreplay.io/) - RVC Desktop App
* [Bark with Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning * [Bark w/ Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning
* [RVC_HFv2](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning
* [RVC Docs](https://docs.aihub.wtf/) - RVC AI Documentation
*** ***

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/linux#wiki_.25BA_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,7 +86,7 @@ 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.
*** ***
@@ -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/VakYFMeC) / [Braflix](https://www.braflix.ru/) / [watch.lonelil](https://watch.lonelil.ru/) / [FMovies](https://fmovies24.to/) / [Binged](https://binged.live/)** - Fast movie / TV streaming **[movie-web](https://movie-web.github.io/docs/instances/) / [Fix](https://pastebin.com/8X5bbjeS) / [lonelil](https://watch.lonelil.ru/) / [Fix](https://watch.lonelil.ru/onboarding) / [Braflix](https://www.braflix.app/) / [FMovies](https://fmoviesz.to/)** - Fast movie / TV streaming
**[HiAnime](https://hianime.to/)** - Fast anime streaming **[HiAnime](https://hianime.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
**[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
@@ -162,7 +168,7 @@ 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.org/)** - 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)
*** ***

File diff suppressed because it is too large Load Diff

View File

@@ -1,296 +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) - 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/) ***[soft98](https://soft98.ir/)** - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
***[Game Bounty Software](https://gamebounty.world/software/)** - Download / [Discord](https://dsc.gg/gamebounty) ***[nsane.down](https://www.nsaneforums.com/)** - Signup Required
***[nsane.down](https://www.nsaneforums.com/)** - Signup Required ***[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search
* **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search * [AIOWares](https://www.aiowares.com/)
* [Taiwebs](https://en.taiwebs.com/) - Password: taiwebs.com * [TheMicroTech](https://programs.themicrotech.net/)
* [AIOWares](https://www.aiowares.com/) * [Patoghu](https://patoghu.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [TheMicroTech](https://programs.themicrotech.net/) * [Softlay](https://www.softlay.com/downloads/)
* [DownloadHa](https://www.downloadha.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [Mutaz.net](https://www.mutaz.net/)
* [Patoghu](https://patoghu.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [Heidoc](https://www.heidoc.net/joomla/)
* [Softlay](https://www.softlay.com/downloads/) * [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/)
* [Mutaz](https://www.mutaz.pro/) * [SamLab](https://samlab.ws/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [Heidoc](https://www.heidoc.net/joomla/) * [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns)
* [AppDoze](https://appdoze.com/) * [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels
* [AsanDL](http://asandl.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [Rarewares](https://www.rarewares.org/) - Rare Software
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/) * [PLC4Me](https://plc4me.com/) - Automation Software
* [SamLab](https://samlab.ws/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [civileng_soft](https://t.me/civileng_soft) - Civil Engineering Software
* [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns) * [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive
* [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels * [Team V.R releases](https://codec.kiev.ua/releases.html) - Professional Video, Audio & Adobe Software / Plugins
* [Rarewares](https://www.rarewares.org/) - Rare Software * [WLSetup-All](https://rentry.co/FMHYBase64#wlsetup-all) - Windows Live Essentials 2012 Archive
* [PLC4Me](https://plc4me.com/) - Automation Software * [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Discord](https://discord.com/invite/X9ZuegSM4N)
* [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive * [ZXPInstaller](https://github.com/elements-storage/ZXPInstaller) - Adobe Extension Installer
* [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 ***
* [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Discord](https://discord.gg/BVBh2XVn9s)
* [ZXPInstaller](https://zxpinstaller.com/) - Adobe Extension Installer ## ▷ Freeware Sites
*** * 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)** - Freeware Index
* 🌐 **[Awesome Selfhosted](https://github.com/awesome-selfhosted/awesome-selfhosted)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) - Selfhosted Software Index
## ▷ Freeware Sites * 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
* 🌐 **[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 * ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)**
* 🌐 **[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 * ↪️ **[Alternative Software Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_alternative_software_.2F_app_sites)**
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) or [Selfh.st](https://selfh.st/apps/) - Selfhosted Software Indexes * **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend
* 🌐 **[Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives)** - Adobe Software Alternative Index * **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore)
* 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index * [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/) - Freeware Index
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)** * [OldVersion](http://www.oldversion.com/) - Old Versions of Software
* ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)** * [OlderGeeks](https://oldergeeks.com/) - Freeware Index
* ↪️ **[Alternative Software Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_alternative_software_.2F_app_sites)** * [Free Software MF](https://whoisdsmith.gitbook.io/free-software-mf) - Freeware Index
* **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend * [Softpedia](https://www.softpedia.com/) - Freeware Index
* **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore) * [Realityripple](https://realityripple.com/) - Freeware Index
* [SourceForge](https://sourceforge.net/)- FOSS Repositories * [Software Informer](https://software.informer.com/) - Freeware Index
* [Fossies](https://fossies.org/all.html) - FOSS Archive * [Awesome Windows](https://github.com/Awesome-Windows/Awesome) - 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 * [Major Geeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) - 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 * [SourceForge](https://sourceforge.net/)- FOSS Index
* [PortableApps.com](https://portableapps.com/), [Portapps](https://portapps.io/) or [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps * [FossHub](https://www.fosshub.com/)- FOSS 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 * [Fossies](https://fossies.org/all.html)- FOSS Index
* [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG) * [Free Software Directory](https://directory.fsf.org/wiki/Main_Page)- FOSS Index
* [RaymondFreeSoftware](https://t.me/raymondfreesoftware) - Telegram * [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories)- FOSS Index
* [Suckless](https://suckless.org/) - Simple Software Archive * [OSSSoftware](https://osssoftware.org/) - FOSS Index
* [OldVersion](http://www.oldversion.com/) - Old Versions of Software * [Awesome Open Source](https://awesomeopensource.com/) - FOSS Index
* [WinWorldPC](https://winworldpc.com/) - Abandonware / Operating Systems * [Open-Source Alternatives](https://github.com/btw-so/open-source-alternatives) - FOSS Index
* [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games * [Opensource Builders](https://opensource.builders/) - FOSS Index
* [MS-DOS Index](http://www.lanet.lv/simtel.net/msdos/index-msdos.html) - MS-DOS Software * [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) - 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 * [LO4D](https://www.lo4d.com/) - Freeware Index
* [BelowAverage](https://belowaverage.org/) - I.T. Software * [FilePuma](https://www.filepuma.com/) - Freeware Index
* [GRC](https://www.grc.com/freepopular.htm) - Freeware Index
*** * [TinyApps](https://tinyapps.org/) - Freeware Index
* [Phrozen](https://www.phrozen.io/) - Freeware Index
## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites) * [FileEagle](https://www.fileeagle.com/) - Freeware Index
* [PortableApps.com](https://portableapps.com/) - Portable Apps
*** * [Portapps](https://portapps.io/) - Portable Apps
* [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps
## ▷ [Mac Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites2) * [Uwe Sieber's Homepage](https://www.uwe-sieber.de/english.html)
* [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
*** * [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG)
* [RaymondFreeSoftware](https://t.me/raymondfreesoftware) - Telegram
# ► File Sharing Apps * [Suckless](https://suckless.org/) - Simple Software Archive
* [WinWorldPC](https://winworldpc.com/) - Abandonware / Operating Systems
* **[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) * [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games
* [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/) * [MS-DOS Index](http://www.lanet.lv/simtel.net/msdos/index-msdos.html) - MS-DOS Software
* [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 * [The Vintage Software Collection](https://rentry.co/fmhybase64#the-vintage-software-collection) or [SCiZE's Classic Warez Collection](https://scenelist.org/) - Retro Software
* [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/) * [BelowAverage](https://belowaverage.org/) - I.T. Software
*** ***
## ▷ IRC Tools ## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites)
* 🌐 **[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 ## ▷ [Mac Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites2)
* [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 # ► File Sharing Apps
* [Mibbit](https://search.mibbit.com/) - IRC Channel Search
***[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/)
* [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
# ► Usenet * [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/)
* [WireShare](https://sourceforge.net/projects/wireshare/) - File Sharing App / LimeWire Fork
* 🌐 **[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) ***
* [/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 ## ▷ IRC Tools
*** * 🌐 **[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
## ▷ Indexers * [AdiIRC](https://adiirc.com/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html) or [Bitchx](https://bitchx.sourceforge.net/) - IRC Clients
* [KiwiIRC](https://kiwiirc.com/) or [TheLounge](https://thelounge.chat/) - WebIRC Client
* 🌐 **[Indexer List](https://www.reddit.com/r/usenet/wiki/indexers/)** - Indexer List * [irc2go](https://en.irc2go.com/) - Browse IRC Chat Rooms / [Top 1000](https://netsplit.de/networks/top100.php)
* [/r/UsenetInvites](https://reddit.com/r/UsenetInvites) * [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks
* [NZBHydra2](https://github.com/theotherp/nzbhydra2) - NZB Meta search * [Mibbit](https://search.mibbit.com/) - IRC Channel Search
* [nzbplanet](https://nzbplanet.net/)
* [orionoid](https://orionoid.com/) ***
* [binsearch](https://binsearch.info/)
* [abnzb](https://www.abnzb.com/) # ► Usenet
* [NZB Index](https://www.nzbindex.com/), [2](https://www.nzbindex.nl/)
* [Newznab](https://www.newznab.com/) * 🌐 **[Usenet Tools / Services](https://curlie.org/en/Computers/Usenet)** or [UsenetTools](http://www.usenettools.net/)
* [NZBStars](https://nzbstars.com/) * **[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)
* [usenet-crawler](https://www.usenet-crawler.com/) * [/r/usenet](https://reddit.com/r/usenet)
* [GingaDaddy](https://www.gingadaddy.com/) * [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
* [NZBFinder](https://nzbfinder.ws/)
* [NZBKing](https://nzbking.com/) ## ▷ Indexers
* [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404
* [OldUSe](https://article.olduse.net/) - Search Usenet Articles * 🌐 **[Indexer List](https://www.reddit.com/r/usenet/wiki/indexers/)** - Indexer List
* [althub](https://althub.co.za) - Unlimited Free Trials * [/r/UsenetInvites](https://reddit.com/r/UsenetInvites)
* [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client * [NZBHydra2](https://github.com/theotherp/nzbhydra2) - NZB Meta search
* [nzbplanet](https://nzbplanet.net/)
*** * [orionoid](https://orionoid.com/)
* [binsearch](https://binsearch.info/)
## ▷ Providers * [abnzb](https://www.abnzb.com/)
* [NZB Index](https://www.nzbindex.com/)
* 🌐 **[/r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists * [Newznab](https://www.newznab.com/)
* 🌐 **[/r/usenet Deals](https://www.reddit.com/r/usenet/wiki/providerdeals)** - Provider Deals * [NZBIndex](https://www.nzbindex.nl/)
* [Usenet Providers Map](https://mediavoid.io/map.svg) * [NZBGrabit](https://www.nzbgrabit.xyz/)
* [usenetmax](https://www.usenetmax.com/) * [NZBStars](https://nzbstars.com/)
* [xsusenet](https://xsusenet.com/) * [GingaDaddy](https://www.gingadaddy.com/)
* [usenet.farm](https://usenet.farm/#trial) * [NZBFinder](https://nzbfinder.ws/)
* [Free Trials](https://www.ngprovider.com/free-usenet-trials.php) * [NZBKing](https://nzbking.com/)
* [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404
*** * [OldUSe](https://article.olduse.net/) - Search Usenet Articles
* [althub](https://althub.co.za) - Unlimited Free Trials
## ▷ Downloaders * [nZEDb](https://github.com/nZEDb/nZEDb) - Self-Hosted
* [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client
***[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 ## ▷ Providers
* [nzbget](https://nzbget.com/) / [GitHub](https://github.com/nzbgetcom/nzbget)
* [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes * 🌐 **[/r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists
* [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot * 🌐 **[/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/)
# ► Leeches / Debrid * [usenet.farm](https://usenet.farm/#trial)
* [Free Trials](https://www.ngprovider.com/free-usenet-trials.php)
* 🌐 **[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 ## ▷ Downloaders
* [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 * **[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)
* [Real-Debrid](https://real-debrid.com/) - Paid Debrid service / [Torrent Client](https://github.com/rogerfar/rdt-client) / [Movies / TV](https://hdencode.org/) * **[NZBUnity](https://github.com/tumblfeed/nzbunity)** - Send Usenet Files to Client
* [Debrid-Link](https://debrid-link.com) - Debrid with Free Tier * [nzbget](https://github.com/nzbgetcom/nzbget), [2](https://nzbget.com/download/)
* [AllDebrid](https://alldebrid.com/) - Paid Debrid service with seven day trial * [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes
* [Debrid Media Manager](https://debridmediamanager.com/) - Manage / Stream / Download RD Files * [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot
*** ***
# ► [File Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools) # ► Leeches / Debrid
* 🌐 **[Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Main_Page)** or [leechlisting](https://www.leechlisting.com/) - Leech Lists
* [@Transload](https://t.me/transload) - Telegram Leech Bots
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Send Premium Files to Leeches / 2 Hosts Only
* [RapidGrab](https://rapidgrab.pl/) or [Newscon](https://www.newscon.net/d1/) - Leech
* [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
* [AllDebrid](https://alldebrid.com/) - Paid Debrid service with seven day trial
***
# ► [File Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools)

File diff suppressed because it is too large Load Diff

View File

@@ -1,464 +1,472 @@
*** ***
*** ***
**[◄◄ 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 Viewers
***[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager
***[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) ***
***[Gopeed](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)
* [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/) - Terminal Download Manager / [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/) * **[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)
* [pyLoad](https://pyload.net/) - Lightweight Download Manager * **[XDM](https://xtremedownloadmanager.com/)** - Download Manager / [GitHub](https://github.com/subhra74/xdm)
* [File Centipede](https://filecxx.com/) - Upload / Download Manager * [Motrix](https://www.motrix.app/) - Download Manager / [Web Extensions](https://github.com/gautamkrishnar/motrix-webextension/) / [GitHub](https://github.com/agalwood/Motrix)
* [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 * [Mipony](https://www.mipony.net/) - Download Manager
* [HTTP Downloader](https://erickutcher.github.io/#HTTP_Downloader/) - Download Manager for HTTP / FTP / SFTP Protocols * [pyLoad](https://pyload.net/) - Lightweight Download Manager
* [Downloader](https://downloader.la/) or [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - File Download Tools * [File Centipede](https://filecxx.com/) - Upload / Download Manager
* [mf-dl](https://gitgud.io/Pyxia/mf-dl/) or [mediafire_bulk_downloader](https://github.com/NicKoehler/mediafire_bulk_downloader) - Mediafire File Downloaders * [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
* [WhatsLink](https://whatslink.info/) - View File Download Metadata * [HTTP Downloader](https://erickutcher.github.io/#HTTP_Downloader/) - Download Manager for HTTP / FTP / SFTP Protocols
* [Downloader](https://downloader.la/) or [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - File Download Tools
*** * [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
## ▷ File Archivers * [WhatsLink](https://whatslink.info/) - View File Download Metadata
* 🌐 **[SuperCompression](https://supercompression.org/)** - File Compression Resources ***
***[7-Zip](https://www.7-zip.org/)** - File Archiver
***[NanaZip](https://github.com/M2Team/NanaZip)** - File Archiver ## ▷ File Archivers
***[PeaZip](https://peazip.github.io/)** - Cross Platform File Archiver
***[CompactGUI](https://github.com/IridiumIO/CompactGUI)** or [Compactor](https://github.com/Freaky/Compactor) - Transparent Compression ***[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
* [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums * **[NanaZip](https://github.com/M2Team/NanaZip)** - File Archiver
* [TurboBench](https://github.com/powturbo/TurboBench) - Compression Benchmark * **[PeaZip](https://peazip.github.io/)** - Cross Platform File Archiver
* [unzip-http](https://github.com/saulpw/unzip-http) - Unzip via HTTP without Downloading * [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums
* [WinRAR](https://www.win-rar.com/) - File Archiver / [Licenses](https://rentry.co/FMHYBase64#winrar-licenses) * [TurboBench](https://github.com/powturbo/TurboBench) - Compression Benchmark
* [Efficient Compression Tool](https://github.com/fhanau/Efficient-Compression-Tool) or [Minuimus](https://birds-are-nice.me/software/minuimus.html) - File Archivers / Optimizers * [unzip-http](https://github.com/saulpw/unzip-http) - Unzip via HTTP Without Downloading
* [ZIP Extractor](https://zipextractor.app/) - Google Drive / Gmail File Archiver * [CompactGUI](https://github.com/IridiumIO/CompactGUI) or [Compactor](https://github.com/Freaky/Compactor) - Transparent Compression
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online * [WinRAR](https://www.win-rar.com/) - File Archiver / [Licenses](https://rentry.co/FMHYBase64#winrar-licenses)
* [unzip-online](https://unzip-online.com/en) - Unzip Files Online * [Bandizip](https://www.bandisoft.com/bandizip/) - File Archiver
* [Unrar online](https://unrar.online/) - Unrar Files Online * [IZArc](https://www.izarc.org/) - File Archiver
* [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
*** * [ZIP Extractor](https://zipextractor.app/) - Google Drive / Gmail File Archiver
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online
## ▷ File Converters * [unzip-online](https://unzip-online.com/en) - Unzip Files Online
* [Unrar online](https://unrar.online/) - Unrar Files Online
* 🌐 **[.to Sites](https://rentry.co/nsq29)** - File Converters Index
***[File Converter](https://file-converter.io/)** / [GitHub](https://github.com/Tichau/FileConverter) - Convert / Compress Files ***
***[CloudConvert](https://cloudconvert.com/)** - Convert Files / 1 GB Limit
* [Pandoc](https://pandoc.org/) - Document Converter ## ▷ File Converters
* [ConvertCSV](https://www.convertcsv.com/) - CSV Data Conversion
* [Encoding Converter](https://encoding-converter.netlify.app/) - File Encoding Converter * 🌐 **[.to Sites](https://rentry.co/nsq29)** - File Converters Index
* [Deark](https://entropymine.com/deark/) - Decode and Convert Files / [GitHub](https://github.com/jsummers/deark) * **[File Converter](https://file-converter.io/)** / [GitHub](https://github.com/Tichau/FileConverter) - Convert / Compress Files
* [text2img](https://master.ayra.ch/text2img/) - NFO Files to Image Converter * **[CloudConvert](https://cloudconvert.com/)** - Convert Files / 1 GB Limit
* [FreeConvert](https://www.freeconvert.com/) - File Converter / 1 GB Limit * [Pandoc](https://pandoc.org/) - Document Converter
* [videoutils](https://www.videoutils.com/) - File Converter / 500 MB * [ConvertCSV](https://www.convertcsv.com/) - CSV Data Conversion
* [Xconvert](https://www.xconvert.com) - File Converter / 400 MB * [Encoding Converter](https://encoding-converter.netlify.app/) - File Encoding Converter
* [ConvertFiles](https://www.convertfiles.com/) - File Converter / 250 MB Limit * [Deark](https://entropymine.com/deark/) - Decode and Convert Files / [GitHub](https://github.com/jsummers/deark)
* [Convertio](https://convertio.co/) - File Converter / 100 MB Limit * [text2img](https://master.ayra.ch/text2img/) - NFO Files to Image Converter
* [AnyConvert](https://anyconv.com/) - File Converter / 100 MB Limit * [FreeConvert](https://www.freeconvert.com/) - File Converter / 1 GB Limit
* [onlineconvertfree](https://onlineconvertfree.com/) - File Converter / 100 MB Limit * [videoutils](https://www.videoutils.com/) - File Converter / 500 MB
* [MiConv](https://miconv.com/) - File Converter / 75 MB Limit * [Xconvert](https://www.xconvert.com) - File Converter / 400 MB
* [Converter 365](https://www.converter365.com/) - File Converter / 50 MB Limit * [ConvertFiles](https://www.convertfiles.com/) - File Converter / 250 MB Limit
* [Aconvert](https://www.aconvert.com/) - File Converter / 40 MB Limit * [Convertio](https://convertio.co/) - File Converter / 100 MB Limit
* [PPT Online](https://www.aspose.app/) - File Converter / 35 MB Limit * [AnyConvert](https://anyconv.com/) - File Converter / 100 MB Limit
* [LetsConvert](https://letsconvert.io/) - File Converter / 250 MB Limit * [onlineconvertfree](https://onlineconvertfree.com/) - File Converter / 100 MB Limit
* [Online Convert](https://www.online-convert.com/) - File Converter * [MiConv](https://miconv.com/) - File Converter / 75 MB Limit
* [Zamzar](https://www.zamzar.com/) - File Converter * [Converter 365](https://www.converter365.com/) - File Converter / 50 MB Limit
* [Online Converter](https://www.onlineconverter.com/) - File Converter * [ACConvert](https://www.aconvert.com/) - File Converter / 40 MB Limit
* [File-Coversion](https://www.files-conversion.com/) - File Converter * [PPT Online](https://www.aspose.app/) - File Converter / 35 MB Limit
* [11zon](https://www.11zon.com/) - File Converter * [Online Convert](https://www.online-convert.com/) - File Converter
* [Convert Town](https://convert.town/) - File Converter * [Zamzar](https://www.zamzar.com/) - File Converter
* [Docspal](https://www.docspal.com/) - File Converter * [Online Converter](https://www.onlineconverter.com/) - File Converter
* [Better Converter](https://better-converter.com/) - File Converter * [File-Coversion](https://www.files-conversion.com/) - File Converter
* [conversion-tool](https://www.conversion-tool.com/) - File Converter * [11zon](https://www.11zon.com/) - File Converter
* [go4convert](https://go4convert.com/) - File Converter * [Convert Town](https://convert.town/) - File Converter
* [101convert](https://www.101convert.com/) - File Converter * [Better Converter](https://better-converter.com/) - File Converter
* [FormatSwap](https://formatswap.com/) - File Converter * [conversion-tool](https://www.conversion-tool.com/) - File Converter
* [go4convert](https://go4convert.com/) - File Converter
*** * [101convert](https://www.101convert.com/) - File Converter
* [FormatSwap](https://formatswap.com/) - File Converter
## ▷ 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 ## ▷ File Explorers
* [Sigma](https://sigma-file-manager.vercel.app) - Modern File Manager for Windows / Linux / [GitHub](https://github.com/aleksey-hoffman/sigma-file-manager)
* [ChromaFiler](https://chroma.zone/chromafiler/) - Column-based 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
* [WinFile](https://github.com/microsoft/winfile) - Original Windows File Explorer * [Files](https://files.community/) - Customizable 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 * [Sigma](https://github.com/aleksey-hoffman/sigma-file-manager) - Modern File Manager for Windows / Linux
* [Explorer++](https://explorerplusplus.com/) - Lightweight Windows File Manager * [ChromaFiler](https://chroma.zone/chromafiler/) - Column-based Windows File Manager
* [Far Manager](https://www.farmanager.com/) - Windows File / Archive Manager * [ExplorerPatcher](https://github.com/valinet/ExplorerPatcher) - Improve Windows Explorer
* [Total Commander](https://www.ghisler.com/) - Shareware Windows File Manager * [WinFile](https://github.com/microsoft/winfile) - Original Windows File Explorer
* [Organize](http://organize.readthedocs.io) - Automated 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
* [TrayDir](https://github.com/SamuelSVD/TrayDir) - System Tray File Manager * [Explorer++](https://explorerplusplus.com/) - Lightweight 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 * [Far Manager](https://www.farmanager.com/) - Windows File / Archive Manager
* [Vifm](https://vifm.info/) - Vim-based File Manager * [Total Commander](https://www.ghisler.com/) - Shareware Windows File Manager
* [WinSetView](https://github.com/LesFerch/WinSetView) - Globally Set Explorer Folder Views * [Organize](https://github.com/tfeldmann/organize) - Automated File Manager
* [TrayDir](https://github.com/SamuelSVD/TrayDir) - System Tray File Manager
*** * [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
## ▷ File Searching * [Vifm](https://vifm.info/) - Vim-based File Manager
* [WinSetView](https://github.com/LesFerch/WinSetView) - Globally Set Explorer Folder Views
***[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 ***
* [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 ## ▷ File Searching
* [fselect](https://github.com/jhspetersson/fselect) - SQL-like Search Engine
* [fd](https://github.com/sharkdp/fd) - User Friendly "find" Alternative * **[Everything](https://voidtools.com/)** - File Search Engine
* [sist2](https://github.com/simon987/sist2) - Simple Incremental Search Tool * [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
* [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
* [fselect](https://github.com/jhspetersson/fselect) - SQL-like Search Engine
## ▷ File Encryption * [fd](https://github.com/sharkdp/fd) - User Friendly "find" Alternative
* [sist2](https://github.com/simon987/sist2) - Simple Incremental Search Tool
***[VeraCrypt](https://www.veracrypt.fr/en/Home.html)**
***[Picocrypt](https://github.com/HACKERALERT/Picocrypt)** ***
* [Hat](https://hat.sh/), [GNUPG](https://gnupg.org/)
* [GPG4Win](https://www.gpg4win.org/) ## ▷ File Encryption
* [Encrypto](https://macpaw.com/encrypto)
* [FreeCrypt](https://freecrypt.org/) * **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)**
* [Vmola](https://vmola.com/) * **[Picocrypt](https://github.com/HACKERALERT/Picocrypt)**
* [Kryptor](https://www.kryptor.co.uk/) * [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS partition
* [SecureFolderFS](https://github.com/securefolderfs-community/SecureFolderFS) * [EncFS MP](https://encfsmp.sourceforge.io/index.html)
* [wdcrypt](https://github.com/stefins/wdcrypt) * [Hat](https://hat.sh/), [GNUPG](https://gnupg.org/)
* [age](https://github.com/FiloSottile/age) * [GPG4Win](https://www.gpg4win.org/)
* [Encrypto](https://macpaw.com/encrypto)
*** * [FreeCrypt](https://freecrypt.org/)
* [Vmola](https://vmola.com/)
## ▷ File Backup / Sync * [Kryptor](https://www.kryptor.co.uk/)
* [SecureFolderFS](https://github.com/securefolderfs-community/SecureFolderFS)
* **[SyncThing](https://syncthing.net/)** - File Sync / [Tray Support](https://martchus.github.io/syncthingtray/) * [wdcrypt](https://github.com/stefins/wdcrypt)
* **[KDEConnect](https://kdeconnect.kde.org/)** - Phone / File Sync * [age](https://github.com/FiloSottile/age)
***[freefilesync](https://freefilesync.org/)** - File Backup
***[Kopia](https://kopia.io/)** - File Backup ***
* [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 ## ▷ File Backup / Sync
* [etesync](https://www.etesync.com/) - File Sync
* [allwaysync](https://allwaysync.com/) - File Sync * **[SyncThing](https://syncthing.net/)** - File Sync
* [Resilio](https://www.resilio.com/individuals/) - File Sync * **[KDEConnect](https://kdeconnect.kde.org/)** - Phone / File Sync
* [SmartFTP](https://www.smartftp.com/) - File Sync * **[freefilesync](https://freefilesync.org/)** - File Backup
* [rsync](https://rsync.samba.org) - File Sync / [GitHub](https://github.com/WayneD/rsync) * [MyPhoneExplorer](https://www.fjsoft.at/) - Phone / Desktop Sync
* [Unison](https://github.com/bcpierce00/unison) - File Sync * [etesync](https://www.etesync.com/) - File Sync
* [FolderClone](https://www.folderclone.com/) - Clone / Backup Folders * [allwaysync](https://allwaysync.com/) - File Sync
* [BackupPC](https://backuppc.github.io/backuppc/) - File Backup * [Resilio](https://www.resilio.com/individuals/) - File Sync
* [TeraCopy](https://www.codesector.com/teracopy) - File Backup * [SmartFTP](https://www.smartftp.com/) - File Sync
* [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic) - File Backup * [rsync](https://github.com/WayneD/rsync) - File Sync
* [UrBackup](https://www.urbackup.org/) - File Backup * [Unison](https://github.com/bcpierce00/unison) - File Sync
* [Aomei](https://www.ubackup.com/) - File Backup * [FolderClone](https://www.folderclone.com/) - Clone / Backup Folders
* [Duplicati](https://www.duplicati.com/) - File Backup * [BackupPC](https://backuppc.github.io/backuppc/) - File Backup
* [Borg](https://www.borgbackup.org/) - File Backup * [TeraCopy](https://www.codesector.com/teracopy) - File Backup
* [USBImager](https://bztsrc.gitlab.io/usbimager/) - File Backup * [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic) - File Backup
* [Toucan](https://github.com/PortableApps/Toucan) - File Backup * [UrBackup](https://www.urbackup.org/) - File Backup
* [duplicity](https://duplicity.gitlab.io/) - File Backup * [Aomei](https://www.ubackup.com/) - File Backup
* [Duplicati](https://www.duplicati.com/) - File Backup
*** * [Borg](https://www.borgbackup.org/) - File Backup
* [USBImager](https://bztsrc.gitlab.io/usbimager/) - File Backup
## ▷ File Recovery * [Toucan](https://github.com/PortableApps/Toucan) - File Backup
* [Kopia](https://kopia.io/) - File Backup
* **[TestDisk](https://www.cgsecurity.org/wiki/TestDisk)** - File Recovery * [duplicity](https://duplicity.gitlab.io/) - File Backup
* [R-Undelete](https://www.r-undelete.com/Download.shtml) - File Recovery
* [PhotoRec](https://www.cgsecurity.org/wiki/PhotoRec) - File Recovery ***
* [DMDE](https://dmde.com/download.html) - File Recovery
* [Recuva](https://www.ccleaner.com/recuva) - File Recovery ## ▷ 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 * **[TestDisk](https://www.cgsecurity.org/wiki/TestDisk)** - File Recovery
* [R-Undelete](https://www.r-undelete.com/Download.shtml) - File Recovery
*** * [PhotoRec](https://www.cgsecurity.org/wiki/PhotoRec) - File Recovery
* [DMDE](https://dmde.com/download.html) - File Recovery
## ▷ Formatting / Deletion * [Recuva](https://www.ccleaner.com/recuva) - File Recovery
* [MultiPar](https://github.com/Yutaka-Sawada/MultiPar) - Prevent File Corruption / [Guide](https://youtu.be/5TsExiAsCXA)
* **[SDelete](https://learn.microsoft.com/en-us/sysinternals/downloads/sdelete)** * [ShadowExplorer](https://www.shadowexplorer.com/) or [ShadowCopyView](https://www.nirsoft.net/utils/shadow_copy_view.html/) - Shadow Copy Explorers
* [Eraser](https://eraser.heidi.ie/)
* [File Shredder](https://fileshredder.org/) ***
* [SSuite File Shredder and Burner](https://www.ssuiteoffice.com/software/ssuitefileshredder.htm)
* [Low Level Format](https://www.lowlevelformat.info/) ## ▷ Formatting / Deletion
* [Alternate File Shredder](https://www.alternate-tools.com/pages/c_fileshredder.php?lang=ENG)
* [Permadelete](https://developerstree.github.io/permadelete/) * **[SDelete](https://learn.microsoft.com/en-us/sysinternals/downloads/sdelete)**
* [nwipe](https://github.com/martijnvanbrummelen/nwipe) * [Eraser](https://eraser.heidi.ie/)
* [ShredOS](https://github.com/PartialVolume/shredos.x86_64) * [File Shredder](https://fileshredder.org/)
* [Delapp](https://github.com/differentrain/Delapp) * [SSuite File Shredder and Burner](https://www.ssuiteoffice.com/software/ssuitefileshredder.htm)
* [RED](https://www.jonasjohn.de/red.htm) - Remove Empty Directories * [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/)
* [nwipe](https://github.com/martijnvanbrummelen/nwipe)
## ▷ Data Automation * [ShredOS](https://github.com/PartialVolume/shredos.x86_64)
* [Delapp](https://github.com/differentrain/Delapp)
* **[Advanced Renamer](https://www.advancedrenamer.com/)** - Bulk Renamer * [RED](https://www.jonasjohn.de/red.htm) - Remove Empty Directories
***[Bulk Rename Utility](https://www.bulkrenameutility.co.uk/)** - Bulk Renamer
* [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 ## ▷ Data Automation
* [tinyMediaManager](https://www.tinymediamanager.org/) - Data Automation
* [Bruji](https://www.bruji.com/) - Data Automation * **[Advanced Renamer](https://www.advancedrenamer.com/)** - Bulk Renamer
* [FileBot](https://www.filebot.net/) - Data Automation * **[Bulk Rename Utility](https://www.bulkrenameutility.co.uk/)** - Bulk Renamer
* [MediaElch](https://www.kvibes.de/mediaelch/) - Data Automation * [MediaMonkey](https://www.mediamonkey.com/) - Data Automation
* [TVRename](https://www.tvrename.com/) - TV File Data Automation * [mnamer](https://github.com/jkwill87/mnamer) - Data Automation
* [Shoko](https://github.com/shokoanime) - Anime File Data Automation * [MediaInfo](https://mediaarea.net/en/MediaInfo) / [Online](https://mediaarea.net/MediaInfoOnline) - Data Automation
* [Szyszka](https://github.com/qarmin/szyszka) - Bulk Renamer * [tinyMediaManager](https://www.tinymediamanager.org/) - Data Automation
* [PowerRename](https://learn.microsoft.com/en-us/windows/powertoys/powerrename) - Bulk Renamer * [Bruji](https://www.bruji.com/) - Data Automation
* [Ant Renamer](https://www.antp.be/software/renamer) - Bulk Renamer * [FileBot](https://www.filebot.net/) - Data Automation
* [Flut Renamer](https://github.com/sun-jiao/flut-renamer) - Bulk Renamer * [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
* [Szyszka](https://github.com/qarmin/szyszka) - Bulk Renamer
## ▷ PDF Tools * [Massren](https://github.com/laurent22/massren) - Bulk Renamer
* [PowerRename](https://learn.microsoft.com/en-us/windows/powertoys/powerrename) - 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 * [Ant Renamer](https://www.antp.be/software/renamer) - 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
* [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 ## ▷ PDF Tools
* [PDFConverter](https://www.pdfconverter.com/) or [PDFconvert](https://docupub.com/pdfconvert/) - PDF File Converters
* [Adobe Compress PDF](https://www.adobe.com/acrobat/online/compress-pdf.html) - PDF Compressor * **[Sejda](https://www.sejda.com/)**, [ILovePDF](https://www.ilovepdf.com/) or [SimplePDF](https://simplepdf.eu/) - Online PDF Toolkits
* [PDF Mergy](https://pdfmerge.w69b.com/) or [PDFSnake](https://pdfsnake.app/) - Merge PDF Files * **[PDFGear](https://www.pdfgear.com/)**, [xPDFReader](https://www.xpdfreader.com/), [PDF Arranger](https://github.com/pdfarranger/pdfarranger), [PrivatePDF](https://github.com/photown/private-pdf), [PDFBox](https://pdfbox.apache.org/) or [OpenPDF](https://github.com/LibrePDF/OpenPDF) - PDF Editors / Toolkits
* [Adobe Word Converter](https://www.adobe.com/acrobat/online/word-to-pdf.html) - Word to PDF Converter * [PDFGrep](https://pdfgrep.org/) - PDF Text Search
* [PDFLayoutTextStripper](https://github.com/JonathanLink/PDFLayoutTextStripper) - PDF to Text Converter * [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on GDrive
* [VancedPDF](https://vancepdf.com/) or [PDFtoWordConverter](https://xodo.com/pdf-to-word-converter) - PDF to Word Converter * [online2pdf](https://online2pdf.com/) or [2PDFConverter](https://www.2pdfconverter.com/) - Convert Files to PDF
* [Marker](https://github.com/VikParuchuri/marker) - PDF to Markdown * [PDFConverter](https://www.pdfconverter.com/) or [PDFconvert](https://docupub.com/pdfconvert/) - PDF File Converters
* [Adobe Excel to PDF](https://www.adobe.com/acrobat/online/excel-to-pdf.html) - Convert Excel Files to PDF * [Adobe Compress PDF](https://www.adobe.com/acrobat/online/compress-pdf.html) - PDF Compressor
* [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 * [PDF Mergy](https://pdfmerge.w69b.com/) or [PDFSnake](https://pdfsnake.app/) - Merge PDF 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 Word Converter](https://www.adobe.com/acrobat/online/word-to-pdf.html) - Word to PDF Converter
* [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/), [2](https://vebuka.com/) * [PDFLayoutTextStripper](https://github.com/JonathanLink/PDFLayoutTextStripper) - PDF to Text Converter
* [WebToPDF](https://webtopdf.com/) or [Percollate](https://github.com/danburzo/percollate) - Webpage to PDF Converters * [VancedPDF](https://vancepdf.com/) or [PDFtoWordConverter](https://xodo.com/pdf-to-word-converter) - PDF to Word Converter
* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs * [Marker](https://github.com/VikParuchuri/marker) - PDF to Markdown
* [PPT To PDF](https://www.adobe.com/acrobat/online/ppt-to-pdf.html) - Convert PowerPoint to PDF Adobe * [Adobe Excel to PDF](https://www.adobe.com/acrobat/online/excel-to-pdf.html) - Convert Excel Files to PDF
* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover * [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
* [Scan Your PDF](https://www.scanyourpdf.com/) - Make PDFs look Scanned * [PDFCrowd](https://pdfcrowd.com/), [HTMLaPDF](https://www.htmlapdf.com/), [TailWindPDF](https://tailwindpdf.com/) or [wkhtmltopdf](https://wkhtmltopdf.org/) - HTML to PDF / Image Converter
* [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs * [PSTOEdit](http://pstoedit.net/) - Convert PDF to other Vector Formats
* [JustSignPDF](https://justsignpdf.com/) - Sign PDF Online * [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/), [2](https://vebuka.com/)
* [FalsiScan](https://gitlab.com/edouardklein/falsisign) - PDF Hand Signature Generator * [Percollate](https://github.com/danburzo/percollate), [WebToPDF](https://webtopdf.com/) or [PDFmyURL](https://pdfmyurl.com/) - Webpage to PDF Converters
* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected GDrive PDFs * [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs
* [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files * [PPT To PDF](https://www.adobe.com/acrobat/online/ppt-to-pdf.html) - Convert PowerPoint to PDF Adobe
* [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - Fill & sign a PDF * [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
*** * [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs
* [JustSignPDF](https://justsignpdf.com/) - Sign PDF Online
# ► File Hosts * [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
* **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. * [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files
* [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - Fill & sign a PDF
***
***
* ↪️ **[Video File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_video_file_hosts)**
***[Buzzheavier](https://buzzheavier.com/)** - Unlimited / Forever / [Discord](https://discord.gg/ttQjgC28WP) # ► File Hosts
***[Gofile](https://gofile.io/)** - Unlimited / 10 Days
***[1fichier.com](https://1fichier.com/)** - 300GB / 15 Days (30 Days With Account) **Note** - Size is per file and time is after the last time someone downloaded that file unless specified.
***[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 ***
***[Cipher Files](https://cipherfiles.com/)** - 5GB / Forever / [Discord](https://discord.gg/DmRhftYcvN)
***[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB With Account) / Forever ***[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 days / [Discord](https://discord.gg/TWKGvYAFvX) / [Speedtest File](https://pixeldrain.com/speedtest) / [Bypass](https://pixeldrain-bypass.cybar.xyz) / [Bypass Note](https://pastebin.com/A9aJr8cE)
***[Catbox](https://catbox.moe/)** - 200MB / Forever ***[Gofile](https://gofile.io/)** - Unlimited / 10 days
***[Qiwi](https://qiwi.gg)** - Account Required / [Note](https://pastebin.com/QJDbgtRJ) ***[1fichier](https://1fichier.com/)** - 300GB / 15 days (30 days if you sign up)
***[HIDAN](https://hidan.sh/)** - Unlimited / 10+ Days (from upload) ***[Buzzheavier](https://buzzheavier.com/)** - Unlimited / Forever / [Discord](https://discord.gg/ttQjgC28WP)
***[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX) ***[Send.cm](https://send.cm/)** - 100GB / 15 days
***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) ***[Oshi](https://oshi.at/)** - 5GB / 90 days
* [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 * **[Hexupload](https://www.hexupload.net/)** - 15GB / 60 days
* [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App * **[Mixdrop](https://mixdrop.ag/)** - 2GB / 60 Days / Signup Required
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Account Required * **[Qiwi](https://qiwi.gg)** - [Warning](https://pastebin.com/jn90QMEt) / Signup Required
* [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://pastebin.com/W0j4VDAN) * **[Catbox.moe](https://catbox.moe/)** - 200MB / Forever
* [file.kiwi](https://file.kiwi/) - Unlimited / [File Expiry Explanation](https://file.kiwi/en/price) * [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
* [FEX.NET](https://fex.net/) - 100GB / 7 Days * [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App
* [SwissTransfer](https://www.swisstransfer.com/) - 50GB / 30 Days / 250 Downloads * [Archive.org](https://archive.org/create/) - Signup Required
* [BowFile](https://bowfile.com/) - 20GB / 20 Days * [send](https://send.vis.ee/) / [instances](https://gitlab.com/timvisee/send-instances) - 2.5gb / 1 day
* [Hexupload](https://www.hexupload.net/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days * [FileDitch](https://fileditch.com/) - 15GB / 30 days
* [FileLu](https://filelu.com/) - 15GB / 1 Day (Unlimited With Account) / [Note](https://pastebin.com/Rr9ZqD2F) * [File.cm](https://file.cm/) - 100GB / 30 days / Signup Required
* [Fastupload.io](https://fastupload.io/en) - 10GB / 30 Days (60 Days With Account) * [edisk](https://www.edisk.cz/) - 10GB / 30 days
* [eDisk](https://www.edisk.cz/) or [Easyupload.io](https://easyupload.io/) - 10GB / 30 Days * [file.kiwi](https://file.kiwi/) - Unlimited / 3.5 Days / [Free Download Duration](https://ibb.co/85z9D1s)
* [Drop Download](https://drop.download/) - 10GB / 30 Days / Account Required * [easyupload](https://easyupload.io/) - 10GB / 50gb total / 30 days
* [DesiUpload](https://desiupload.co/) - 10GB / 15 Days (15GB / 30 Days With Account) * [fastupload](https://fastupload.io/en) - 10GB / 30 days
* [GrosFichiers](https://www.grosfichiers.com/) - 10GB / 14 Days * [desiupload](https://desiupload.co/) or [uploadraja](https://uploadraja.com/) - 10GB / 15 days
* [Fshare](https://www.fshare.vn/) - 10GB / 5 Days * [fshare](https://www.fshare.vn/) - 10GB / 5 days
* [Uploadraja.com](https://uploadraja.com/) - 10GB / 4 Days (30GB / 15 Days With Account) * [megaup](https://megaup.net/) - 5GB / 60 days
* [FileTransfer.io](https://filetransfer.io/) - 6GB / 21 Days / 50 Downloads * [ufile](https://ufile.io/) - 5GB / 30 days
* [Tempfile](https://tempfile.me/) - 10GB / 90 Days * [sendbig](https://www.sendbig.com/) - 5GB / 7 days
* [FileDitch](https://fileditch.com/), [Oshi](https://oshi.at/) or [SendGB](https://www.sendgb.com/) - 5GB / 90 Days * [Smash](https://fromsmash.com/) - 2GB / 7Days
* [MegaUp](https://megaup.net/) - 5GB / 60 Days * [alfafile](https://www.alfafile.net/) - 5GB / 30 days / Signup Required
* [ufile.io](https://ufile.io/) - 5GB / 30 Days * [drop.download](https://drop.download/) - 5GB / 15 days / Signup Required
* [Internxt Send](https://send.internxt.com/) - 5GB / 15 Days * [clicknupload](https://clicknupload.co/) - 2GB / 12 days / 5gb / 30 days on sign-up
* [pCloud Transfer](https://transfer.pcloud.com/) or [Tresorit Send](https://send.tresorit.com/) - 5GB / 7 Days / Email Required * [doodrive](https://doodrive.com/) - 2GB / 30 days / Signup Required
* [Temp.sh](https://temp.sh/) - 4GB / 3 Days * [sfile](https://sfile.mobi/) - 100MB / 5gb total / Forever
* [File Convoy](https://www.fileconvoy.com/) - 3GB / 21 Days * [krakenfiles](https://krakenfiles.com/) - 1GB / 90 days
* [FilePost](https://file-post.net/) - 3GB / 7 Days / Email Required * [Imagenetz](https://www.imagenetz.de/) - 2GB / 90 days
* [Send](https://send.vis.ee/) - 2.5GB / 3 Days / 10 Downloads / [Instances](https://gitlab.com/timvisee/send-instances) * [filelu](https://filelu.com/) - ?GB / 10 days
* [DropMB](https://dropmb.com/) - 2GB / 1 Year * [fileconvoy](https://www.fileconvoy.com/) - 3GB / 21 days total
* [FireLoad](https://www.fireload.com/) - 2GB / 60 Days / Account Required * [filetransfer](https://filetransfer.io/) - 6GB / 21 days total / 50 download limit
* [Lufi](https://upload.disroot.org/) - 2GB / 30 Days * [swisstransfer](https://www.swisstransfer.com/en) - 50GB / 30 days total / 250 download limit
* [DooDrive](https://doodrive.com/) - 2GB / 30 Days / Account Required * [bowfile](https://bowfile.com/) - 5GB / 30 days total
* [Clicknupload](https://clicknupload.co/) - 2GB / 8 Days (10GB / 25 Days With Account) * [grosfichiers](https://www.grosfichiers.com/) - 10GB / 14 days total
* [WeTransfer](https://wetransfer.com/) - 2GB / 7 Days * [filebin](https://filebin.net/) - Unlimited / 6 days total / Anyone w/ a link can delete
* [Smash](https://fromsmash.com/) - 2GB / 7 Days / Email Required * [fex](https://fex.net/) - 100GB total / 7 days total
* [Limited Upload Hosts](https://rentry.org/xc48kg) - More Hosts / 1GB or Below * [Encl](https://encl.io/) - 10gb / 7 days total
* [SendGB](https://www.sendgb.com/) - 5GB / 7 days total
*** * [pCloud Transfer](https://transfer.pcloud.com/) - 5GB / 7 days total
* [tresorit](https://send.tresorit.com/) - 5GB / 7 days total
## ▷ P2P File Transfer * [temp.sh](https://temp.sh/) - 4GB / 3 days total
* [file-post](https://file-post.net/) - 3GB / 7 days total
* **[ToffeeShare](https://toffeeshare.com/)** * [FireLoad](https://www.fireload.com/) - 2GB / 60 days total / Signup Required
* **[Blaze](https://blaze.vercel.app/)** / [GitHub](https://github.com/blenderskool/blaze) * [WeTransfer](https://wetransfer.com/) - 2GB / 7 days total
* **[LocalSend](https://localsend.org/)** - Phone / Desktop Transfer / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png) * [LitterBox](https://litterbox.catbox.moe/) - 1GB / 3 days total
* **[wormhole](https://wormhole.app/)** * [Limited Upload Hosts](https://rentry.org/xc48kg) - 1GB or below
***[justbeamit](https://justbeamit.com/)**
***[Tailscale](https://tailscale.com/)** ***
***[spacedrop](https://spacedrop.app/)**
* [Warpinator](https://github.com/linuxmint/warpinator) - Phone / Desktop Transfer ## ▷ P2P File Transfer
* [QRServ](https://play.google.com/store/apps/details?id=dev.uint.qrserv) - Phone / Desktop Transfer / [GitHub](https://github.com/uintdev/qrserv)
* [pairdrop](https://pairdrop.net/) or [Snapdrop](https://snapdrop.net/) * **[ToffeeShare](https://toffeeshare.com/)**
* [sharedrop](https://www.sharedrop.io/) * **[Blaze](https://blaze.vercel.app/)** / [GitHub](https://github.com/blenderskool/blaze)
* [new.space](https://new.space/) * **[wormhole](https://wormhole.app/)**
* [file.pizza](https://file.pizza/) * **[justbeamit](https://justbeamit.com/)**
* [Transfernow](https://www.transfernow.net/en) * **[Tailscale](https://tailscale.com/)**
* [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole) * **[LocalSend](https://localsend.org/)** - Phone / Desktop Transfer / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png)
* [onionshare](https://onionshare.org/) * [Warpinator](https://github.com/linuxmint/warpinator) - Phone / Desktop Transfer
* [Horizon Send](https://send.hrzn.cool/) * [QRServ](https://github.com/uintdev/qrserv) - Phone / Desktop Transfer
* [OwnCloud](https://owncloud.com/) * [pairdrop](https://pairdrop.net/)
* [WinSCP](https://winscp.net/eng/index.php) * [sharedrop](https://www.sharedrop.io/)
* [FileBrowser](https://filebrowser.org/) * [new.space](https://new.space/)
* [croc](https://github.com/schollz/croc) / [GUI](https://github.com/howeyc/crocgui) * [file.pizza](https://file.pizza/)
* [landrop](https://landrop.app/) * [Transfernow](https://www.transfernow.net/en)
* [Surge](https://getsurge.io/) * [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole)
* [saladroom](https://saladroom.net/) * [onionshare](https://onionshare.org/)
* [blymp.io](https://blymp.io/) / [GitHub](https://github.com/vantezzen/blymp-io) * [Horizon Send](https://send.hrzn.cool/)
* [drop.lol](https://drop.lol/) / [GitHub](https://github.com/mat-sz/filedrop-web) * [OwnCloud](https://owncloud.com/)
* [sendfiles](https://sendfiles.online/) * [WinSCP](https://winscp.net/eng/index.php)
* [XD-Torrent](https://xd-torrent.github.io/) * [FileBrowser](https://filebrowser.org/)
* [lightning](https://lightning-share.vercel.app/) * [croc](https://github.com/howeyc/crocgui)
* [RDrop](https://rdrop.link/) * [landrop](https://landrop.app/)
* [webdrop](https://webdrop.space/) * [Surge](https://getsurge.io/)
* [MyAirBridge](https://www.myairbridge.com/) * [saladroom](https://saladroom.net/)
* [Sprend](https://sprend.com/) * [blymp.io](https://blymp.io/) / [GitHub](https://github.com/vantezzen/blymp-io)
* [JumboMail](https://www.jumbomail.me/) * [drop.lol](https://drop.lol/) / [GitHub](https://github.com/mat-sz/filedrop-web)
* [PlusTransfer](https://www.plustransfer.com/) * [sendfiles](https://sendfiles.online/)
* [Wing FTP](https://www.wftpserver.com/) * [XD-Torrent](https://xd-torrent.github.io/)
* [Xlight](https://xlightftpd.com/) * [lightning](https://lightning-share.vercel.app/)
* [FileZilla](https://filezilla-project.org/) * [RDrop](https://rdrop.link/)
* [uschovna](https://www.uschovna.cz/) * [webdrop](https://webdrop.space/)
* [posilej](https://posilej.cz/) * [MyAirBridge](https://www.myairbridge.com/)
* [filetransfer](https://filetransfer.kpn.com/) * [Sprend](https://sprend.com/)
* [Diode](https://diode.io/) * [JumboMail](https://www.jumbomail.me/)
* [WebWormhole](https://webwormhole.io/) * [PlusTransfer](https://www.plustransfer.com/)
* [Destiny](https://github.com/LeastAuthority/destiny) * [Wing FTP](https://www.wftpserver.com/)
* [filepress](https://new.filepress.store/) * [Xlight](https://xlightftpd.com/)
* [sharrr](https://www.sharrr.com/) * [uschovna](https://www.uschovna.cz/)
* [Photon](https://photondev.netlify.app/) * [posilej](https://posilej.cz/)
* [EchoDuck](https://echoduck.com/) * [filetransfer](https://filetransfer.kpn.com/)
* [ffsend](https://github.com/timvisee/ffsend) * [Diode](https://diode.io/)
* [File.love](https://file.love/) * [WebWormhole](https://webwormhole.io/)
* [IPFS](https://ipfs.tech/) or [kubo](https://github.com/ipfs/kubo) - P2P Hypermedia Protocol * [Destiny](https://github.com/LeastAuthority/destiny)
* 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/) * [filepress](https://new.filepress.store/)
* [sharrr](https://www.sharrr.com/)
*** * [Photon](https://photondev.netlify.app/)
* [ffsend](https://github.com/timvisee/ffsend)
## ▷ Cloud Storage * [File.love](https://file.love/)
* [spacedrop](https://spacedrop.app/)
* **Note** - Monthly prices are based on annual plans. 2TB prices are halved for comparison if a 1TB plan doesn't exist for a service. * [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)
* [IPFS Cluster](https://ipfscluster.io/) - Automated data availability and redundancy on IPFS
***
***
***[Cloud Storage Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** - Compare Cloud Storage Polices
***[Rclone](https://rclone.org/)** - Cloud Storage Manager ## ▷ Cloud Storage
***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)
* **[gclone](https://github.com/dogbutcat/gclone)**, [2](https://github.com/l3v11/gclone) - Cloud Storage Manager * **Note** - Monthly prices are based on annual plans. 2TB prices are halved for comparison if a 1TB plan doesn't exist for a service.
***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 Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** - Compare Cloud Storage Polices
***[mega](https://mega.nz/)** - 20GB Free / ~$4.5 for 1TB / [GitHub](https://github.com/meganz) ***[RClone](https://rclone.org/)** - Cloud Storage Manager
***[disk.yandex](https://disk.yandex.com/)** - 5GB Free / $2.42 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)
***[filen](https://filen.io/)** - 10GB Free / ~$8 for 1TB ***[gclone](https://github.com/dogbutcat/gclone)**, [2](https://github.com/l3v11/gclone) - Cloud Storage Manager
***[Cyberduck](https://cyberduck.io/)** - Libre Server / Cloud Storage Browser ***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)
* [Cloud Storage Archiving Guide](https://pastebin.com/kLhLHsXg) - How To Safely Archive Files on Cloud Storage Sites * **[Air Explorer](https://airexplorer.net/en/)** - Cloud Storage Manager
* [terabox](https://terabox.com/) - 1TB Free / $3.50 for 2TB / [Downloader](https://indexsubtitle.cc/terabox-direct-link-generator) * **[RaiDrive](https://www.raidrive.com/)** - Cloud Storage Manager
* [CyberFile](https://cyberfile.me/) - 1TB Free * **[GDrive](https://drive.google.com/)** - 15GB Free / ~$3.25 for 1TB
* [dropbox](https://www.dropbox.com/) - 5GB Free / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral) * **[mega](https://mega.nz/)** - 20GB Free / ~$4.5 for 1TB / [GitHub](https://github.com/meganz)
* [mediafire](https://www.mediafire.com/) - 10GB Free / $5.83 for 1TB * **[disk.yandex](https://disk.yandex.com/)** - 5GB Free / $2.42 for 1TB
* [icedrive](https://icedrive.net/) - 10GB Free / $5 for 1TB * **[filen](https://filen.io/)** - 10GB Free / ~$8 for 1TB
* [PCloud](https://www.pcloud.com/) - 10GB Free / ~$4.16 for 1TB * **[internxt](https://internxt.com/)** - 10GB Free / ~4.85 for 1TB
* [JumpShare](https://jumpshare.com/) - 2GB Free / $8.25 for 1TB * **[Cyberduck](https://cyberduck.io/)** - Libre Server / Cloud Storage Browser
* [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16.67 for 1TB * [Cloud Storage Archiving Guide](https://pastebin.com/kLhLHsXg) - How To Safely Archive Files on Cloud Storage Sites
* [storj](https://www.storj.io/) - 25GB Free / ~$4 for 1TB * [terabox](https://terabox.com/) - 1TB Free / $3.50 for 2TB
* [Blomp](https://www.blomp.com/) - 20GB Free / ~$3 for 2TB * [CyberFile](https://cyberfile.me/) - 1TB Free
* [internxt](https://internxt.com/) - 10GB Free / ~4.85 for 1TB * [HelURL](https://helurl.com/) - 50GB Free
* [xpipe](https://xpipe.io) - Remote File Manager * [dropbox](https://www.dropbox.com/) - 5GB Free / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral)
* [bookmarkfs](https://github.com/CoolElectronics/bookmarkfs) - Chrome's Profile Sync Cloud Storage * [mediafire](https://www.mediafire.com/) - 10GB Free / $5.83 for 1TB
* [InfiniDrive](https://github.com/nicomda/InfiniDrive) - Amazon Prime Photos Cloud Storage * [icedrive](https://icedrive.net/) - 10GB Free / $5 for 1TB
* [OneDriveFly](https://github.com/Tai7sy/OneDriveFly) or [OneDrive Vercel Index](https://ovi.swo.moe/) - OneDrive Indexes * [PCloud](https://www.pcloud.com/) - 10GB Free / ~$4.16 for 1TB
* [Fix-OneDrive-Zip](https://github.com/pmqs/Fix-OneDrive-Zip) - Fix OneDrive Zip Files >4gb * [JumpShare](https://jumpshare.com/) - 2GB Free / $8.25 for 1TB
* [Microsoft-E5-Auto-Renewal](https://github.com/TheCaduceus/Microsoft-E5-Auto-Renewal) - Developer E5 Auto Renewal * [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16.67 for 1TB
* [Koofr](https://koofr.eu/) - Cloud Storage Manager * [storj](https://www.storj.io/) - 25GB Free / ~$4 for 1TB
* [SpaceDrive](https://www.spacedrive.com/) - Cloud Storage Manager * [Blomp](https://www.blomp.com/) - 20GB Free / ~$3 for 2TB
* [CarotDAV](http://rei.to/carotdav_en.html) - Cloud Storage Manager * [xpipe](https://github.com/xpipe-io/xpipe) - Remote File Manager
* [MultCloud](https://www.multcloud.com/) - Cloud Storage Manager * [bookmarkfs](https://github.com/CoolElectronics/bookmarkfs) - Chrome's Profile Sync Cloud Storage
* [MSP360](https://www.msp360.com/explorer.aspx) - Cloud Storage Manager * [InfiniDrive](https://github.com/nicomda/InfiniDrive) - Amazon Prime Photos Cloud Storage
* [AList](https://alist.nn.ci) - Cloud Storage Manager * [OneDriveFly](https://github.com/Tai7sy/OneDriveFly) or [OneDrive Vercel Index](https://ovi.swo.moe/) - OneDrive Indexes
* [SeaFile](https://www.seafile.com/en/home/) or [FileStash](https://www.filestash.app/) - Self-Hosted Cloud Storage / [Fork](https://github.com/ZizzyDizzyMC/linx-server/) * [Fix-OneDrive-Zip](https://github.com/pmqs/Fix-OneDrive-Zip) - Fix OneDrive Zip Files >4gb
* [Microsoft-E5-Auto-Renewal](https://github.com/TheCaduceus/Microsoft-E5-Auto-Renewal) - Developer E5 Auto Renewal
*** * [Koofr](https://koofr.eu/) - Cloud Storage Manager
* [SpaceDrive](https://www.spacedrive.com/) - Cloud Storage Manager
## ▷ GDrive Tools * [CarotDAV](http://rei.to/carotdav_en.html) - Cloud Storage Manager
* [MultCloud](https://www.multcloud.com/) - Cloud Storage Manager
* ↪️ **[GDrive File Sharing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_gdrive_file_sharing)** * [MSP360](https://www.msp360.com/explorer.aspx) - Cloud Storage Manager
* **[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 * [AList](https://github.com/alist-org/alist) - Cloud Storage Manager
* **[SA Drive](https://github.com/jsmsj/sa-drive/)** - Service Account Drive Manager * [SeaFile](https://www.seafile.com/en/home/) or [FileStash](https://www.filestash.app/) - Self-Hosted Cloud Storage / [Fork](https://github.com/ZizzyDizzyMC/linx-server/)
* [Any File to GDrive](https://github.com/menukaonline/Any-file-to-Google-Drive) - DDL to GDrive Tool
* [DriveUploader](https://driveuploader.com/) - Receive Files via GDrive ***
* [GDrive CLI](https://github.com/glotlabs/gdrive) - Google Drive CLI Client
* [goodls](https://github.com/tanaikech/goodls) - Google Drive Downloader ## ▷ GDrive Tools
* [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 * ↪️ **[GDrive File Sharing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_gdrive_file_sharing)**
* [gdrivedl](https://github.com/matthuisman/gdrivedl) - Google Drive Python Download Script * ↪️ **[Copy Google Drives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_copy_google_drives)**
* [GDriveSearcherBot](https://github.com/TheHamkerCat/GdriveSearcherBot) - GDrive Search Bot * **[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
* [ISAAC](https://github.com/harryeffinpotter/ISAAC) - Google Service Account Generators * **[SA Drive](https://github.com/jsmsj/sa-drive/)** - Service Account Drive Manager
* [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 * [Any File to GDrive](https://github.com/menukaonline/Any-file-to-Google-Drive) - DDL to GDrive Tool
* [Decrypt.Hashhackers](https://decrypt.hashhackers.com/) - Encrypt / Decrypt GDrive * [DriveUploader](https://driveuploader.com/) - Receive Files via GDrive
* [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 * [GDrive CLI](https://github.com/glotlabs/gdrive) - Google Drive CLI Client
* [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 * [goodls](https://github.com/tanaikech/goodls) - Google Drive Downloader
* [CloneBot](https://github.com/MsGsuite/CloneBot_Heroku) - Copy GDrive to TeamDrive * [gogdl-ng](https://github.com/gogdl-ng/gogdl-ng) - Google Drive Bulk Downloader
* [GD-EFC Link Encryptor](https://rekulous.github.io/gd-efc-encryptor/) - Google Drive Link Encryptor for GD-EFC * [GDrive Downloader](https://github.com/Akianonymus/gdrive-downloader) - Google Drive Folder Downloader
* [gd-efc](https://anadius.github.io/gd-efc/) - Copy Encrypted Google Drive * [gdrivedl](https://github.com/matthuisman/gdrivedl) - Google Drive Python Download Script
* [Gdrive Guide-Noob Friendly](https://telegra.ph/Gdrive-Guide-Noob-Friendly-04-10) - GDrive Guide * [GDriveSearcherBot](https://github.com/TheHamkerCat/GdriveSearcherBot) - GDrive Search Bot
* [DriveRename](https://driverename.iblogbox.com/) - Bulk GDrive File Rename * [ISAAC](https://github.com/harryeffinpotter/ISAAC) - Google Service Account Generators
* [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
*** * [Decrypt.Hashhackers](https://decrypt.hashhackers.com/) - Encrypt / Decrypt GDrive
* [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
## ▷ Mega Tools * [CloneBot](https://github.com/MsGsuite/CloneBot_Heroku) - Copy GDrive to TeamDrive
* [GD-EFC Link Encryptor](https://rekulous.github.io/gd-efc-encryptor/) - Google Drive Link Encryptor for GD-EFC
* **[Mega-to-Google-Drive](https://github.com/menukaonline/Mega-to-Google-Drive)** - Transfer Files from Mega to GDrive * [gd-efc](https://anadius.github.io/gd-efc/) - Copy Encrypted Google Drive
* **[Megabasterd](https://github.com/tonikelope/megabasterd)** - MEGA Quota Bypass / [Note](https://pastebin.com/BpS2mwKX) * [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_account_generator](https://github.com/qtchaos/py_mega_account_generator)** - Unlimited Upload Size / [Note](https://pastebin.com/Jwuc5Tpf) * [Gdrive Guide-Noob Friendly](https://telegra.ph/Gdrive-Guide-Noob-Friendly-04-10) - GDrive Guide
***[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 Tools
* [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 * **[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,78 +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
***[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
* [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
* :star: **[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
* [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Kernel-Based Virtual Machine
* [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
* [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
*** ***
@@ -106,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
@@ -143,39 +43,38 @@
***[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
* [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/), [PaperWM](https://github.com/paperwm/PaperWM), [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), [nb](https://github.com/xwmx/nb) or [Mousepad](https://github.com/codebrainz/mousepad) - Text Editor / Note Apps
* [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 * [Komikku](https://valos.gitlab.io/Komikku/), [Tachidesk-VaadinUI](https://github.com/Suwayomi/Tachidesk-VaadinUI) or [Manga Reader](https://flathub.org/apps/details/com.georgefb.mangareader) - Manga Readers
* [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
@@ -183,31 +82,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
@@ -215,16 +110,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
* [4KTUBE](https://github.com/rishabh3354/4KTUBE) or [Video Downloader](https://github.com/Unrud/video-downloader) - Video Downloaders * [Flowblade](https://jliljebl.github.io/flowblade/) - Video Editor
* [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
@@ -233,45 +127,40 @@
## ▷ 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/Vistaus/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
* [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://tenderowl.com/work/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.com/TheEvilSkeleton/Upscaler) - Image Upscaler * [Upscaler](https://gitlab.com/TheEvilSkeleton/Upscaler) - Image Upscaler
@@ -285,44 +174,41 @@
* 🌐 **[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
* ⭐ **[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 * ⭐ **[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
* ⭐ **[protondb](https://www.protondb.com/)**- Proton Compatibility Descriptions / [Steam Extension](https://github.com/Trsnaqe/protondb-community-extension) * ⭐ **[protondb](https://www.protondb.com/)** - Proton Compatibility Descriptions
* ⭐ **[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 * [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 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
@@ -332,62 +218,113 @@ 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 * [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
@@ -401,35 +338,31 @@ Linux Gaming Guide
* [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
* [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 * [YouTube-Viewer](https://github.com/trizen/youtube-viewer) - YouTube Linux Client / [Fork](https://github.com/trizen/pipe-viewer)
* [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), [Zrok](https://zrok.io/) or [Sharing](https://github.com/parvardegr/sharing) - File Sync Apps
***[Baobab](https://gitlab.gnome.org/GNOME/baobab)** - Disk Usage Analyzer ***[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
***[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), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers
* [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
@@ -441,12 +374,13 @@ 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)
* ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)** * ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
***[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 ***[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
***[Shell GPT](https://github.com/TheR1D/shell_gpt)**, [2](https://github.com/jiacai2050/shellgpt) - AI Terminal Chatbot / GPT ***[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
***[Shell GPT](https://github.com/TheR1D/shell_gpt)** - CLI AI
* [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
@@ -455,49 +389,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) or [dax](https://github.com/dsherret/dax) - Write Complex Scripts
* [Basher](https://www.basher.it/) - Bash Script Package Manager * [Basher](https://www.basher.it/) - Bash Script Package Manager
* [yakuake](https://apps.kde.org/yakuake/) - Terminal Emulator * [yakuake](https://apps.kde.org/yakuake/) - Terminal Emulator
* [XTerm](https://invisible-island.net/xterm/) - X Window System 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 * [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), [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
* [font-manager](https://github.com/FontManager/font-manager) - Font Manager * [font-manager](https://github.com/FontManager/font-manager) - Font Manager
@@ -513,60 +443,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/)** 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/) 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
@@ -575,9 +506,8 @@ 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
* [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
@@ -586,24 +516,23 @@ Linux Gaming Guide
* [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 * [Ü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/), [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
* [Unlocker](https://rentry.co/FMHYBase64#vmware) - VMware Unlocker
* [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
@@ -612,14 +541,14 @@ Linux Gaming Guide
* [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) - Dynamic Wallpaper Creator * [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
* [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
@@ -627,14 +556,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
@@ -663,7 +592,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/)
@@ -674,8 +602,6 @@ 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
*** ***
@@ -687,7 +613,6 @@ Linux Gaming Guide
* [SCNLOG](https://scnlog.me/) * [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/) / [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
* [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
@@ -697,9 +622,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
@@ -707,7 +632,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
@@ -717,7 +641,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

2472
STORAGE.md

File diff suppressed because it is too large Load Diff

View File

@@ -6,36 +6,38 @@
# ► Social Media Tools # ► Social Media Tools
* [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-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
* [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
* [SocialBlade](https://socialblade.com/) - Social Media Stats * [SocialBlade](https://socialblade.com/) - Social Media Stats
* [LiveCounts](https://livecounts.io/) - Live Social Media Stats * [LiveCounts](https://livecounts.io/) - Live Social Media Stats
* [ExportComments](https://exportcomments.com/) - Export Social Media Comments * [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
* [tumblr-utils](https://github.com/cebtenzzre/tumblr-utils) - Tumblr Utilities * [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 * [Tumblr Savior](https://bjornstar.com/tumblr-savior) - Tumblr Dashboard Filter
* [TumblrOriginalPostFinder](https://jetblackcode.com/TumblrOriginalPostFinder) - Tumblr Post Finder
* [Pillowfort](https://www.pillowfort.social/) or [Cohost](https://cohost.org/) - Tumblr Alternatives
*** ***
# ► 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)
@@ -46,14 +48,14 @@
* [Discord Templates](https://discordtemplates.me/) - Discord Server Templates * [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://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
@@ -70,18 +72,16 @@
* 🌐 **[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) / [Banned Plugins](https://rentry.co/BDBannedPlugins), [2](https://github.com/mov-ebx/BannedBetterDiscordPlugins) / [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
* [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
* [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client * [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client
* [Dorion](https://github.com/SpikeHD/Dorion) - Lightweight Discord Client * [Dorion](https://github.com/SpikeHD/Dorion) - Lightweight Discord 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)
@@ -89,13 +89,19 @@
## ▷ 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
* [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
* [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
@@ -104,38 +110,30 @@
* [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/FixEmbedBot) - Fix Embeds on Discord 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
*** ***
@@ -150,7 +148,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
@@ -172,26 +169,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
* **[UI Revert Script](https://greasyfork.org/en/scripts/490130)** - Restore Reddit 2023 UI * [Photon](https://photon-reddit.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.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
@@ -217,15 +214,14 @@
## ▷ 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
* [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
@@ -233,15 +229,14 @@
## ▷ 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), [Samac](https://samac.io/) 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
@@ -253,7 +248,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
@@ -266,9 +261,10 @@
# ► 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) - 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
* [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
@@ -278,18 +274,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/), [AyuGram](https://github.com/AyuGram/AyuGramDesktop) 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
@@ -297,24 +290,24 @@
## ▷ 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 * [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
@@ -328,7 +321,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)\
@@ -339,21 +332,26 @@
# ► 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
* [YouTube Subscription History](https://xxluke.de/subscription-history/) - Find when you subscribed to channels
* [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
@@ -362,65 +360,50 @@
* [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 * [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
* [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 * [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), [Quickvid](https://quickvid.vercel.app/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/) or [VideoHighlight](https://videohighlight.com/) - Summarize YouTube Videos * [Solidpoint](https://solidpoint.ai/), [Glasp](https://glasp.co/youtube-summary), [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
*** ***
## ▷ 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/)
@@ -429,61 +412,36 @@
## ▷ YouTube Frontends ## ▷ YouTube Frontends
* **[Poke](https://poketube.fun/)** - YouTube Frontend / [Discord](https://discord.gg/Kqdn8CHacP) * **[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/)** - YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube) * **[FreeTube](https://freetubeapp.io/)** - Privacy-Based YouTube Client / [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)
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend * [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
* [CloudTube](https://tube.cadence.moe/) - YouTube 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-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
***
## ▷ YouTube Players
* **[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)
* **[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
* [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
* [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)
* [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 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) or [GoodTube](https://github.com/goodtube4u/goodtube) - Minimalist YouTube * [YouTube Redux](https://github.com/omnidevZero/YouTubeRedux) or [Cosmic Cat](https://github.com/cosmic-cat-yt/Cosmic-Cat) - 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 * [/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
*** ***
@@ -491,16 +449,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
@@ -515,19 +472,17 @@
***[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) or [Twitch-Live](https://github.com/yungsamd17/Twitch-Live) - Twitch Stream Trackers
* [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/) or [TwitchArchive](https://twitcharchive.com/)- Twitch Video Archives * [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 * [vTwitch](https://vtwitch.com/) - Show Chat Below Player
* [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 * [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
* [Screenshot Twitch](https://github.com/eramdam/userscripts/blob/main/Screenshot%20Twitch.user.js) - Add Screenshot Button to Twitch
* [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
@@ -537,11 +492,9 @@
* [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 * [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 * [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Fix Twitch Aspect Ratio
* [Twitch Status](https://twitchstatus.com/) - Twitch Status Tracking
*** ***
@@ -552,7 +505,7 @@
* [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 * [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
@@ -563,12 +516,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 PRO](https://github.com/younesaassila/ttv-lol-pro)** - 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
*** ***
@@ -584,25 +537,23 @@
# ► Twitter Tools # ► Twitter Tools
***[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers ***[Trends24](https://trends24.in/)**, [Sotwe](https://www.sotwe.com/) 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
* [Tumbl Backup Guide](https://docs.google.com/document/d/1yBWlk-yEgpSoEh3c9oLhz_kbLtUGqbqzOpCtJsvQgjI/), [TumblThree](https://tumblthreeapp.github.io/TumblThree/) or [Thread Safe](https://github.com/dkaslovsky/thread-safe) - Twitter / Tumblr Backup Tools * [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
* [TwitterMediaHarvest](https://github.com/EltonChou/TwitterMediaHarvest) or [InThisTweet](https://inthistweet.app/) - Twitter Media Downloader * [TwitterMediaHarvest](https://github.com/EltonChou/TwitterMediaHarvest) - Twitter Media Downloader
* [GetVideoBot](https://twitsave.com/), [DownloadTwitterVideo](https://www.downloadtwittervideo.com/), [TwitterVid](https://twittervid.com/) or [sssTwitter](https://ssstwitter.com/) - Download Twitter Videos * [GetVideoBot](https://twitsave.com/), [DownloadTwitterVideo](https://www.downloadtwittervideo.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
* [Twitter Archive Parser](https://github.com/timhutton/twitter-archive-parser) or [twitter-web-exporter](https://github.com/prinsss/twitter-web-exporter) - Tweet Archivers * [Twitter Archive Parser](https://github.com/timhutton/twitter-archive-parser) - Tweet Archiving
* [Twayback Machine](https://staringispolite.github.io/twayback-machine/) - View Users' Old Tweets * [Twayback Machine](https://staringispolite.github.io/twayback-machine/) - View Users' Old Tweets
* [Scoutzen](https://www.scoutzen.com/twitter-lists/search) - Search Twitter Use Lists
* [Hoaxy](https://hoaxy.osome.iu.edu/) - Twitter Info Spread Data * [Hoaxy](https://hoaxy.osome.iu.edu/) - Twitter Info Spread Data
* [tinfoleak](https://tinfoleak.com/) - View Your Geosocial Footprint * [tinfoleak](https://tinfoleak.com/) - View Your Geosocial Footprint
* [Unfollow All](https://chromewebstore.google.com/detail/twitter-unfollow-all/mgehkbclkipppdjiemnhmnledicalkld) - Twitter Unfollower * [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 * [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 Detector](https://github.com/stilliard/Twitter-detector) - Detect Twitter Link on a Page
*** ***
@@ -612,13 +563,12 @@
***[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 * [Control Panel for Twitter](https://jbscript.dev/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
*** ***
@@ -627,17 +577,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
*** ***
@@ -649,93 +598,56 @@
* [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
*** ***
# ► 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/) 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
***
## ▷ 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
***[Pleroma](https://pleroma.social/)** - Federated Twitter Alt
***[Pixelfed](https://pixelfed.org/)** - Federated Twitter Alt
***[diaspora*](https://diasporafoundation.org/)**, [2](https://diasp.org/) - Federated Twitter Alt
* [Misskey](https://misskey-hub.net/en/) - Federated Twitter Alt
* [BlueSky](https://bsky.social/about) - Federated Twitter Alt / [Multi-Column](https://deck.blue/) / [Real-Time](https://skyfeed.app/)
* [Friendica](https://friendi.ca/) - Federated Twitter Alt
* [Hubzilla](https://zotlabs.org/page/hubzilla/hubzilla-project) - Federated Twitter Alt
* [GoToSocial](https://docs.gotosocial.org/en/latest/) - Federated Twitter Alt
* [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 Alt
* [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 ***[AnyChans](https://anychans.github.io/)** or [LuckyChan](https://luckychan.app/) - 4chan Web Clients
***[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) - Desktop Client
* [RedditChan](https://reddit-chan.vercel.app/) - Reddit Style 4chan Web Client * [RedditChan](https://reddit-chan.vercel.app/) - Reddit Style 4chan Web Client
@@ -745,9 +657,9 @@
* [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
@@ -771,12 +683,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,201 @@
*** ***
*** ***
**[◄◄ 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 upload without consequences 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://dvuzu.github.io/monkrus-search) / [How-to](https://rentry.co/adobesoftware) / [Block Adobe](https://rentry.co/psnfoandhostblock), [2](https://a.dove.isdumb.one/127.txt)
***[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 / [Avoid Software](https://pastebin.com/8AaMuz5u) * **[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) / [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) [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [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) * **[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
* [MagnetDL](https://www.magnetdl.com/), [2]( https://www.magnetdl.org/) - Video / Audio / Books / [Onion](http://r5cena7erxpnxomyvoybuxh6fkgs55qqdg7bobf6yjx4j6vmywrqvlid.onion/) * [Tixati](https://tixati.com/) - [Screenshot](https://i.ibb.co/tPfyPRQ/b0683ce2eb49.png)
* [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books * [Motrix](https://motrix.app/) - [Screenshot](https://i.ibb.co/SQqrdpW/2950c09df08a.png) / [GitHub](https://github.com/agalwood/Motrix)
* [IsoHunt](https://isohunts.to/) or [IsoHunt.nz](https://isohunt.nz/) - Video / Audio / Books * [WizTorrent](https://wiztorrent.com/) - [Screenshot](https://i.imgur.com/O3VbklP.jpg) / Torrent Player / WebShare
* [ExT](https://ext.to/), [2](https://search.extto.com/) - Video / Audio / Books * [Picotorrent](https://picotorrent.org/) - [Screenshot](https://i.ibb.co/Pz4qb8Q/df96c0ff3912.png)
* [ExtraTorrent](https://extratorrent.st/) - Video / Audio / Books / NSFW * [BiglyBT](https://www.biglybt.com/) - [Screenshot](https://i.ibb.co/5TRkt1t/bfe91a771679.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) * [LIII](https://codecpack.co/download/LIII-BitTorrent-Client.html) - [Screenshot](https://i.ibb.co/jRJR1cX/cecb8c47451d.png)
* [NNM-Club](https://nnmclub.to/) - Video / Audio / [Note](https://i.ibb.co/MPRttDC/6a35c3c79cde.png) * [PikaTorrent](https://www.pikatorrent.com/) - [Screenshot](https://ibb.co/zGyT1tc) / [GitHub](https://github.com/G-Ray/pikatorrent)
* [Torrentz2k](https://torrentz2k.xyz/) - Video / Audio / NSFW * [Distribyted](https://distribyted.com/) - [Screenshot](https://i.ibb.co/m8TQBPh/f5dfcb4b192f.png) / [GitHub](https://github.com/distribyted/distribyted)
* [Torrenting](https://www.torrenting.com/) - Video / Audio / Books / NSFW / Signup Required * [Crawfish](https://github.com/drakonkat/Crawfish) - [Screenshot](https://i.ibb.co/DVVVdpG/8406bc7e0a39.png)
* [Tigole](https://infogalactic.com/info/Tigole#Getting_Tigole_torrents) - Torrent Index * [GoSpeed](https://github.com/GopeedLab/gopeed) - [Screenshot](https://github.com/GopeedLab/gopeed/blob/main/_docs/img/ui-demo.png)
* [ZeroTorrent](http://127.0.0.1:43110/ZeroTorrent.bit/) - [ZeroNet Required](https://zeronet.io/) / Video / Audio * [Tribler](https://www.tribler.org/) - Tor-inspired Client / [Screenshot](https://i.ibb.co/k4jt0FJ/20d3bd279896.png) / [GitHub](https://github.com/Tribler/tribler)
* [4chan /t/](https://boards.4chan.org/t/) - Torrents / Imageboard / Some NSFW * [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
* [Instant.io](https://instant.io/) - Stream Torrents in Browser
## ▷ Aggregators * [BTorrent](https://btorrent.xyz/) - Stream Torrents in Browser
* [Magnet Player](https://ferrolho.github.io/magnet-player/) - 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. * [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)
* [flood](https://flood.js.org/) - rTorrent, Transmission & qBittorrent WebUI / [GitHub](https://github.com/jesec/flood)
***[BTDigg](https://btdig.com/index.htm)** - [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/), [2](https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion.ly/) / [i2p](http://btdigg.i2p/)
***[snowfl](https://snowfl.com/)** ***
***[Knaben](https://knaben.eu/)**
***[SolidTorrents](https://solidtorrents.to/)**, [2](https://solidtorrents.eu/) ## ▷ Remote Torrenting
***[Torrentz2](https://torrentz2.nz/)**
* [iDope](https://idope.se) * ↪️ **[Torrent to GDrive](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_torrent_to_gdrive)**
* [Bitsearch](https://bitsearch.to/) * **[Multi-Up](https://multiup.io/en/upload/from-torrent)** - Torrent to DDL Sites / [Bypass 10GB Limit](https://pastebin.com/0aPaPqN9)
* [Torrent Finder](https://torrent-finder.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
* [TorrentDownload](https://www.torrentdownload.info/) * **[webtor](https://webtor.io/)** - Torrent to Cloud and Stream / [Send Magnets](https://greasyfork.org/en/scripts/481975)
* [TorrentQuest](https://torrentquest.com/) * [Bitport](https://bitport.io/welcome) - Torrent to Cloud and Stream
* [DaMag](https://damag.net/) * [TorrentSafe](https://www.torrentsafe.com/) - Torrent to Cloud and Stream
* [Cleanbay](https://cleanbay.netlify.app/) * [TorrentCheap](https://my.torrentcheap.com/) - Torrent to Cloud and Stream
* [Torrends](https://torrends.to/) * [ZBIGZ](https://zbigz.com/) - Torrent to Cloud and Stream
* [CloudTorrents](https://cloudtorrents.com/) * [Loadbt](https://www.loadbt.com/) - Torrent to Cloud and Stream
* [BTMET](https://btmet.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 / Signup Required
## ▷ [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/)**, [2](https://solidtorrents.eu/)
* [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 * [TorrentProject](https://torrentproject.cc/), [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) or [BitMagnet](https://bitmagnet.io/) - Self-Hosted Torrent Search Engines
* [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
* [QBT Manager](https://github.com/Yash-Garg/qBittorrent-Manager) or [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 * [/r/trackersignups](https://www.reddit.com/r/trackersignups/), [/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
* 🌐 **[Private Trackers General](https://rentry.co/private-trackers)** or [Private Trackers Guide](https://wiki.installgentoo.com/wiki/Private_trackers) - Private Tracker Guides * [MyAnonaMouse](https://www.myanonamouse.net/) - Open Applications
* 🌐 **[Scene Related](https://opentrackers.org/links/warez-scene/#scenerelated)** - Warez / Scene Site Index * [hdvinnie](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/) - Open Tracker Invites
* **[The Sheet](https://inviteroute.github.io/sheet/)** or [Graph](https://inviteroute.github.io/graph/) - Private Tracker Guides * [Tracker Tracker](https://docs.google.com/spreadsheets/d/1zYZ2107xOZwQ37AjLTc5A4dUJl0ilg8oMrZyA0BGvc0/) - Open Tracker Invites
* **[TrackerStatus](https://trackerstatus.info/)** - Tracker Status Updates * [OpenSignups](https://t.me/trackersignup) - Open Signups Private Trackers / Telegram
* [TrackerChecker](https://github.com/NDDDDDDDDD/TrackerChecker) - Check if Private Trackers Open Signups * [Upload-Assistant](https://github.com/L4GSP1KE/Upload-Assistant) - Private Tracker Auto-Upload
* [/r/trackers](https://reddit.com/r/trackers) - Tracker Discussion * [Bemaniso](https://bemaniso.ws/) - Torrent Tracker
* [/r/OpenSignups](https://www.reddit.com/r/OpenSignups/) or [/r/OpenedSignups](https://www.reddit.com/r/OpenedSignups/) - Open Tracker Signup Subs * [TrackerScreenshot](https://github.com/KlevGG/TrackerScreenshot) - Auto Screenshot Tracker Stats
* [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
* [OpenSignups](https://t.me/trackersignup) - Open Signups Private Trackers / Telegram # ► Helpful Sites / Apps
* [Upload-Assistant](https://github.com/L4GSP1KE/Upload-Assistant) - Private Tracker Auto-Upload
* [TrackerScreenshot](https://github.com/KlevGG/TrackerScreenshot) - Auto Screenshot Tracker Stats * 🌐 **[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
* 🌐 **[Auto Torrent Tools List](https://redd.it/hbwnb2)** / [2](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps)
*** ***[PreDB.me](https://predb.me/)** / [PreDB.net](https://predb.de/), [M2V](https://m2v.ru/), [Milkie](https://milkie.cc/) / [Discord](https://discord.com/invite/E4khNy5dz3), [Xrel](https://www.xrel.to/) or [srrDB](https://www.srrdb.com/) - Scene Release Trackers
***[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
# ► Helpful Sites / Apps ***[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter
***[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country
* 🌐 **[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 * [WarezBot](https://github.com/enzobes/WarezBot) - Discord Scene Release Tracker
* 🌐 **[Auto Torrent Tools List](https://redd.it/hbwnb2)** / [2](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps) * [btcache](https://btcache.me/), [iTorrents](https://itorrents.org) or [Torrage](https://torrage.info/) - Torrent Storage Cache
* **[Milkie](https://milkie.cc)** / [Discord](https://discord.com/invite/E4khNy5dz3), [Scnlog](https://scnlog.me) or [PreDB.me](https://predb.me) - Scene Release Download * [InfoTorrent](https://infotorrent.tnl.one/) or [Webtorrent Checker](https://checker.openwebtorrent.com/) - Check Torrent File Health
* **[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 * [TorrentTags](https://torrenttags.com/) - Check Torrents for Copyright Claims
* **[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 * [MagLit](https://maglit.me/) - Magnet Link Shorteners
* **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter * [Magnet Link Generator](https://magnetlinkgenerator.com/) - Magnet Link Generator
* **[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country * [magnet2list](https://hutstep.github.io/magnet2list/) - Convert Magnets to Tracker Lists
* [WarezBot](https://github.com/enzobes/WarezBot) - Discord Scene Release Tracker * [RSSFeedz](https://t.me/rssfeedz) - Torrent RSS Feed
* [btcache](https://btcache.me/), [iTorrents](https://itorrents.org) or [Torrage](https://torrage.info/) - Torrent Storage Cache * [OpenWebTorrent](https://openwebtorrent.com/) - Free Webtorrent Tracker
* [InfoTorrent](https://infotorrent.tnl.one/) or [Webtorrent Checker](https://checker.openwebtorrent.com/) - Check Torrent File Health * [AutoDL-Irssi](https://autodl-community.github.io/autodl-irssi/) - IRC Channel Monitor / Autodownload / [Slack Notifications](https://gist.github.com/Igglybuff/00d5e91274a562ac724d358bbbc8bc7b)
* [TorrentTags](https://torrenttags.com/) - Check Torrents for Copyright Claims * [PrivTracker](https://privtracker.com/) - Private BitTorrent Tracker Generator / [GitHub](https://github.com/meehow/privtracker)
* [MagLit](https://maglit.me/) - Magnet Link Shorteners * [AnonSeed](https://www.anonseed.com/) - Anonymous Torrent Sharing
* [Magnet Link Generator](https://magnetlinkgenerator.com/) - Magnet Link Generator * [Torrent-Creator](https://github.com/Kimbatt/torrent-creator) - Browser Torrent Creator
* [magnet2list](https://hutstep.github.io/magnet2list/) - Convert Magnets to Tracker Lists * [Torrent Parts](https://torrent.parts/) or [Torrent File Editor](https://torrent-file-editor.github.io/) - Edit Torrents Files
* [RSSFeedz](https://t.me/rssfeedz) - Torrent RSS Feed * [/r/torrents](https://reddit.com/r/torrents) or [r/VPNTorrents](https://reddit.com/r/vpntorrents) - Torrenting Discussion
* [OpenWebTorrent](https://openwebtorrent.com/) - Free Webtorrent Tracker * [IKnowWhatYouDownload](https://iknowwhatyoudownload.com/) - View Torrents Downloaded by your IP (can be inaccurate)
* [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,16 +1,10 @@
**[Adblock Filter List](https://windowsaurora.github.io/FMHYFilterlist/site/index.html)** / [GitHub](https://github.com/WindowsAurora/FMHYFilterlist/)
^ Filter list with the sites listed below for adblockers.
*** ***
### Game Sites ### Game Sites
**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 +13,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 +23,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 +67,27 @@
* 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://redd.it/16xtm67) / [2](https://ibb.co/MhfGTWx)
### [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) ### [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.

View File

@@ -1,463 +1,467 @@
*** ***
*** ***
**[◄◄ 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
* [TinyVid](https://kamua.com/tinyvid), [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/)
* [VOE](https://voe.sx/) - Unlimited / 60 Days / 720p / Account Required * [vidyard](https://www.vidyard.com/)
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / 720p / Account Required * [supervideo](https://supervideo.tv/)
* [WolfStream](https://wolfstream.tv/) 30GB / 80 Days / Account Required * [ydb](https://youdboox.com/)
* [Vidoza](https://vidoza.net/) - 15GB / 15 Days / Account Required * [cloudvideo](https://cloudvideo.tv/)
* [Streamtape](https://streamtape.com/) - 15GB / Account Required / [.to](https://streamtape.to/) * [FileMoon](https://filemoon.sx/)
* [Streamable](https://streamable.com/) - 250MB / 2 Days (90 Days With Account) * [powvideo](https://powvideo.net/)
* [webmshare](https://webmshare.com/) - WebM & GIF Hosting / 20MB / Forever * [streamable](https://streamable.com/)
* [Videy](https://videy.co/) - MP4 only * [abyss](https://abyss.to/)
* [minv](https://sr.ht/~thecashewtrader/minv/) - Self-Hosted * [videy](https://videy.co/)
* [wolfstream](https://wolfstream.tv/)
*** * [vidcloud](https://vidcloud.co/)
* [vidoza](https://vidoza.net/)
## ▷ Screen Recording * [fileone](https://fileone.tv/)
* [uqload](https://uqload.co/)
* **[OBS](https://obsproject.com/)** * [media.cm](https://media.cm/)
* **[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 * [sendvid](https://sendvid.com/)
* [Shinobi](https://shinobi.video/) - Network Video Recorder * [WebMShare](https://webmshare.com/) - WebM Hosting
* [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 ***
* [FFmpeg](https://ffmpeg.org/)
* [Vileo](https://lukasbach.github.io/vileo/) ## ▷ Screen Recording
* [Shar.ec](https://shar.ec/)
* [Screen Recorder](https://github.com/akon47/ScreenRecorder) * **[OBS](https://obsproject.com/)**
* [ScreenREC](https://screen-rec.vercel.app/) * **[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
* [RecordScreen](https://recordscreen.io/) * [Shinobi](https://shinobi.video/) - Network Video Recorder
* [vokoscreenNG](https://github.com/vkohaupt/vokoscreenNG) * [MythTV](https://www.mythtv.org/) - Digital Video Recorder (DVR)
* [Fluent Screen Recorder](https://github.com/MarcAnt01/Fluent-Screen-Recorder) * [tldv](https://tldv.io/) or [ZoomRec](https://github.com/kastldratza/zoomrec) - Record Google Meets / Zoom Calls
* [Google Screen Recorder](https://toolbox.googleapps.com/apps/screen_recorder/) * [FFmpeg](https://ffmpeg.org/)
* [Vileo](https://lukasbach.github.io/vileo/)
*** * [Shar.ec](https://shar.ec/)
* [Screen Recorder](https://github.com/akon47/ScreenRecorder)
## ▷ Convert / Encode * [ScreenREC](https://screen-rec.vercel.app/)
* [RecordScreen](https://recordscreen.io/)
* **[HandBrake](https://handbrake.fr/)** - Video Encoding Software / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake) * [vokoscreenNG](https://github.com/vkohaupt/vokoscreenNG)
* **[FFmpeg](https://github.com/FFmpeg/FFmpeg)** or [Axiomui](https://axiomui.github.io/) - Tools to Process Multimedia * [Fluent Screen Recorder](https://github.com/MarcAnt01/Fluent-Screen-Recorder)
* **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/) / [AI Commands](https://github.com/gstrenge/llmpeg), [2](https://github.com/TejasQ/idli) * [Google Screen Recorder](https://toolbox.googleapps.com/apps/screen_recorder/)
***[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools
***[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 ***
***[Disc Rip](https://nullish.cat/blog/disc-rip)** - Disc Ripping Guide / [Mirror](https://rentry.org/disc-rip)
***[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** or [fs927](https://rentry.org/fs927) - Learn how to Remux Videos ## ▷ Convert / Encode
* [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 * **[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
* [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos * **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** or [fs927](https://rentry.org/fs927) - Learn how to Remux Videos
* [XMedia Recode](https://www.xmedia-recode.de/en/) - Video Conversion * **[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools
* [staxrip](https://github.com/staxrip/staxrip/) - Video Encoding * **[HandBrake](https://handbrake.fr/)** / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake)
* [IFME](https://github.com/Anime4000/IFME) - Video Encoding * **[FFmpeg](https://github.com/FFmpeg/FFmpeg)** or [Axiomui](https://axiomui.github.io/)
* [FastFlix](https://fastflix.org/) - Video Conversion / [GitHub](https://github.com/cdgriffith/FastFlix) * **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/)
* [NEAV1E](https://github.com/Alkl58/NotEnoughAV1Encodes), [Av1an](https://github.com/master-of-zen/Av1an) - AV1 Encoding * [Swivel](https://www.newgrounds.com/wiki/creator-resources/flash-resources/swivel) - SWF to Video Converter
* [Winnydows](https://winnydows.com/en/) - Video Conversion Software * [DDVT](https://forum.doom9.org/showthread.php?t=183479) - Dolby Vision RPU Demuxing / Injecting / Editing
* [sickbeard_mp4_automator](https://github.com/mdhiggins/sickbeard_mp4_automator) - Automate Video Processing * [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos
* [Video Express Converter](https://vc.germanov.dev/) - Online Video Conversion * [XMedia Recode](https://www.xmedia-recode.de/en/)
* [Seven Converter](https://converter.sevenbytes.com/) - Video Conversion / [GitHub](https://github.com/SevenbytesSoftware/SevenConverter) * [staxrip](https://github.com/staxrip/staxrip/) / [Guide](https://telegra.ph/HEVC-Encoding-with-StaxRip-Settings-for-best-compression-included-05-12 )
* [nmkoder](https://github.com/n00mkrad/nmkoder) - Media Encoding And Muxing * [FastFlix](https://fastflix.org/)
* [VideoConverter](https://videoconverter.com/) - Online Video Conversion * [NEAV1E](https://github.com/Alkl58/NotEnoughAV1Encodes)
* [selur](https://www.selur.de/) - Video Encoding * [Video2Edit](https://www.video2edit.com/)
* [vvenc](https://github.com/fraunhoferhhi/vvenc), [vvdec](https://github.com/fraunhoferhhi/vvdec), [VVCEasy](https://github.com/MartinEesmaa/VVCEasy) - VVC Encode / Decode * [Winnydows](https://winnydows.com/en/)
* [sickbeard_mp4_automator](https://github.com/mdhiggins/sickbeard_mp4_automator)
*** * [FastFlix](https://github.com/cdgriffith/FastFlix)
* [Video Express Converter](https://vc.germanov.dev/)
## ▷ Live Streaming * [Av1an](https://github.com/master-of-zen/Av1an)
* [Seven Converter](https://converter.sevenbytes.com/) / [GitHub](https://github.com/SevenbytesSoftware/SevenConverter)
* 🌐 **[Awesome Streaming](https://github.com/juancarlospaco/awesome-streaming-tools)** or [StreamerFreebies](https://streamerfreebies.com/) - Live Streaming Resources * [nmkoder](https://github.com/n00mkrad/nmkoder)
* 🌐 **[Best VTuber](https://gist.github.com/emilianavt/cbf4d6de6f7fb01a42d4cce922795794)**, [VTResources](https://vtresources.carrd.co/) or [VTuber References](https://docs.google.com/spreadsheets/d/15UpI8GEqv22T45AD3L1EgcPB4l2Tvr64aDgLq7xZfMA/htmlview) - VTuber Tool Indexes * [VideoConverter](https://videoconverter.com/)
* **[OBS](https://obsproject.com/)** - Live Stream Manager * [Boram](https://github.com/Kagami/boram/)
* **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) * [selur](https://www.selur.de/)
* [Stream Elements](https://streamelements.com/) - Streaming Service Manager * [vvenc](https://github.com/fraunhoferhhi/vvenc), [vvdec](https://github.com/fraunhoferhhi/vvdec), [VVCEasy](https://github.com/MartinEesmaa/VVCEasy) - VVC Encode / Decode
* [Streamlabs-OBS](https://github.com/stream-labs/desktop) - Live Stream Manager
* [SteamLabs](https://streamlabs.com/) - Live Stream Manager ***
* [Restream](https://restream.io/) - Live Stream Manager
* [Twitch Studio](https://www.twitch.tv/broadcast/studio) - Live Stream Manager ## ▷ Live Streaming
* [FBX](https://fbx.gg/) - Live Stream Manager
* [XSplit](https://www.xsplit.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
* [TwitchChat](https://twitchat.fr/) - Live Stream Manager / [Discord](https://discord.com/invite/fmqD2xUYvP) * 🌐 **[Best VTuber](https://gist.github.com/emilianavt/cbf4d6de6f7fb01a42d4cce922795794)** or [VTuber References](https://docs.google.com/spreadsheets/d/15UpI8GEqv22T45AD3L1EgcPB4l2Tvr64aDgLq7xZfMA/htmlview) - VTuber Tool Indexes
* [VDO Ninja](https://vdo.ninja/) - Live Stream Colab Tool * **[OBS](https://obsproject.com/)** - Live Stream Manager
* [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) / [Display Chat](https://github.com/MrBrax/twitch-vod-chat) - Live Stream Recorders * **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)
* [Owncast](https://owncast.online/), [Restreamer](https://github.com/datarhei/restreamer) or [OpenStreamingPlatform](https://openstreamingplatform.com/) - Self-Hosted Live Streaming * [Stream Elements](https://streamelements.com/) - Streaming Service Manager
* [WDFlat](https://www.wdflat.com/) - Stream Elements * [Streamlabs-OBS](https://github.com/stream-labs/desktop) - Live Stream Manager
* [Strem](https://github.com/strem-app/strem) - Stream Automation * [SteamLabs](https://streamlabs.com/) - Live Stream Manager
* [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 * [Restream](https://restream.io/) - Live Stream Manager
* [Songify](https://songify.overcode.tv/) - Current Playing Song App * [Twitch Studio](https://www.twitch.tv/broadcast/studio) - Live Stream Manager
* [StreamPi](https://stream-pi.com/) or [ODeck](https://github.com/willianrod/ODeck) - ElGato Streamdeck Alternatives * [FBX](https://fbx.gg/) - Live Stream Manager
* [VTuber Kit](https://kyuppin.itch.io/vtuber-kit), [Inochi2D](https://inochi2d.com/) / [Discord](https://discord.com/invite/abnxwN6r9v) or [Vtube Studio](https://denchisoft.com/) - VTuber Apps * [XSplit](https://www.xsplit.com/) - Live Stream Manager
* [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 * [TwitchChat](https://twitchat.fr/) - Live Stream Manager
* [avatarify-python](https://github.com/alievk/avatarify-python) or [veadotube](https://olmewe.itch.io/veadotube-mini) - Video Call Avatars * [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) / [Display Chat](https://github.com/MrBrax/twitch-vod-chat) - Live Stream Recorders
* [VTuberized Logos](https://vtuber-style-logos.vercel.app/) - VTuber Style Logos * [Owncast](https://owncast.online/) or [OpenStreamingPlatform](https://openstreamingplatform.com/) - Self-Hosted Live Streaming
* [real-url](https://github.com/wbt5/real-url) - Copy Live Stream URLs * [WDFlat](https://www.wdflat.com/) - Stream Elements
* [Chat-Downloader](https://github.com/xenova/chat-downloader) - Retrieve Chat Messages from Livestreams * [Strem](https://github.com/strem-app/strem) - Stream Automation
* [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
# ► Video Players * [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
* [avatarify-python](https://github.com/alievk/avatarify-python) or [veadotube](https://olmewe.itch.io/veadotube-mini) - Video Call Avatars
* 🌐 **[Awesome Video](https://github.com/krzemienski/awesome-video)** - Video Streaming Resources * [real-url](https://github.com/wbt5/real-url) - Copy Live Stream URLs
* 🌐 **[Video Help](https://www.videohelp.com/software/sections/video-players?orderby=Rating)** - Video Player Index * [Chat-Downloader](https://github.com/xenova/chat-downloader) - Retrieve Chat Messages from Livestreams
***[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
***[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) ***
***[VLC](https://www.videolan.org/)** - Video Player
***[Screenbox](https://github.com/huynhsontung/Screenbox)** - Video Player # ► Video Players
* [Video Player Codecs](https://www.codecguide.com/)
* [AVPlayer](http://www.awesomevideoplayer.com/) or [GridPlayer](https://github.com/vzhd1701/gridplayer) - Multi-Video Players * 🌐 **[Awesome Video](https://github.com/krzemienski/awesome-video)** - Video Streaming Resources
* [SPlayer](https://www.splayer.org/) - Video Player w/ Smart Translation * 🌐 **[Video Help](https://www.videohelp.com/software/sections/video-players?orderby=Rating)** - Video Player Index
* [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) * **[MPC-HC](https://github.com/clsid2/mpc-hc/)** or [MPC-BE](https://sourceforge.net/projects/mpcbe/) - Video Player
* [ImPlay](https://github.com/tsl0922/ImPlay) - Video Player * **[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)
* [SMPlayer](https://www.smplayer.info/) / [2](https://sourceforge.net/projects/smplayer/) - Video Player / [YouTube](https://www.smtube.org/) * **[VLC](https://www.videolan.org/)** - Video Player
* [uView](https://www.idruf.com/) - Video Player * **[Screenbox](https://github.com/huynhsontung/Screenbox)** - Video Player
* [Rise Media Player](https://github.com/Rise-Software/Rise-Media-Player) - Video Player * [Video Player Codecs](https://www.codecguide.com/)
* [Flyleaf](https://github.com/SuRGeoNix/Flyleaf) - Video Player * [AVPlayer](http://www.awesomevideoplayer.com/) or [GridPlayer](https://github.com/vzhd1701/gridplayer) - Multi-Video Players
* [MoonPlayer](https://github.com/coslyk/moonplayer) - Video Player * [SPlayer](https://www.splayer.org/) - Video Player w/ Smart Translation
* [KikoPlay](https://kikoplay.fun/) - Video Player * [Pot Player](https://potplayer.daum.net/) - Video Player
* [Plyr](https://plyr.io/) - Online HTML5, YouTube and Vimeo Player / [GitHub](https://github.com/sampotts/plyr) * [ImPlay](https://github.com/tsl0922/ImPlay) - Video Player
* [PiP-Tool](https://github.com/LionelJouin/PiP-Tool) - Use Picture-in-Picture on All Videos * [SMPlayer](https://www.smplayer.info/) / [2](https://sourceforge.net/projects/smplayer/) - Video Player / [YouTube](https://www.smtube.org/)
* [PlayVideo](https://playvideos.pages.dev/) - GDrive Video Players * [uView](https://www.idruf.com/) - Video Player
* [MotionMonkey](https://omega.gg/MotionMonkey/) - Stream Online Videos in Player * [Rise Media Player](https://github.com/Rise-Software/Rise-Media-Player) - Video Player
* [StreamLink](https://streamlink.github.io/) - Extract Videos from Sites to Players / [Twitch Adblock](https://github.com/2bc4/streamlink-ttvlol) * [Flyleaf](https://github.com/SuRGeoNix/Flyleaf) - Video Player
* [Hohoema](https://github.com/tor4kichi/Hohoema) - Nico Nico Video Player * [KikoPlay](https://kikoplay.fun/) - Video Player
* [polsy.org.uk](https://polsy.org.uk/) - Alt Players for Video Sites * [HTML5 video player enhanced script](https://greasyfork.org/en/scripts/381682-html5)
* [Plyr](https://plyr.io/) - Online HTML5, YouTube and Vimeo Player / [GitHub](https://github.com/sampotts/plyr)
*** * [PiP-Tool](https://github.com/LionelJouin/PiP-Tool) - Use Picture-in-Picture on All Videos
* [PlayVideo](https://playvideos.pages.dev/) - GDrive Video Players
## ▷ Stream Sync * [MotionMonkey](https://omega.gg/MotionMonkey/) - Stream Online Videos in Player
* [StreamLink](https://streamlink.github.io/) - Extract Videos from Sites to Players / [Twitch Adblock](https://github.com/2bc4/streamlink-ttvlol)
* **[SyncPlay](https://syncplay.pl/)** * [Hohoema](https://github.com/tor4kichi/Hohoema) - Nico Nico Video Player
* **[Watch2Gether](https://w2g.tv/)** * [polsy.org.uk](https://polsy.org.uk/) - Alt Players for Video Sites
***[SyncWatch](https://github.com/Semro/syncwatch)**
***[Kosmi](https://kosmi.io/)** ***
***[neko](https://neko.m1k1o.net/)** / [GitHub](https://github.com/m1k1o/neko)
* [HyperBeam](https://hyperbeam.com/) / [VIP](https://greasyfork.org/en/scripts/457795) ## ▷ Stream Sync
* [Trast](https://trast.live/)
* [bear.cat](https://bear.cat/) * **[SyncPlay](https://syncplay.pl/)**
* [Metastream](https://getmetastream.com/) * **[Watch2Gether](https://w2g.tv/)**
* [Caracal Club](https://caracal.club/) * **[SyncWatch](https://github.com/Semro/syncwatch)**
* [CyTube](https://cytu.be/) * **[Kosmi](https://kosmi.io/)**
* [VideoTogether](https://2gether.video/en-us/) * **[neko](https://neko.m1k1o.net/)** / [GitHub](https://github.com/m1k1o/neko)
* [PotatoLand](https://potato.land/) * [HyperBeam](https://hyperbeam.com/) / [VIP](https://greasyfork.org/en/scripts/457795)
* [baked.live](https://baked.live/) * [Trast](https://trast.live/)
* [Rave.io](https://rave.io/) * [bear.cat](https://bear.cat/)
* [twoseven](https://twoseven.xyz/) * [Metastream](https://getmetastream.com/)
* [WatchPubs](https://watchpubs.com/) * [Caracal Club](https://caracal.club/)
* [MovieNight](https://github.com/zorchenhimer/MovieNight) / [Discord](https://discord.gg/F2VSgjJ) * [CyTube](https://cytu.be/)
* [WatchParty](https://www.watchparty.me/) * [VideoTogether](https://2gether.video/en-us/)
* [Kast](https://kast.gg/) * [baked.live](https://baked.live/)
* [Screen Share Party](https://ba.net/screen/) * [Rave.io](https://rave.io/)
* [TurtleTV](https://turtletv.app/) * [twoseven](https://twoseven.xyz/)
* [OpenTogetherTube](https://opentogethertube.com/) * [WatchPubs](https://watchpubs.com/)
* [MovieNight](https://github.com/zorchenhimer/MovieNight)
*** * [WatchParty](https://www.watchparty.me/)
* [Kast](https://kast.gg/)
## ▷ MPV Tools * [Surge](https://surge.live/)
* [Screen Share Party](https://ba.net/screen/)
* ↪️ **[MPV Shaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_mpv_shaders)** - * [TurtleTV](https://turtletv.app/)
* [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) * [OpenTogetherTube](https://opentogethertube.com/)
* [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 ## ▷ MPV 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 * [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)
* [Play With MPV](https://greasyfork.org/en/scripts/416271) or [ff2mpv](https://github.com/woodruffw/ff2mpv) - Open Videos with MPV * [MPV Frontends](https://github.com/mpv-player/mpv/wiki/Applications-using-mpv)
* [MPV WebTorrent Hook](https://github.com/noctuid/mpv-webtorrent-hook) - Torrent Streamimg * [ModernX](https://github.com/cyl0/ModernX), [tethys](https://github.com/Zren/mpv-osc-tethys) or [uosc](https://github.com/tomasklaen/uosc) - Alt User Interfaces
* [AutoSubSync MPV](https://github.com/joaquintorres/autosubsync-mpv) - Sub Sync * [Simple MPV WebUI](https://github.com/open-dynaMIX/simple-mpv-webui) - WebUI Controller
* [MPV SponsorBlock](https://github.com/po5/mpv_sponsorblock), [2](https://codeberg.org/jouni/mpv_sponsorblock_minimal) - SponsorBlock for MPV * [MPV Context Menu](https://gitlab.com/carmanaught/mpvcontextmenu)
* [ThumbFast](https://github.com/po5/thumbfast) - MPV Thumbnails * [MPV Scripts](https://github.com/mpv-player/mpv/wiki/User-Scripts) - Userscripts
* [MPlug](https://github.com/Nudin/mplug) - Plugin Manager
*** * [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
## ▷ VLC Tools * [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
* 🌐 **[Awesome VLC](https://github.com/mfkl/awesome-vlc)** - VLC Resources * [AutoSubSync MPV](https://github.com/joaquintorres/autosubsync-mpv) - Sub Sync
* [VLSub](https://github.com/exebetche/vlsub) - Sub Downloader * [MPV SponsorBlock](https://github.com/po5/mpv_sponsorblock), [2](https://codeberg.org/jouni/mpv_sponsorblock_minimal) - SponsorBlock for MPV
* [VLC Skin](https://rentry.co/VLC-skin) - VLC Skins * [ThumbFast](https://github.com/po5/thumbfast) - MPV Thumbnails
* [VLC Slow Seek Fix](https://redd.it/os6f1q) * [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
*** ***
# ► Media Servers ## ▷ VLC Tools
* 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)** * 🌐 **[Awesome VLC](https://github.com/mfkl/awesome-vlc)** - VLC Resources
* **[Plex](https://www.plex.tv/)** - Media Server * [VLSub](https://github.com/exebetche/vlsub) - Sub Downloader
* **[Jellyfin](https://jellyfin.org/)** - Media Server * [VLC Skin](https://rentry.co/VLC-skin) - VLC Skins
* **[Kodi](https://kodi.tv/)** - Media Server * [VLC Slow Seek Fix](https://redd.it/os6f1q)
* [TRaSH Guides](https://trash-guides.info/) / [Discord](https://discord.com/invite/4K2kdvwzFh) or [The Complete Guide](https://redd.it/pqsomd) - Server Setup Guides
* [Self-hosted Anime](https://github.com/shyonae/selfhosted-anime/wiki) - Anime Server Setup Guides ***
* [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [/r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
* [Organizr](https://github.com/causefx/Organizr), [Reiverr](https://github.com/aleksilassila/reiverr) or [Homarr](https://github.com/ajnart/homarr) - Media Server Managers # ► Media Servers
* [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation * 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)**
* [Emby](https://emby.media/) - Media Server * **[Plex](https://www.plex.tv/)** - Media Server
* [Universal Media Server](https://www.universalmediaserver.com/) - Media Server * **[Jellyfin](https://jellyfin.org/)** - Media Server
* [OSMC](https://osmc.tv/) - 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
* [Kawaii-Player](https://github.com/kanishka-linux/kawaii-player) - Media Server * [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [/r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
* [Streama](https://github.com/streamaserver/streama) - Media Server * [Organizr](https://github.com/causefx/Organizr), [Reiverr](https://github.com/aleksilassila/reiverr) or [Homarr](https://github.com/ajnart/homarr) - Media Server Managers
* [Gerbera](https://gerbera.io/) - Media Server * [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation
* [Homehost](https://github.com/ridhwaans/homehost) - Media Server * [Kodi](https://kodi.tv/) - Media Server
* [Dim](https://github.com/Dusk-Labs/dim) - Media Server * [Emby](https://emby.media/) - Media Server
* [Kyoo](https://github.com/zoriya/Kyoo) - Media Server * [Universal Media Server](https://www.universalmediaserver.com/) - Media Server
* [WatchIt](https://github.com/ZorrillosDev/watchit-app) - Media Server * [OSMC](https://osmc.tv/) - Media Server
* [SimpleDLNA](https://nmaier.github.io/simpleDLNA/) - Media Server * [Kawaii-Player](https://github.com/kanishka-linux/kawaii-player) - Media Server
* [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server * [Streama](https://github.com/streamaserver/streama) - Media Server
* [SeaAnime](https://seanime.rahim.app/) - Anime Server * [Gerbera](https://gerbera.io/) - Media Server
* [Frames](https://github.com/Eleven-am/frames) - GDrive Server * [Homehost](https://github.com/ridhwaans/homehost) - Media Server
* [MSX](https://msx.benzac.de/info/) - Web App * [Dim](https://github.com/Dusk-Labs/dim) - Media Server
* [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Live Channel Media Servers * [WatchIt](https://github.com/ZorrillosDev/watchit-app) - Media Server
* [YTDL-Sub](https://ytdl-sub.readthedocs.io/) - Add YouTube Channels to Media Servers * [SimpleDLNA](https://nmaier.github.io/simpleDLNA/) - Media Server
* [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy * [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server
* [Autoscan](https://github.com/Cloudbox/autoscan) - Real-Time Plex & Emby File Changes * [Frames](https://github.com/Eleven-am/frames) - GDrive Server
* [Ombi](https://github.com/Ombi-app/Ombi) - Plex / Emby User Request Management * [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Live Channel Media Servers
* [YTDL-Sub](https://github.com/jmbannon/ytdl-sub) - Add YouTube Channels to Media Servers
*** * [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy
* [Autoscan](https://github.com/Cloudbox/autoscan) - Real-Time Plex & Emby File Changes
## ▷ Plex Tools * [Ombi](https://github.com/Ombi-app/Ombi) - Plex / Emby User Request Management
* [Plxplainers](https://www.plxplainers.xyz/) or [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides ***
* [Tautulli](https://tautulli.com/) - Server Monitor
* [SuperPlex](https://normantheidiot.neocities.org/superplex/) - Plex Plugins ## ▷ Plex Tools
* [Kitana](https://github.com/pannal/Kitana) - Plugin Frontend
* [PlexDrive](https://github.com/plexdrive/plexdrive) or [mergerfs](https://docs.ultra.cc/books/rclone/page/rclone-vfs-and-mergerfs-setup) - Mount GDrive * [Plxplainers](https://www.plxplainers.xyz/), [Hoarding.me](https://hoarding.me/) or [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides
* [SyncLounce](https://synclounge.tv/) - Media Sync * [Tautulli](https://tautulli.com/) - Server Monitor
* [PseudoTV](https://github.com/DEFENDORe/pseudotv) - Create TV Channels * [Free Plex Server](https://discord.gg/8Jv792Rs7m)
* [Overseerr](https://overseerr.dev/) - User Requests / [IMDb Extension](https://chromewebstore.google.com/detail/overseerr-assistant/hopnjiadheaagfhpipecoamoegijhnij) * [SuperPlex](https://normantheidiot.neocities.org/superplex/) - Plex Plugins
* [Pasta Tool](https://www.pastatool.com/) - Audio / Sub Changer * [Kitana](https://github.com/pannal/Kitana) - Plugin Frontend
* [Plex Debrid](https://github.com/itsToggle/plex_debrid) - Debrid for Plex * [PlexDrive](https://github.com/plexdrive/plexdrive) or [mergerfs](https://docs.ultra.cc/books/rclone/page/rclone-vfs-and-mergerfs-setup) - Mount GDrive
* [SyncLounce](https://synclounge.tv/) - Media Sync
*** * [PseudoTV](https://github.com/DEFENDORe/pseudotv) - Create TV Channels
* [Overseerr](https://overseerr.dev/) - User Requests
## ▷ Jellyfin Tools * [Pasta Tool](https://www.pastatool.com/) - Audio / Sub Changer
* [Plex Debrid](https://github.com/itsToggle/plex_debrid) - Debrid for Plex
* 🌐 **[Awesome Jellyfin](https://github.com/awesome-jellyfin/awesome-jellyfin)** - Jellyfin Resources
***[Blink](https://github.com/prayag17/Blink)** or [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Clients ***
* [/r/JellyfinShare](https://www.reddit.com/r/JellyfinShare/) - Jellyfin Server Sharing
* [Jellyfin Forum](https://forum.jellyfin.org/) - Official Jellyfin Forum ## ▷ Jellyfin Tools
* [Jellyfin Vue](https://github.com/jellyfin/jellyfin-vue) - Jellyfin Web Client
* [Jellyfin Setup Guide](https://www.fuzzygrim.com/posts/media-server) * **[JellyPlayer](https://github.com/prayag17/JellyPlayer)** or [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Clients
* [Jellyfin Customization Guide](https://youtu.be/F85qMyBeiDI) * [Jellyfin Setup Guide](https://www.fuzzygrim.com/posts/media-server)
* [Jellyfin Themes](https://jellyfin.org/docs/general/clients/css-customization/#community-themes) * [Jellyfin Customization Guide](https://youtu.be/F85qMyBeiDI)
* [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) - User Requests * [Jellyfin Themes](https://jellyfin.org/docs/general/clients/css-customization.html##community-themes)
* [jellyfin-plugin-anime](https://github.com/jellyfin-archive/jellyfin-plugin-anime) - Anime Plugin * [/r/JellyfinShares](https://www.reddit.com/r/JellyfinShares/) - Server Sharing
* [Jellyfin RPC](https://github.com/Radiicall/jellyfin-rpc) - Jellyfin Discord Rich Presence * [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) - User Requests
* [jellyfin-plugin-anime](https://github.com/jellyfin-archive/jellyfin-plugin-anime) - Anime Plugin
***
***
## ▷ Kodi Tools
## ▷ Kodi Tools
* [EverythingKodi](https://rumble.com/c/EverythingKodi) - Kodi Addon Tutorials
* [Kodi Builds Chart](https://kodiapps.com/builds-chart) * [Kodi Setup Guide](https://redd.it/zzfdtb)
* [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons * [EverythingKodi](https://rumble.com/c/EverythingKodi) - Kodi Addon Tutorials
* [Plex For Kodi](https://github.com/plexinc/plex-for-kodi) or [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) - Plex Connect * [Kodi Builds Chart](https://kodiapps.com/builds-chart)
* [quasar](https://quasar.surge.sh/) - Torrent Plugin * [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons
* [IPTV Client](https://kodi.wiki/view/Add-on:PVR_IPTV_Simple_Client) * [Plex For Kodi](https://github.com/plexinc/plex-for-kodi) or [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) - Plex Connect
* [Simkl](https://simkl.com/) - Media Tracker * [quasar](https://quasar.surge.sh/) - Torrent Plugin
* [Elementum](https://elementum.surge.sh/) - Trakt Sync * [IPTV Client](https://kodi.wiki/view/Add-on:PVR_IPTV_Simple_Client)
* [mediaelch](https://github.com/komet/mediaelch) - Media Manager * [Simkl](https://simkl.com/) - Media Tracker
* [Elementum](https://elementum.surge.sh/) - Trakt Sync
*** * [mediaelch](https://github.com/komet/mediaelch) - Media Manager
# ► Video Download ***
* ↪️ **[YouTube Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)** # ► Video Download
* ↪️ **[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 * ↪️ **[YouTube Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)**
* **[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) * ↪️ **[Twitch Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_downloaders)**
***[cobalt](https://cobalt.tools/)** - Multi-Site / Online ***[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
***[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.online/) or [3](https://9xbuddy.in/) - Multi-Site / Online ***[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)
***[Lux](https://github.com/iawia002/lux)** - Multi-Site / CLI ***[cobalt](https://cobalt.tools/)** - Multi-Site
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media * **[9xbuddy](https://9xbuddy.xyz/)**, [2](https://9xbuddy.com/) - Multi-Site
* [CD(R)M-Project](https://discord.gg/SYyvPxVyyW) - StreamFab Downloading Discord * **[Lux](https://github.com/iawia002/lux)** - Multi-Site
* [TubeOffline](https://www.tubeoffline.com/) - Multi-Site / Online * [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/)
* [VideoFK](https://www.videofk.com/) - Multi-Site / Online * [CD(R)M-Project](https://discord.gg/SYyvPxVyyW) - StreamFab Crack
* [SASRIP](https://sasrip.sas41.com/) - Multi-Site / Online * [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site
* [you-get](https://you-get.org/) - Multi-Site / CLI * [ytDownloader](https://ytdn.netlify.app/) - Multi-Site
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site / Software * [TubeOffline](https://www.tubeoffline.com/) - Multi-Site
* [Yout](https://yout.com/) - Multi-Site / Online * [VideoFK](https://www.videofk.com/) - Multi-Site
* [pastedownload](https://pastedownload.com/) - Multi-Site / Online * [you-get](https://you-get.org/) - Multi-Site
* [weibomiaopai](https://weibomiaopai.com/download-video-parser.php) - Multi-Site / Online * [Yout](https://yout.com/) - Multi-Site - Multi-Site
* [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site / Software / [Discord](https://discord.gg/uFNUXvFFmg) * [pastedownload](https://pastedownload.com/)
* [webvideo-downloader](https://github.com/jaysonlong/webvideo-downloader) - Multi-Site / CLI * [weibomiaopai](https://weibomiaopai.com/download-video-parser.php) - Multi-Site
* [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 * [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site
* [Threads Downloader](https://threadsdownloader.com/) - Threads * [webvideo-downloader](https://github.com/jaysonlong/webvideo-downloader) - Multi-Site
* [urlescraper](https://github.com/Tomeriko96/urlescraper) - Urlebird * [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 / Online * [DMVideo](https://dmvideo.download/) - DailyMotion
* [PinCase](https://pincase.xyz/) - Pinterest / Online * [PinCase](https://pincase.xyz/) - Pinterest
* [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 * [kmttg](https://www.videohelp.com/software/kmttg) - TivoToGo Download Manager
* [GetWVKeys](https://getwvkeys.cc/) - Send Widevine Requests / [GitHub](https://github.com/GetWVKeys/) * [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/)
***
***
# ► Video Editing
# ► Video Editing
* 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)** - AI Video Tools Index
* 🌐 **[Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers)** or [Free-Codecs](https://www.free-codecs.com/) - Video Editing Codecs * 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)** - AI Video Tools Index
* **[Eyecandy](https://eycndy.co/)** - Visual Technique Examples * 🌐 **[Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers)** or [Free-Codecs](https://www.free-codecs.com/) - Video Editing Codecs
* [MotionFactory](https://www.motionfactory.io/) - Video Editing Workflow Manager * **[EyeCndy](https://eycndy.co/)** - Visual Technique Examples
* [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums * [MotionFactory](https://www.motionfactory.io/) - Video Editing Workflow Manager
* [Blaine's Movie Maker Blog](https://movies.blainesville.com/p/wmm-60-on-windows-7.html) - Windows Movie Maker Tutorials * [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums
* [Blaine's Movie Maker Blog](https://movies.blainesville.com/p/wmm-60-on-windows-7.html) - Windows Movie Maker Tutorials
***
***
## ▷ Video Editors
## ▷ Video Editors
***[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor
***[Shotcut](https://shotcut.org/)** - Video Editor ***[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor
* [Auto-Editor](https://auto-editor.com/) - CLI Editor * **[Shotcut](https://shotcut.org/)** - Video Editor
* [MoviePy](https://zulko.github.io/moviepy/) - Python Editor * [Auto-Editor](https://auto-editor.com/) - CLI Editor
* [Webm Generator](https://github.com/dfaker/WebmGenerator) - Webm Editor * [MoviePy](https://zulko.github.io/moviepy/) - Python Editor
* [avisynth](http://avisynth.nl/index.php/Main_Page) or [VapourSynth](https://www.vapoursynth.com/) - Video Processors * [Webm Generator](https://github.com/dfaker/WebmGenerator) - Webm Editor
* [Source Filmmaker](https://store.steampowered.com/app/1840/Source_Filmmaker/) - Steam Movie-Making Tool / [Resources](https://sfmlab.com/) * [avisynth](http://avisynth.nl/index.php/Main_Page) - Video Processor
* [OpenRV](https://github.com/AcademySoftwareFoundation/OpenRV) or [xSTUDIO](https://www.dneg.com/xstudio/) - Image / Sequence Playback Review * [Source Filmmaker](https://store.steampowered.com/app/1840/Source_Filmmaker/) - Steam Movie-Making Tool / [Resources](https://sfmlab.com/)
* [Remotion](https://www.remotion.dev/) - Video Editor * [OpenRV](https://github.com/AcademySoftwareFoundation/OpenRV) or [xSTUDIO](https://www.dneg.com/xstudio/) - Image / Sequence Playback Review
* [Olive](https://www.olivevideoeditor.org/) - Video Editor * [Remotion](https://www.remotion.dev/) - Video Editor
* [VirtualDub2](https://sourceforge.net/projects/vdfiltermod/) - Video Editor * [Olive](https://www.olivevideoeditor.org/) - Video Editor
* [LosslessCut](https://github.com/mifi/lossless-cut) - Video Editor * [VirtualDub2](https://sourceforge.net/projects/vdfiltermod/) - Video Editor
* [EZVid](https://www.ezvid.com/) - Video Editor * [LosslessCut](https://github.com/mifi/lossless-cut) - Video Editor
* [OpenShot](https://www.openshot.org/) - Video Editor * [EZVid](https://www.ezvid.com/) - Video Editor
* [kdenlive](https://kdenlive.org/en/) - Video Editor * [OpenShot](https://www.openshot.org/) - Video Editor
* [Lightworks](https://lwks.com/) - Video Editor * [kdenlive](https://kdenlive.org/en/) - Video Editor
* [VSDC](https://www.videosoftdev.com/) - Video Editor * [Lightworks](https://lwks.com/) - Video Editor
* [avidemux](https://avidemux.sourceforge.net/) - Video Editor * [VSDC](https://www.videosoftdev.com/) - Video Editor
* [Pitivi](https://www.pitivi.org/) - Video Editor * [avidemux](https://avidemux.sourceforge.net/) - Video Editor
* [Visla](https://www.visla.us/) - Video Editor * [Pitivi](https://www.pitivi.org/) - Video Editor
* [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 * [Visla](https://www.visla.us/) - Video Editor
* [Video Enhance AI](https://www.topazlabs.com/topaz-video-ai) - Video Enhancement Tool * [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
* [Gyroflow](https://gyroflow.xyz/) - Video Stabilization / [GitHub](https://github.com/gyroflow/gyroflow) * [Video Enhance AI](https://www.topazlabs.com/topaz-video-ai) - Video Enhancement Tool
* [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 * [Gyroflow](https://gyroflow.xyz/) - Video Stabilization / [GitHub](https://github.com/gyroflow/gyroflow)
* [VideoColorizerColab](https://colab.research.google.com/github/jantic/DeOldify/blob/master/VideoColorizerColab.ipynb) - Video Colorization Colab * [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
* [OpenColorIO](https://opencolorio.org/) - Video Color Manager * [VideoColorizerColab](https://colab.research.google.com/github/jantic/DeOldify/blob/master/VideoColorizerColab.ipynb) - Video Colorization Colab
* [FreshLUTs](https://freshluts.com/) - Free LUTs (Color Filters) * [OpenColorIO](https://opencolorio.org/) - Video Color Manager
* [Avidemux](http://fixounet.free.fr/avidemux/) - Cut / Filter / Encode * [FreshLUTs](https://freshluts.com/) - Free LUTs (Color Filters)
* [suckless-cut](https://github.com/couleur-tweak-tips/suckless-cut) or [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos * [Avidemux](http://fixounet.free.fr/avidemux/) - Cut / Filter / Encode
* [Opus](https://www.opus.pro/) - Clip Creator * [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos
* [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) * [Opus](https://www.opus.pro/) - Clip Creator
* [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting * [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)
* [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools * [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM * [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM
***
***
## ▷ Online Editors
## ▷ Online Editors
***[Mastershot](https://mastershot.app/)**
* [VideoInu](https://videoinu.com/) * **[Mastershot](https://mastershot.app/)**
* [Clideo](https://clideo.com/) * [VideoInu](https://videoinu.com/)
* [Kapwing](https://www.kapwing.com/) * [Clideo](https://clideo.com/)
* [Panzoid](https://panzoid.com/) * [Kapwing](https://www.kapwing.com/)
* [Convert2Video](https://convert2video.com/) * [InVideo](https://invideo.io/)
* [Omniclip](https://omniclip.app/) - [GitHub](https://github.com/aegir-assembly/omni-clip) * [Panzoid](https://panzoid.com/)
* [Video Cutter](https://video-cutter-js.com/) * [KeepChangeIt](https://keepchangeit.com/)
* [Vididoo](https://vididoo.vercel.app/) * [veed.io](https://www.veed.io/tools/video-editor)
* [VideoToolbox](https://www.videotoolbox.com/) * [Convert2Video](https://convert2video.com/)
* [VideoCandy](https://videocandy.com/) * [Video Cutter](https://video-cutter-js.com/)
* [vidmix](https://vidmix.app/) * [FlexClip](https://www.flexclip.com/)
* [mebm](https://bwasti.github.io/mebm/) * [Vididoo](https://vididoo.vercel.app/)
* [Video2Edit](https://www.video2edit.com/) * [VideoToolbox](https://www.videotoolbox.com/)
* [Crop Video](https://crop-video.com/) - Crop Videos * [VideoCandy](https://videocandy.com/)
* [LoopVid](https://loopvid.kastden.org/) - Loop Videos * [Animoto](https://animoto.com/)
* [Crossfade](https://crossfade.io/) - Video and Audio Crossfading * [Flixier](https://editor.flixier.com/)
* [VidLouder](https://www.videolouder.com/) - Increase Video Volume * [descript](https://www.descript.com/)
* [vidmix](https://vidmix.app/)
*** * [mebm](https://bwasti.github.io/mebm/)
* [Crop Video](https://crop-video.com/) - Crop Videos
## ▷ VFX Sites * [LoopVid](https://loopvid.kastden.org/) - Loop Videos
* [Crossfade](https://crossfade.io/) - Video and Audio Crossfading
* **[Download Pirate](https://www.downloadpirate.com/)** / [Discord](https://discord.gg/ucTvVtBz9Z) * [VidLouder](https://www.videolouder.com/) - Increase Video Volume
* [FootageCrate](https://footagecrate.com/)
* [FreeVideoEffect](https://freevideoeffect.com/) ***
* [VideoCoPilot](https://www.videocopilot.net/)
* [VFXmed](https://www.vfxmed.com/) ## ▷ VFX Sites
* [flex_cg_vfx](https://t.me/flex_cg_vfx)
* [ShareAE](https://www.shareae.com/) - After Effects * **[Download Pirate](https://www.downloadpirate.com/)** / [Discord](https://discord.gg/ucTvVtBz9Z)
* [HunterAE](https://hunterae.com/) - After Effects * [FootageCrate](https://footagecrate.com/)
* [AERiver](https://aeriver.com/) - After Effects * [FreeVideoEffect](https://freevideoeffect.com/)
* [MSRTC](https://msrtc-maharashtra.in/) - After Effects / [Telegram](https://t.me/aftereffectsplugins01) * [VideoCoPilot](https://www.videocopilot.net/)
* [AEDownloadPro](https://aedownloadpro.com/) - After Effects * [VFXmed](https://www.vfxmed.com/)
* [Intro HD](https://intro-hd.net/) - After Effects * [flex_cg_vfx](https://t.me/flex_cg_vfx)
* [Adobe After Effects Collection](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - After Effects * [ShareAE](https://www.shareae.com/) - After Effects
* [HunterAE](https://hunterae.com/) - After Effects
*** * [AERiver](https://aeriver.com/) - After Effects
* [Intro HD](https://intro-hd.net/) - After Effects
## ▷ Animation Tools * [AEDownloadPro](https://aedownloadpro.com/) - After Effects
* [Adobe After Effects Collection](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - After Effects
* 🌐 **[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 ***
***[Immersity AI](https://www.immersity.ai/)** - 2D Image to 3D Animation Tool
* [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 ## ▷ Animation Tools
* [Animaker](https://www.animaker.com/) - Animated Video Creator
* [CG_Hacker](https://t.me/CG_Hacker), [cg_tuts](https://t.me/cg_tuts) or [cgreferenceshub](https://t.me/cgreferenceshub) - CG Tutorials * 🌐 **[Creator Resources](https://www.newgrounds.com/wiki/creator-resources/)** - Art & Animation Resource Index
* [AMV101](https://www.amv101.com/) - Animated Music Video-Making Guides * **[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
* [Mega Scans](https://quixel.com/megascans) - 3D Scans * **[LeiaPix](https://www.leiapix.com/)** - 2D Image to 3D Animation Tool
* [Mixer](https://quixel.com/mixer) - 3D Texture Creation Tool * [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
* [PlanetSide](https://planetside.co.uk/) - CG Environment Generator * [Animaker](https://www.animaker.com/) - Animated Video Creator
* [cgplugdump](https://t.me/cgplugdump) - CG Software Plugins * [CG_Hacker](https://t.me/CG_Hacker), [cg_tuts](https://t.me/cg_tuts) or [cgreferenceshub](https://t.me/cgreferenceshub) - CG Tutorials
* [Physically Based](https://physicallybased.info/) - RGB Values of Elements * [AMV101](https://www.amv101.com/) - Animated Music Video-Making Guides
* [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 * [Mega Scans](https://quixel.com/megascans) - 3D Scans
* [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork * [Mixer](https://quixel.com/mixer) - 3D Texture Creation Tool
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool * [PlanetSide](https://planetside.co.uk/) - CG Environment Generator
* [Storyboarder](https://wonderunit.com/storyboarder/) - Quickly Visualize & Test Animations / [GitHub](https://github.com/wonderunit/storyboarder) * [cgplugdump](https://t.me/cgplugdump) - CG Software Plugins
* [LuxCoreRender](https://luxcorerender.org/) - Rendering Engine * [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
* [RenderChan](https://morevnaproject.org/renderchan/) - 2D Animation Render Manager * [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork
* [Mandelbulber](https://mandelbulber.com/) or [FragM](https://github.com/3Dickulus/FragM) - Fractal Rendering Software / [3D](https://mb3d.overwhale.com/) * [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool
* [JWildfire](https://jwildfire.overwhale.com/), [IFSRenderer](https://github.com/bezo97/IFSRenderer) or [Fractorium](http://fractorium.com/) - Flame Fractal Rendering Software * [Storyboarder](https://wonderunit.com/storyboarder/) - Quickly Visualize & Test Animations / [GitHub](https://github.com/wonderunit/storyboarder)
* [BestSnip](https://bestsnip.com/animation/), [Sketch Machine](https://sketchmachine.net/), [Plask](https://plask.ai/) or [Rive](https://rive.app/) - Online Animation Tools * [LuxCoreRender](https://luxcorerender.org/) - Rendering Engine
* [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 * [RenderChan](https://morevnaproject.org/renderchan/) - 2D Animation Render Manager
* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings * [Mandelbulber](https://mandelbulber.com/) or [FragM](https://github.com/3Dickulus/FragM) - Fractal Rendering Software / [3D](https://mb3d.overwhale.com/)
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks * [JWildfire](https://jwildfire.overwhale.com/), [IFSRenderer](https://github.com/bezo97/IFSRenderer) or [Fractorium](http://fractorium.com/) - Flame Fractal Rendering Software
* [Viggle](https://viggle.ai/) / [Discord](https://discord.com/invite/viggle) or [Picrew](https://picrew.me/) - Animated Character Creators * [BestSnip](https://bestsnip.com/animation/), [Sketch Machine](https://sketchmachine.net/), [Plask](https://plask.ai/) or [Rive](https://rive.app/) - Online Animation Tools
* [Mixamo](https://www.mixamo.com/) or [Cascadeur](https://cascadeur.com/) - 3D Character 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
* [MMHuman3D](https://github.com/open-mmlab/mmhuman3d) - 3D Human Model Creator * [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings
* [Talking Face Avatar](https://github.com/saba99/Talking_Face_Avatar) - Talking Avatar Generator * [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks
* [Blender Open Movies](https://youtube.com/playlist?list=PLav47HAVZMjnTFVZL-aImCQIC0uLZtNCz) - CGI Assets * [Picrew](https://picrew.me/) - Animated Character Maker
* [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
## ▷ Stock Videos * [Blender Open Movies](https://youtube.com/playlist?list=PLav47HAVZMjnTFVZL-aImCQIC0uLZtNCz) - CGI Assets
* 🌐 **[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 ## ▷ Stock Videos
* [Dareful](https://dareful.com/) - 4K Stock Videos
* [Monzoom](https://www.monzoom.com/) - 4K Stock Videos * 🌐 **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#videos)** or **[CuteStockFootage](https://cutestockfootage.com/free/video)** - Stock Video Indexes
* [BeachFrontBroll](https://www.beachfrontbroll.com/) - Stock Videos * **[VidsPlay](https://www.vidsplay.com/)** - Stock Videos
* [Videvo](https://www.videvo.net/) - Stock Videos * [4K Media](https://4kmedia.org/) - 4K Stock Videos
* [veed.io](https://www.veed.io/videos) - Stock Videos * [Dareful](https://dareful.com/) - 4K Stock Videos
* [MitchMartinez](https://mitchmartinez.com/free-4k-red-epic-stock-footage/) - Stock Videos * [Monzoom](https://www.monzoom.com/) - 4K Stock Videos
* [MixKit](https://mixkit.co/) - Stock Videos * [BeachFrontBroll](https://www.beachfrontbroll.com/) - Stock Videos
* [ineedfx](https://ineedfx.com/) - Stock Videos * [Videvo](https://www.videvo.net/) - Stock Videos
* [MotionPlaces](https://www.motionplaces.com/) - Worldwide Stock Videos * [veed.io](https://www.veed.io/videos) - Stock Videos
* [DroneStock](https://dronestock.com/) - Drone Video Footage * [MitchMartinez](https://mitchmartinez.com/free-4k-red-epic-stock-footage/) - Stock Videos
* [MovieTools](https://movietools.info/) - Video Loops * [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

@@ -8,7 +8,20 @@ outline: false
--- ---
### Feedback ### Feedback
**Anonymous comments, taken from reddit, discord, twitter, and our feedback system. This is why we do it. People are the motivation, equality is the goal.** :::tip What is this?
Anonymous comments, taken from reddit, discord, twitter, and our feedback system. This is why we do it. People are the motivation, equality is the goal.
:::
:::info Balls
nyaboom > explodives
:::
:::danger Balls
nyaboom > explodives
:::
*** ***
@@ -39,5 +52,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,772 +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
* [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) or [Reverse Engineer Denuvo V4](https://drive.google.com/file/d/1CupcQMOyxbtNUGGSnq8xhIZIxhDzToFT/)
***
## ▷ Steam / Epic
* 🌐 **[Steam Tool Collection](https://steamcommunity.com/sharedfiles/filedetails/?id=451698754)** 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
* [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 / [Guide](https://rentry.co/fsr3-mod-guide)
* [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
***
## ▷ Multiplayer Tools
* 🌐 **[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
***[Online Fix](https://online-fix.me/)** - Multiplayer Fix / [Discord](https://discord.gg/yExgFYncMD)
***[Playit.gg](https://playit.gg/)** - Multiplayer Fix / [Discord](https://discord.gg/AXAbujx)
***[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers
***[Find-PlayDate](https://www.find-playdate.com/)** - Find People to Play Games With
* [Liquipedia](https://liquipedia.net/) - Competitve Gaming / Esports Wiki / [Discord](https://discord.com/invite/liquipedia)
* [zerotier](https://www.zerotier.com/) - Multiplayer Fix
* [Radmin](https://www.radmin-vpn.com/) - Multiplayer Fix / [Discord](https://discord.com/invite/8MapDM7m96)
* [Hamachi](https://vpn.net/) - Multiplayer Fix
* [NetMaker](https://www.netmaker.io/) - Multiplayer Fix
* [Team XLink](https://www.teamxlink.co.uk/) - Multiplayer Fix / [Discord](https://discord.com/invite/XUS9n73KSP)
* [ZLOEmu](https://zloemu.net/) - Multiplayer Fix
* [DiIiS](https://github.com/blizzless/blizzless-diiis) - Open-Source Diablo III Local Server
* [Server.pro](https://server.pro/) - Game Server Hosting
* [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)
* [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
* [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)
* [CnCNet](https://cncnet.org/) - Multiplayer Command & Conquer / [Discord](https://discord.com/invite/aJRJFe5)
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
* [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf)
* [Rust Labs](https://rustlabs.com/) - Rust Info / Tools
* [Old School RuneScape](https://oldschool.runescape.com/) - Classic Runescape / [Discord](https://discord.com/invite/osrs)
* [NolfRevival](http://nolfrevival.tk/) - NOLF, NOLF 2 & Contract Jack
* [Mega Man Arena](https://www.megamanarena.com/) or [Megaman 2.5D](https://petersjostrand.com/) - Multiplayer Mega Man
* [Toontown Rewritten](https://www.toontownrewritten.com/) - Toontown Multiplayer Revival
* [Overwolf](https://www.overwolf.com/) - Create In-Game Overlay Apps
* [Tracker.gg](https://tracker.gg/) - Game Leaderboards / Stats
* [Plutonium](https://plutonium.pw/) - Black Ops 2 / MW3 Mod Project / [Discord](https://discord.gg/d95y8ah) / Requires Legit Copy
* [t7patch](https://github.com/shiversoftdev/t7patch) - Black Ops 3 Crash Fix
* [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)
* [Marne](https://marne.io/) - BF1 Multiplayer Project / [Discord](https://marne.io/discord)
* [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
* [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
* [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5)
* [CrewLink](https://github.com/ottomated/CrewLink) - Among Us Proximity Chat
* [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
***
## ▷ Game Mods
***[ChronoCrash](https://www.chronocrash.com/forum/)** - Game Modding Forum
***[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)
* [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
* [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
* [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/), [InfiniteBacklog](https://infinitebacklog.net/) or [Backloggd](https://www.backloggd.com/) - Game Trackers
***[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
* [OpenCritic](https://opencritic.com/) - Critic Game Reviews / Ratings
* [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
* [Unseen64](https://www.unseen64.net/) - Cancelled / Lost Games
***
# ► 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
* [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/)** - 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
* [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
***
# ► 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
* [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
* ↪️ **[Minecraft Servers / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_servers)**
* ↪️ **[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/)
***[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/) - 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/) - Block Color Palettes
* [Laby](https://laby.net/) - Minecraft User Search / Skin Library / [Discord](https://discord.com/invite/8JBMHDfWKp)
* [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/)** - 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)
* [GTA 5 Grand Roleplay](https://gta5grand.com/) - GTAV Roleplay Server
* [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://wiki.tockdom.com/wiki/Retro_Rewind)** - Retro MKW Tracks / Multiplayer / [Launcher / Updater](https://github.com/patchzyy/CT-MKWII-WPF)
***[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
***[GDMegaOverlay](https://github.com/maxnut/GDMegaOverlay)** - GD Mega Hack Alternative / [Discord](https://discord.com/invite/nbDjEg7SSU)
* [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://github.com/pizzaboxer/bloxstrap) - Roblox Player Bootstrapper / [Dev Note](https://github.com/pizzaboxer/bloxstrap/wiki/Addressing-usability-problems-with-Bloxstrap-v2.5.4)
* [RBXFPSUnlocker](https://github.com/axstin/rbxfpsunlocker) - Unlock Roblox FPS Cap
* [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
***
## ▷ 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 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

View File

@@ -6,23 +6,6 @@
# ► Image Editing # ► Image Editing
***[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**, [remove.bg](https://www.remove.bg/), [RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [Rembg](https://github.com/danielgatis/rembg), [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background) or [magic-copy](https://github.com/kevmo314/magic-copy) - Background Removers
* [Scribus](https://www.scribus.net/) - Page Layout & Typesetting Program
* [FilmDev](https://filmdev.org/) - Film Development Recipes
* [StyleCLIP](https://github.com/orpatashnik/StyleCLIP) - Text Driven Image Manipulation / [Video](https://youtu.be/5icI0NgALnQ)
* [Images.weserv.nl](https://images.weserv.nl/) - Image Editing Server
* [Craft](https://www.invisionapp.com/craft) - Photoshop / Sketch Plugins
* [Preset.id](https://preset.id/) - Adobe Lightroom Presets
* [GradientArt](https://gra.dient.art/) or [TailBlend](https://tailblend.vercel.app/) - Gradient Editor
* [VeoLuz](https://jaredforsyth.com/veoluz/) - Photon Path Art Tool
* [Canvas](https://www.nvidia.com/en-us/studio/canvas/) - Turn Simple Art into Photo Realistic Landscapes
* [Lama Cleaner](https://lama-cleaner-docs.vercel.app/), [Inpaint](https://theinpaint.com/), [Magic Eraser](https://magicstudio.com/magiceraser), [Remover](https://remover.zmo.ai/), [IOPaint](https://github.com/Sanster/IOPaint), [Cleanup.pictures](https://cleanup.pictures/), [ObjectRemover](https://objectremover.com/), [Segment Anything](https://segment-anything.com/), [ImageCleanr](https://www.imagecleanr.com), [Samist](https://github.com/dibrale/samist), [hama](https://www.hama.app/) or [sd-webui-segment-anything](https://github.com/continue-revolution/sd-webui-segment-anything) - Image Segmentation / Object Removal
* [Supershots](https://superblog.ai/supershots/) - Add Backgrounds to Images
* [Image Splitter](https://ruyili.ca/image-splitter/) - Split Images into Tiles
* [PicFont](https://picfont.com/) - Add Text to Images
***
## ▷ Editing Software ## ▷ Editing Software
***[Photoshop](https://w14.monkrus.ws/)** - Use a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) + [Client](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25BA_torrent_clients) ***[Photoshop](https://w14.monkrus.ws/)** - Use a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) + [Client](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25BA_torrent_clients)
@@ -32,8 +15,7 @@
* [DragGAN](https://github.com/XingangPan/DragGAN) - AI Image Editor * [DragGAN](https://github.com/XingangPan/DragGAN) - AI Image Editor
* [RawTherapee](https://www.rawtherapee.com/) - Raw Image Editor * [RawTherapee](https://www.rawtherapee.com/) - Raw Image Editor
* [UFRaw](https://ufraw.sourceforge.net/) - Raw Image Editor * [UFRaw](https://ufraw.sourceforge.net/) - Raw Image Editor
* [StitchTool](https://www.jdeploy.com/~stitchtool) - Image Stitcher, Splitter, Upscaler & more * [PhotoDemon](https://github.com/tannerhelland/PhotoDemon)
* [PhotoDemon](https://photodemon.org/)
* [Paint.net](https://www.getpaint.net/index.html) * [Paint.net](https://www.getpaint.net/index.html)
* [PhotoFiltre](https://www.photofiltre-studio.com/) * [PhotoFiltre](https://www.photofiltre-studio.com/)
* [Polarr](https://www.polarr.com/) * [Polarr](https://www.polarr.com/)
@@ -47,7 +29,8 @@
## ▷ Online Editors ## ▷ Online Editors
***[Lunapic](https://lunapic.com/)** ***[Lunapic](https://lunapic.com/)**
* [Photopea](https://www.photopea.com/) / [Ad Script](https://greasyfork.org/en/scripts/449961), [2](https://greasyfork.org/en/scripts/469575) * **[miniPaint](https://viliusle.github.io/miniPaint/)**
* [Photopea](https://www.photopea.com/) / [Ad Script](https://greasyfork.org/en/scripts/449961)
* [Pixlr](https://pixlr.com/) * [Pixlr](https://pixlr.com/)
* [Photomate](https://photomate.dev/) * [Photomate](https://photomate.dev/)
* [BeFunky](https://www.befunky.com/) * [BeFunky](https://www.befunky.com/)
@@ -56,7 +39,6 @@
* [OIE](https://www.online-image-editor.com/) * [OIE](https://www.online-image-editor.com/)
* [IMG online](https://www.imgonline.com.ua/eng/) * [IMG online](https://www.imgonline.com.ua/eng/)
* [BitMappery](https://www.igorski.nl/application/bitmappery/) * [BitMappery](https://www.igorski.nl/application/bitmappery/)
* [iPiccy](https://ipiccy.com/)
* [Kapwing](https://www.kapwing.com/) * [Kapwing](https://www.kapwing.com/)
* [ILoveImg](https://www.iloveimg.com/photo-editor) * [ILoveImg](https://www.iloveimg.com/photo-editor)
* [Panzoid](https://panzoid.com/) * [Panzoid](https://panzoid.com/)
@@ -69,13 +51,10 @@
* [Fotor](https://www.fotor.com/) * [Fotor](https://www.fotor.com/)
* [PictureEditor](https://www.pictureeditor.com/) * [PictureEditor](https://www.pictureeditor.com/)
* [PhotoStack](https://photostack.app/) * [PhotoStack](https://photostack.app/)
* [MyPhotoFilter](https://www.myphotofilter.com/)
* [Facet](https://facet.ai/) * [Facet](https://facet.ai/)
* [Peko-Step](https://www.peko-step.com/en/tool/imageeditor.html) * [Peko-Step](https://www.peko-step.com/en/tool/imageeditor.html)
* [imageamigo](https://imageamigo.com)
* [ImageOnline](https://imageonline.co/) * [ImageOnline](https://imageonline.co/)
* [Tom's Editor](https://tomseditor.com/) * [Tom's Editor](https://tomseditor.com/)
* [photoaid](https://photoaid.com/en/tools/)
* [edit.photo](https://edit.photo/) * [edit.photo](https://edit.photo/)
* [Image Resizer](https://www.image-resizer.eu/) * [Image Resizer](https://www.image-resizer.eu/)
@@ -83,49 +62,43 @@
## ▷ Upscale / Restore ## ▷ Upscale / Restore
***[Waifu2x](https://github.com/nagadomi/nunif)** - Anime Image Upscaling / [WebUI](https://www.waifu2x.net/), [2](https://unlimited.waifu2x.net/), [3](https://waifu2x.booru.pics/), [4](https://waifu2x.pro/) ***[Waifu2x](https://github.com/nagadomi/waifu2x)** - Anime Image Upscaling / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_waifu2x_tools)
***[WaifuXL](https://waifuxl.com/)** - Anime Image Upscaling ***[Upscayl](https://www.upscayl.org/)** - Image Upscaling
***[Upscayl](https://www.upscayl.org/)** - Image Upscaling / [GitHub](https://github.com/upscayl/upscayl)
***[chaiNNer](https://github.com/chaiNNer-org/chaiNNer)** - Image Upscaling ***[chaiNNer](https://github.com/chaiNNer-org/chaiNNer)** - Image Upscaling
***[Upscale Wiki](https://upscale.wiki/wiki/Main_Page)** - Image Upscaling Wiki
***[OpenModelDB](https://openmodeldb.info/)** - AI Upscaling Model Database ***[OpenModelDB](https://openmodeldb.info/)** - AI Upscaling Model Database
* [Real-ESRGAN](https://github.com/xinntao/Real-ESRGAN) - Image Restoration Algorithms / [Face Restoration](https://github.com/TencentARC/GFPGAN) * [Real-ESRGAN](https://github.com/xinntao/Real-ESRGAN) - Image Restoration Algorithms
* [FenoPhoto](https://www.fenophoto.com/) - Image Restoration Tools
* [/r/estoration](https://www.reddit.com/r/estoration/) - Photo Restoration Requests * [/r/estoration](https://www.reddit.com/r/estoration/) - Photo Restoration Requests
* [Photo Face Restorer](https://www.restorephotos.io/) - Face Restoration / Colorization Tool / 2 Daily * [Photo Face Restorer](https://www.restorephotos.io/) - Face Restoration / Colorization Tool
* [Deep Nostalgia](https://www.myheritage.com/deep-nostalgia) - Animate Family Photos
* [upscaler](https://icons8.com/upscaler) - Image Upscaling * [upscaler](https://icons8.com/upscaler) - Image Upscaling
* [Bigjpg](https://bigjpg.com/) - Image Upscaling * [Bigjpg](https://bigjpg.com/) - Image Upscaling
* [Ilaria Upscaler](https://huggingface.co/spaces/TheStinger/Ilaria_Upscaler) - Image Upscaling * [Ilaria Upscaler](https://huggingface.co/spaces/TheStinger/Ilaria_Upscaler) - Image Upscaling
* [Crunch](https://github.com/chrissimpkins/Crunch) - Image Upscaling * [Crunch](https://github.com/chrissimpkins/Crunch) - Image Upscaling
* [PNG-Upscale](https://github.com/Araxeus/PNG-Upscale) - Image Upscaling * [PNG-Upscale](https://github.com/Araxeus/PNG-Upscale) - Image Upscaling
* [Photo Magic AI](http://photomagicai.com/) - Image Upscaling * [Cupscale](https://github.com/n00mkrad/cupscale) - Image Upscaling
* [Superimage](https://superimage.io/) - Image Upscaling * [Superimage)](https://superimage.io/) - Image Upscaling
* [ImageScaler](https://github.com/RoanH/ImageScaler/) - Image Upscaling * [ImageScaler](https://github.com/RoanH/ImageScaler/) - Image Upscaling
* [Upscaler Stockphotos](https://upscaler.stockphotos.com/) - Image Upscaling * [Upscaler Stockphotos](https://upscaler.stockphotos.com/) - Image Upscaling
* [ImageUpscaler](https://imageupscaler.com/), [2](https://image-upscaler.beatsnoop.com/) - Image Upscaling
* [Upscale Media](https://www.upscale.media/) - Image Upscaling
* [Zyro Upscaler](https://zyro.com/tools/image-upscaler) - Image Upscaling * [Zyro Upscaler](https://zyro.com/tools/image-upscaler) - Image Upscaling
* [Nicescaler](https://github.com/Djdefrag/NiceScaler) - Image Upscaling * [Nicescaler](https://github.com/Djdefrag/NiceScaler) - Image Upscaling
* [DFDNet](https://github.com/csxmli2016/DFDNet) - Image Upscaling
* [Nero AI](https://ai.nero.com/image-upscaler) - Image Upscaling
* [SDUpscale](https://rentry.org/sdupscale) - Image Upscaling
* [JPEG Quantsmooth](https://github.com/ilyakurdyukov/jpeg-quantsmooth) - Image Upscaling * [JPEG Quantsmooth](https://github.com/ilyakurdyukov/jpeg-quantsmooth) - Image Upscaling
* [imgupscaler](https://imgupscaler.com/) - Image Upscaling * [imgupscaler](https://imgupscaler.com/) - Image Upscaling
* [torch-srgan](https://deepai.org/machine-learning-model/torch-srgan) - Image Upscaling * [torch-srgan](https://deepai.org/machine-learning-model/torch-srgan) - Image Upscaling
* [ultimate-upscale](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111) - Image Upscaling
* [multidiffusion-upscaler](https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111) - Image Upscaling
* [QualityScaler](https://github.com/Djdefrag/QualityScaler) - Image Upscaling * [QualityScaler](https://github.com/Djdefrag/QualityScaler) - Image Upscaling
* [GFPGAN](https://github.com/TencentARC/GFPGAN) - Face Upscaling
* [resdet](https://github.com/0x09/resdet) - Detect Upscaled Images * [resdet](https://github.com/0x09/resdet) - Detect Upscaled Images
*** ***
## ▷ Image Optimization
* ↪️ **[Image Compressors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_image_compressors)**
* ↪️ **[Image Converters](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_image_converters)**
* ↪️ **[Image Resizing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_image_resizing)**
***[ImageMagick](https://imagemagick.org/index.php)** - Image Optimization / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php)
***[Pingo](https://css-ig.net/pingo)** - Image Optimization / [GUI](https://css-ig.net/pinga)
* [Croppola](https://croppola.com/), [Bulk Image Crop](https://bulkimagecrop.com/) or [Avatar Cropper](https://avatarcropper.com/) - Cropping Tools
* [RIOT](https://riot-optimizer.com/) - Image Optimization
* [YOGA](https://yoga.flozz.org/) - Image Optimization
* [ImageFoo](https://imagefoo.com/) - Image Optimization
* [tiny.pictures](https://tiny.pictures/) - Image Optimization
* [ImageWorsener](https://entropymine.com/imageworsener/) - Image Filters / Blur / Resizing
***
## ▷ Image Colorization ## ▷ Image Colorization
* [AnimeColorDeOldify](https://github.com/Dakini/AnimeColorDeOldify) - Anime / Manga Image Colorization * [AnimeColorDeOldify](https://github.com/Dakini/AnimeColorDeOldify) - Anime / Manga Image Colorization
@@ -136,10 +109,36 @@
*** ***
## ▷ Resize / Convert
***[ImageMagick](https://imagemagick.org/index.php)** / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php)
***[Pingo](https://css-ig.net/pingo)** / [GUI](https://css-ig.net/pinga), [RIOT](https://riot-optimizer.com/), [YOGA](https://yoga.flozz.org/) or [ImageFoo](https://imagefoo.com/) - Image Optimization Tools
* [Bulk Image Convert](https://bulkimageconvert.com), [imverter](https://www.imverter.com/), [Raw Pics](https://raw.pics.io/), [Converseen](https://converseen.fasterland.net/), [Vector Magic](https://vectormagic.com/) or [WebP Converter](https://webp-converter.com/) - Image Converters
* [svgco](https://svgco.de/) - Image to SVG Converter
* [ImageWorsener](https://entropymine.com/imageworsener/) - Image Filters / Blur / Resizing
* [AnsiLove](https://www.ansilove.org/downloads.html) or [convert-ascii-to-image](https://onlinetools.com/ascii/convert-ascii-to-image) - ANSI / ASCII Art to PNG Converters
* [Vector Express](https://vector.express/) - Vector Converter
* [Vectorizer](https://www.vectorizer.io/) or [AutoTracer](https://www.autotracer.org/) - Image Vectorizer
* [text2img](https://master.ayra.ch/text2img/) - Convert Text Screenshots to Images
* [CloudImage](https://www.cloudimage.io/), [tiny.pictures](https://tiny.pictures/) - Optimize Images
* [Bulk Image Resize](https://bulkimageresize.com/) - Resize Images / [Crop](https://bulkimagecrop.com/) / [Compress](https://imagecompressr.com/)
* [Croppola](https://croppola.com/) or [Avatar Cropper](https://avatarcropper.com/) - Cropping Tools
* [Seopix](https://www.seopix.io/) - Resize / Compress Images
* [Simple Image Resizer](https://www.simpleimageresizer.com/), [ImageResizer](https://imageresizer.com/), [PicResize](https://picresize.com/), [Birme](https://www.birme.net/), [ImageResizeOnline](https://www.imageresizeonline.com/), [OnlineResizeImage](https://www.onlineresizeimage.com/) or [ResizeNow](https://www.resizenow.com/en), [BulkResizePhotos](https://bulkresizephotos.com/) - Resize Images
* [Resize App Icon](https://resizeappicon.com/) - Resize Square Images
* [PixelHunter](https://pixelhunter.io/) - Resize Images for Different Sites
* [SVGO](https://github.com/svg/svgo) or [SVGCrop](https://svgcrop.com/) - SVG Optimization / [GUI](https://jakearchibald.github.io/svgomg/)
* [CompressOrDie](https://compress-or-die.com/), [TinyJPG](https://tinyjpg.com/), [ImageCompresser](https://imagecompresser.com/), [Caesium](https://saerasoft.com/caesium/), [ImageSmaller](https://www.imagesmaller.com/), [Compress JPEG](https://compressjpeg.com/), [CompressImage](https://compressimage.io/), [CrushImage](https://crushimage.com/), [ShrinkMe](https://shrinkme.app/), [Crushee](https://crushee.app/), [Compressor](https://compressor.io/) or [Batch Compress](https://batchcompress.com/en) - Image Compressors
* [TinyPNG](https://tinypng.com/), [Compress PNG](https://compresspng.com/), [OxiPNG](https://github.com/shssoichiro/oxipng) or [PNGQuant](https://pngquant.org/) - PNG Compressors
* [JPEG.rocks](https://jpeg.rocks/) - JPEG Re-Encoder
* [Innocenzi](https://avatar.innocenzi.dev/) - Create Round Avatars
***
## ▷ Image Effects ## ▷ Image Effects
***[PhotoMosh](https://photomosh.com/)**, [jpg-glitch-electron](https://snorpey.github.io/jpg-glitch-electron/), [glitch-this!](https://github.com/TotallyNotChase/glitch-this), [glitch2](https://akx.github.io/glitch2/), [Image Glitcher](https://www.airtightinteractive.com/demos/js/imageglitcher/) or [GlitchyImage](https://glitchyimage.com/) - Glitch Images ***[PhotoMosh](https://photomosh.com/)**, [jpg-glitch-electron](https://snorpey.github.io/jpg-glitch-electron/), [glitch-this!](https://github.com/TotallyNotChase/glitch-this) or [GlitchyImage](https://glitchyimage.com/) - Glitch Images
* [PhotoFunia](https://photofunia.com/), [Image Mage](https://imagemageage.github.io/) or [Designify](https://designify.com/) - Photo Effects / Filters * [PhotoFunia](https://photofunia.com/) or [Designify](https://designify.com/) - Photo Effects / Filters
* [distort-grid](https://github.com/snorpey/distort-grid) - Grid Based Image Distortion * [distort-grid](https://github.com/snorpey/distort-grid) - Grid Based Image Distortion
* [Tinter](https://tinter.uxie.io/) - Image Hue Editor * [Tinter](https://tinter.uxie.io/) - Image Hue Editor
* [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/) - Image Dithering * [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/) - Image Dithering
@@ -147,8 +146,7 @@
* [Fotosketcher](https://fotosketcher.com/) or [PhotoMaker](https://huggingface.co/spaces/TencentARC/PhotoMaker) [Stylized](https://huggingface.co/spaces/TencentARC/PhotoMaker-Style) - Turn Photos into Artwork * [Fotosketcher](https://fotosketcher.com/) or [PhotoMaker](https://huggingface.co/spaces/TencentARC/PhotoMaker) [Stylized](https://huggingface.co/spaces/TencentARC/PhotoMaker-Style) - Turn Photos into Artwork
* [AnimeGAN](https://github.com/TachibanaYoshino/AnimeGANv3) - Turn Photos into Anime * [AnimeGAN](https://github.com/TachibanaYoshino/AnimeGANv3) - Turn Photos into Anime
* [AIDraw](https://ai-draw.tokyo/en/) or [ArtLine](https://github.com/vijishmadhavan/ArtLine) - Turn Photos into Line Art * [AIDraw](https://ai-draw.tokyo/en/) or [ArtLine](https://github.com/vijishmadhavan/ArtLine) - Turn Photos into Line Art
* [Rutt-Etra-Izer](https://airtightinteractive.com/demos/js/ruttetra/) - Scanned-line Images * [Geometrize](https://www.geometrize.co.uk/) - Redraw Images with Geometric Shapes
* [Geometrize](https://www.geometrize.co.uk/) - Redraw Images with Geometric Shapes
* [PBNify](https://pbnify.com/) - Paint by Number Tool * [PBNify](https://pbnify.com/) - Paint by Number Tool
* [Party-ify](https://nathanielw.github.io/party-ify/) - Party-ify Images * [Party-ify](https://nathanielw.github.io/party-ify/) - Party-ify Images
* [PFP.LGBT](https://pfp.lgbt/) - LGBTQ+fy Images * [PFP.LGBT](https://pfp.lgbt/) - LGBTQ+fy Images
@@ -156,148 +154,22 @@
*** ***
# ► Image Creation ## ▷ Editing Tools
* 🌐 **[PuccaNoodles Sheet](https://docs.google.com/spreadsheets/d/1-8OKuEvRR038Uno--Vi9tQRe4eFCSfQTPov7nXgiJ3w/)** - Image Creation Resources * **[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**, [remove.bg](https://www.remove.bg/), [RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [Rembg](https://github.com/danielgatis/rembg), [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background) or [magic-copy](https://github.com/kevmo314/magic-copy) - Background Removers
* ↪️ **[AI Image Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_image_generation)** * [Scribus](https://www.scribus.net/) - Page Layout & Typesetting Program
* ↪️ **[Art Education](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_art_.2F_editing)** * [FilmDev](https://filmdev.org/) - Film Development Recipes
* [PanosFX](https://www.panosfx.com/) or [Fix the Photo](https://fixthephoto.com/free-photoshop-actions) - Photoshop Actions * [StyleCLIP](https://github.com/orpatashnik/StyleCLIP) - Text Driven Image Manipulation / [Video](https://youtu.be/5icI0NgALnQ)
* [imgsli](https://imgsli.com/) - Before & After Slider Generator * [Images.weserv.nl](https://images.weserv.nl/) - Image Editing Server
* [Hugin](https://hugin.sourceforge.io/) - Panorama Image Generator * [Craft](https://www.invisionapp.com/craft) - Photoshop / Sketch Plugins
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks * [Preset.id](https://preset.id/) - Adobe Lightroom Presets
* [CharacterCreator](https://charactercreator.org/) - Character Generator * [GradientArt](https://gra.dient.art/) or [TailBlend](https://tailblend.vercel.app/) - Gradient Editor
* [99 Avatars](https://99avatars.com/) - Create Doodle Avatar * [VeoLuz](https://jaredforsyth.com/veoluz/) - Photon Path Art Tool
* [Picrew](https://picrew.me/) - Animated Character Maker * [Canvas](https://www.nvidia.com/en-us/studio/canvas/) - Turn Simple Art into Photo Realistic Landscapes
* [FontSVG](https://fontsvg.com/) - Convert Font, Icon, Glyph to SVG * [Lama Cleaner](https://lama-cleaner-docs.vercel.app/), [Inpaint](https://theinpaint.com/), [Magic Eraser](https://magicstudio.com/magiceraser), [Remover](https://remover.zmo.ai/), [IOPaint](https://github.com/Sanster/IOPaint), [Cleanup.pictures](https://cleanup.pictures/), [ObjectRemover](https://objectremover.com/), [Segment Anything](https://segment-anything.com/), [Samist](https://github.com/dibrale/samist) or [sd-webui-segment-anything](https://github.com/continue-revolution/sd-webui-segment-anything) - Image Segmentation / Object Removal
* [Mimi](https://mimi-panda.com/) - Create Coloring Pages from Photos * [Supershots](https://superblog.ai/supershots/) - Add Backgrounds to Images
* [Text-Image](https://www.text-image.com/) - Text Image Generator * [Image Splitter](https://ruyili.ca/image-splitter/) - Split Images into Tiles
* [Photovisi](https://www.photovisi.com/) or [PhotoJoiner](https://www.photojoiner.com/) - Collage Generators * [PicFont](https://picfont.com/) - Add Text to Images
* [Tiler](https://github.com/nuno-faria/tiler) - Make Images out of Images
* [NoiseDeck](https://noisedeck.app/) - Art Generator
* [Pulp-O-Mizer](https://thrilling-tales.webomator.com/derange-o-lab/pulp-o-mizer/pulp-o-mizer.html ) - Vintage Magazine Cover Generator
* [Mirro-Ai](https://mirror-ai.com/) - Get Stickers with Your Face
***
## ▷ Painting
***[Krita](https://krita.org/en/)** - Painting App
***Krita Tools** - [Custom Backend](https://github.com/Interpause/auto-sd-paint-ext) / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [Forums](https://krita-artists.org/)
***[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting
* [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App
* [MyPaint](https://mypaint.app/) - Painting App
* [FireAlpaca](https://firealpaca.com/) - Painting App
* [Tux Paint](https://tuxpaint.org/) - Painting App
* [LazPaint](https://github.com/bgrabitmap/lazpaint/) - Painting App
* [SpeedyPainter](https://speedypainter.altervista.org/) - Painting App
* [JSPaint](https://github.com/00000o1/jspaint.exe) - Classic MS Paint Revival
* [PaintOnline](https://paintonline.com.br/paint.html) - Browser Painting
* [jspaint](https://jspaint.app/) - Browser Painting
* [PinTor](https://pintor.app/) - Browser Painting
* [miniPaint](https://viliusle.github.io/miniPaint/) - Browser Painting
* [Tegaki](https://desuwa.github.io/tegaki.html) - Browser Painting
* [JS Kid Pix](https://kidpix.app/) - Browser JS KidPix
* [SpeedPaint](https://www.speedpaint.info/) - Browser Speedpainting
* [bomomo](https://bomomo.com/) - Multi-Brush Painting
* [LizardPaint](https://lizardrive.itch.io/lizardpaint) - Sega / Megadrive Painting
* [Milton](https://www.miltonpaint.com/) - Infinite Canvas Painting
* [IOGraphica](https://iographica.com/) - Turn Mouse Movement into Art
* [HeavyPaint](https://www.heavypaint.com/) - Water Color Painting
* [Mixbox Painter](https://scrtwpns.com/mixbox/painter/) - Realistic Paint Mixing
* [Vervette](https://www.taron.de/Vervette/sandbox/) - Realistic Fluid Painting
* [JacksonPollock](https://www.jacksonpollock.org/) - Splatter Painting / Click to Change Color
* [brush-photoshop](https://www.brush-photoshop.fr/), [wowbrushes](https://wowbrushes.com/), [chezplumeau](https://www.chezplumeau.com/), [getbrushes](https://getbrushes.com/), [gfxfever](https://www.gfxfever.com/), [fbrushes](https://fbrushes.com/), [brushes_and_patterns](https://t.me/brushes_and_patterns), [myphotoshopbrushes](https://myphotoshopbrushes.com/), [brusheezy](https://www.brusheezy.com/brushes), [brushking](https://www.brushking.eu/) or [tala](https://t.me/tala_photoshop_brushes) - Digital Art Brushes
***
## ▷ Drawing
***[AutoDraw](https://www.autodraw.com/)** or [Magic Sketchpad](https://magic-sketchpad.glitch.me/) - AI Drawing Tools
* [inkscape](https://inkscape.org/) - Drawing / Sketching
* [Inkdo](https://www.microsoft.com/en-us/p/inkodo/9nblggh4s50q) - Drawing / Sketching
* [Sketch Toy](https://www.sketchtoy.com/) - Drawing / Sketching
* [Webchemy](https://webchemy.org/) - Drawing / Sketching
* [tldraw](https://www.tldraw.com/) - Drawing / Sketching
* [Ok! So](https://okso.app/) - Drawing / Sketching
* [Sketchpad](https://sketchpad.app/), [2](https://sketch.io/sketchpad) - Drawing / Sketching
* [Sketchbook](https://www.sketchbook.com/) - Drawing / Sketching / Mobile Only
* [Concepts](https://concepts.app/) - Drawing / Sketching
* [Excalidraw](https://excalidraw.com/) - Drawing / Sketching
* [Aggie.io](https://aggie.io/), [Magma](https://magma.com/index), [HelloPaint](https://hellopaint.io/), [DrawPile](https://drawpile.net/), [LockDraw](https://www.skycow.us/), [World Draw](https://world-draw.appspot.com/draw) or [malmal](https://malmal.io/) - Collaborative Drawing
* [Ink Workspace](https://www.microsoft.com/store/productId/9P0RP342JZMN) - Pen App Launcher
* [Perfect Freehand](https://perfect-freehand-example.vercel.app/) - Draw Free Hand Lines / [GitHub](https://github.com/steveruizok/perfect-freehand)
* [Eschersket](https://eschersket.ch/) - Symmetry Drawing Tool
* [Monsterland](https://monsterland.net/) - Collaborative Monster Drawing
* [TEv2](http://te2.tewi.us/) - Share your Drawings
* [Virtual Graph Paper](https://virtual-graph-paper.com/) or [minimator](https://minimator.app/) - Create Grid Based Drawings
* [Gridzzly](http://gridzzly.com/) - Print Custom Grid Papers
* [Noodle](https://hundredrabbits.itch.io/noodle) - 1bit Sketch Tool
* [Tiny Sketchbook](https://www.tinysketchbook.com/) - Create and Share Doodle Art
* [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool
* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home), [MotorPen](https://motorpen.com/) or [Scratch](https://scratch.mit.edu/) - Animate Drawings
***
## ▷ Pixel Art
* 🌐 **[Awesome Pixel Art](https://github.com/Siilwyn/awesome-pixel-art)** - Pixel Art Resource Index
* ↪️ **[ASCII Art](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_ascii_art)**
* [Piskel](https://www.piskelapp.com/), [rx](https://rx.cloudhead.io/), [Pixelated](https://pixelated.vercel.app/), [PaintWith](https://paintwith.webflow.io/), [Aseprite](https://dacap.itch.io/aseprite), [PixelCraft](https://pixelcraft.web.app/) / [GitHub](https://github.com/rgab1508/PixelCraft), [Kleki](https://kleki.com/), [CSprite](https://csprite.github.io/) or [PixilArt](https://www.pixilart.com/draw) - Pixel Art Editors
* [Strike](https://amorphous.itch.io/strike) - 1-Bit Pixel Art Editor
* [Pixel Painter](https://jenniferdewalt.com/pixel_painter.html) or [Pixel Paint](https://codepen.io/quinlo/full/RvPPKG) - Paint with Pixels
* [pixels.land](https://pixel.land/), [EveryoneDraw](https://everyonedraw.com/), [pxls.space](https://pxls.space/) or [World of Pixels](https://ourworldofpixels.com/) - Infinite Online Pixel Art
* [dpixel](https://marcoc2.itch.io/dpixel) - Pixel Art Remastering Tool
* [Paint Of Persia](https://dunin.itch.io/ptop) - Rotoscoping Pixel Art Tool
* [Dither Machine](https://lunarlabs.itch.io/dither-machine) - Pixel Art Dithering Creator
* [PixelMe](https://pixel-me.tokyo/en/), [Pixel It](https://giventofly.github.io/pixelit/), [Pixelator](https://ronenness.itch.io/pixelator), [Img8Bit](https://img8bit.com/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixelart Converters
* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor
* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker) , [Pixel Sprite](https://deep-fold.itch.io/pixel-sprite-generator) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator
* [Pixelicious](https://www.pixelicious.xyz/) - Image to Pixel Art Converter
* [Pal](https://pal.constraint.systems/) - Apply 8-bit Terminal Color Palettes to Images
* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor
* [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Scale Pixel Art without Quality Loss
***
## ▷ GIF Tools
* 🌐 **[Awesome GIF](https://rentry.co/ccuz3)** - GIF Resources / [GitHub](https://github.com/davisonio/awesome-gif)
* 🌐 **[Online GIF Tools](https://onlinegiftools.com/)** - GIF Tools
* [Giphy](https://giphy.com/), [Tenor](https://tenor.com/), [Gifer](https://gifer.com/en), [Curlie GIFs](https://curlie.org/en/Computers/Graphics/Web/Free/Animated_GIFs), [GifCities](https://gifcities.org/), [Animations](https://bleuje.com/animationsite/) or [GIFBin](https://gifbin.com/) - View / Download GIFs
* [/r/animegifs](https://www.reddit.com/r/animegifs/) - View / Download Anime GIFs
* [Reaction GIFs](https://reactiongifs.me/) - Reaction GIFs
* [EZGif](https://ezgif.com/), [GIFCurry](https://lettier.github.io/gifcurry/) / [GitHub](https://github.com/lettier/gifcurry), [Giflr](https://giflr.com/), [GIFMemes](https://gifmemes.io/), [GIFnText](https://www.gifntext.com/), [makeagif](https://makeagif.com/), [Gifsicle](http://www.lcdf.org/gifsicle/) or [Pixteller](https://pixteller.com/) - GIF Creators / Editors
* [EatMyArt](https://www.eatmy.art/), [DrawIsland](https://drawisland.com/) or [Sketch Machine](https://sketchmachine.net/) - Create GIFs from Drawings
* [Kinegram](https://kinegram.app/) - Kinegram GIF Creator
* [GifRun](https://gifrun.com/) - Make GIFs from Online Videos
* [ScreenToGif](https://www.screentogif.com/) or [Peek](https://github.com/phw/peek) - GIF Recorder
* [ugiffer](https://iobureau.com/ugiffer/) or [licecap](https://www.cockos.com/licecap/) - Create GIFs via Screencasts
* [TokkingHeads](https://app.tokkingheads.com/) - Face Movement GIFs
* [petpet](https://benisland.neocities.org/petpet/) - Headpatting GIF Maker
* [Gifski](https://gif.ski/) - GIF Encoder
***
## ▷ Meme Tools
***[KnowYourMeme](https://knowyourmeme.com/)** or [FndThatMeme](https://findthatmeme.com/) - Meme Databases
***[TierMaker](https://tiermaker.com/)** - Tier List Image Creator
* [ImgFlip](https://imgflip.com/memegenerator), [Meme Generator](https://www.memegenerator.top/), [Meme Town](https://meme.town/), [MemeBetter](https://memebetter.com/), [meme-generator](https://newfastuff.com/meme-generator/) or [Emacs Meme Generator](https://github.com/larsmagne/meme) - Meme Creators
* [MemeCam](https://www.memecam.io/) - AI Meme Generator
* [Memegine](https://memegine.com/) - Meme Search Engine
* [MemeAtlas](https://www.memeatlas.com/) or [Templates](https://drive.google.com/drive/folders/1Z4PSi2XmZ6x8I891xZSg5Cl4oNEOIRhh) - Meme Templates
* [iFake](https://ifaketextmessage.com/) - Make Fake Text Conversations
* [Master of all Science](https://masterofallscience.com/) - Rick and Morty Meme Generator
* [Frinkiac](https://frinkiac.com/) - Simpsons Meme Generator
* [Morbotron](https://morbotron.com/) - Futurama Meme Generator
* [BreakYourOwnNews](https://www.breakyourownnews.com/) - Breaking News Meme Generator
* [AnimorphGenerator](https://animorphgenerator.com/) - Animorph Image Generator
* [AwesomeCars](https://awesomecars.neocities.org/) - Drip Car Memes
***
## ▷ [Animation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_animation_tools)
*** ***
@@ -307,27 +179,25 @@
* 🌐 **[archives.design](https://archives.design/)** - Graphic Design Books * 🌐 **[archives.design](https://archives.design/)** - Graphic Design Books
* [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Inspirations * [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Inspirations
* [PSDcovers](https://www.psdcovers.com/), [mockups-design](https://mockups-design.com/), [zippypixels](https://zippypixels.com/), [Mockups](https://mockups.pixeltrue.com/), [medialoot](https://medialoot.com/free-mockups/) or [MockupsForFree](https://mockupsforfree.com/) - Product Mockups * [PSDcovers](https://www.psdcovers.com/), [mockups-design](https://mockups-design.com/), [zippypixels](https://zippypixels.com/), [Mockups](https://mockups.pixeltrue.com/), [medialoot](https://medialoot.com/free-mockups/) or [MockupsForFree](https://mockupsforfree.com/) - Product Mockups
* [Pokémon Assets](https://rentry.co/FMHYBase64#pokemon-assets) - Pokémon Assets Archive
*** ***
## ▷ Design Apps ## ▷ Design Apps
***[Canva](https://www.canva.com/)** - Design App / [Giveaways](https://rentry.co/FMHYBase64#canva) ***[Canva](https://www.canva.com/)** - Design App/ [Premium Apk](https://rentry.co/FMHYBase64#canva-premium) / [Free Giveaways](https://t.me/canvapro365free), [2](https://t.me/sharecanvaprofree)
***[Figma](https://www.figma.com/)** - Design Collab App ***[Figma](https://www.figma.com/)** - Design Colab App
* [lunacy](https://icons8.com/lunacy) - Design App * [lunacy](https://icons8.com/lunacy) - Design App
* [ArtBoard](https://artboard.studio/) - Design App * [ArtBoard](https://artboard.studio/) - Design App
* [VistaCreate](https://create.vista.com/) - Design App * [VistaCreate](https://create.vista.com/) - Design App
* [PosterMyWall](https://www.postermywall.com/) - Design App * [PosterMyWall](https://www.postermywall.com/) - Design App
* [Kosmik](https://www.kosmik.app/) - Design Asset Manager
* [Venngage](https://venngage.com/) - Infographic Design * [Venngage](https://venngage.com/) - Infographic Design
* [Bannery](https://bannery.app/) - Banner Design * [Bannery](https://bannery.app/) - Banner Design
* [Mind Your Banners](https://www.mindyourbanners.com/) - Social Media Banner Design * [Mind Your Banners](https://www.mindyourbanners.com/) - Social Media Banner Design
* [CoverView](https://coverview.vercel.app/) - Blog Banner Design * [CoverView](https://coverview.vercel.app/) - Blog Banner Design
* [blush](https://blush.design/) or [IRA Design](https://iradesign.io/) - Illustration Design * [blush](https://blush.design/) or [IRA Design](https://iradesign.io/) - Illustration Design
* [SuperDesigner](https://superdesigner.co/) or [Pattern Ninja](https://patterninja.com/) - Background / Pattern Design * [SuperDesigner](https://superdesigner.co/) or [Pattern Ninja](https://patterninja.com/) - Background / Pattern Design
* [Custom Ink](https://www.customink.com/ndx/#/) - Create T-Shirt Design * [Custom Ink](https://www.customink.com/ndx/#/) - Create T-Shirt Design
* [Quote Maker](https://quotescover.com/) - Quote Picture Design * [Quote Maker](https://quotescover.com/) - Quote Picture Design
* [Pixelied](https://pixelied.com/) - Online Design Tool * [Pixelied](https://pixelied.com/) - Online Design Tool
* [Evernote.Design](https://www.evernote.design/) - Online Design Tools * [Evernote.Design](https://www.evernote.design/) - Online Design Tools
* [Design Tool Zip](https://rentry.co/FMHYBase64#design-tool-zip) - Design App Zip File * [Design Tool Zip](https://rentry.co/FMHYBase64#design-tool-zip) - Design App Zip File
@@ -338,18 +208,93 @@
*** ***
## ▷ Icons / Avatars ## ▷ Painting / Drawing
* ↪️ **[Avatar / Logo Creators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_avatar_.2F_logo_creators)** * 🌐 **[PuccaNoodles Resource Sheet](https://docs.google.com/spreadsheets/d/1-8OKuEvRR038Uno--Vi9tQRe4eFCSfQTPov7nXgiJ3w/)** - Painting / Drawing Resources
* ↪️ **[Icon Drives](https://rentry.co/FMHYBase64#icon-drives)** - Icon Drives * ↪️ **[Art Education](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_art_.2F_editing)**
* ↪️ **[SVG Icons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_svg_icons)** / **[SVG Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_svg_tools)** * **[Krita](https://krita.org/en/)**, [SmoothDraw](https://qrli.github.io/smoothdraw/), [MyPaint](https://github.com/mypaint/mypaint), [jspaint](https://jspaint.app/), [FireAlpaca](https://firealpaca.com/), [PaintOnline](https://paintonline.com.br/paint.html), [Tux Paint](https://tuxpaint.org/), [PinTor](https://pintor.app/), [JS Kid Pix](https://kidpix.app/), [Paintroid](https://github.com/Catrobat/Paintroid), [ProsePainter](https://www.prosepainter.com/), [Paint Toys](https://paint.toys/), [SpeedPaint](https://www.speedpaint.info/), [miniPaint](https://viliusle.github.io/miniPaint/), [YouiDraw](https://site.youidraw.com/), [LazPaint](https://github.com/bgrabitmap/lazpaint/), [JSPaint](https://github.com/00000o1/jspaint.exe), [Tegaki](https://desuwa.github.io/tegaki.html), [SpeedyPainter](https://speedypainter.altervista.org/) or [MediBang](https://medibangpaint.com/en/) - Painting
***[Alphacoders Avatars](https://avatars.alphacoders.com/)** - PFPs / Avatars ***Krita Tools** - [Custom Backend](https://github.com/Interpause/auto-sd-paint-ext) / [AI Generation](https://github.com/Acly/krita-ai-diffusion/)
* [Innocenzi](https://avatar.innocenzi.dev/) - Create Round Avatars * **[AutoDraw](https://www.autodraw.com/)** or [Magic Sketchpad](https://magic-sketchpad.glitch.me/) - AI Drawing Tools
* [bomomo](https://bomomo.com/) - Multi-Brush Painting
* [Milton](https://www.miltonpaint.com/) - Infinite Canvas Painting
* [IOGraphica](https://iographica.com/) - Turn Mouse Movement into Art
* [Aggie.io](https://aggie.io/), [Magma](https://magma.com/index), [HelloPaint](https://hellopaint.io/), [DrawPile](https://drawpile.net/), [WBO](https://wbo.ophir.dev/), [LockDraw](https://www.skycow.us/) or [malmal](https://malmal.io/) - Collaborative Drawing / Painting
* [World Draw](https://world-draw.appspot.com/draw) - Draw the World Together
* [pixels.land](https://pixel.land/), [EveryoneDraw](https://everyonedraw.com/) or [World of Pixels](https://ourworldofpixels.com/) - Infinite Online Pixel Art
* [Monsterland](https://monsterland.net/) - Collaborative Monster Drawing
* [TEv2](http://te2.tewi.us/) - Share your Drawings / Paintings
* [LizardPaint](https://lizardrive.itch.io/lizardpaint) - Sega / Megadrive Painting
* [inkscape](https://inkscape.org/), [Inkdo](https://www.microsoft.com/en-us/p/inkodo/9nblggh4s50q), [Sketch Toy](https://www.sketchtoy.com/), [Sketchbook](https://www.sketchbook.com/), [Webchemy](https://webchemy.org/), [tldraw](https://www.tldraw.com/), [Ok! So](https://okso.app/), [Sketchpad](https://sketchpad.app/) / [2](https://sketch.io/sketchpad), [Concepts](https://concepts.app/) or [Excalidraw](https://excalidraw.com/) - Drawing / Sketching Tools
* [Virtual Graph Paper](https://virtual-graph-paper.com/) - Grid Sketch Tool
* [Gridzzly](http://gridzzly.com/) - Print Custom Grid Papers
* [Noodle](https://hundredrabbits.itch.io/noodle) - 1bit Sketch Tool
* [HeavyPaint](https://www.heavypaint.com/) - Water Color Painting
* [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool
* [Perfect Freehand](https://perfect-freehand-example.vercel.app/) - Draw Free Hand Lines / [GitHub](https://github.com/steveruizok/perfect-freehand)
* [minimator](https://minimator.app/) - Create Grid Based Drawings
* [Eschersket](https://eschersket.ch/) - Symmetry Drawing Tool
* [JacksonPollock](https://www.jacksonpollock.org/) - Splatter Painting / Click to Change Color
* [Picrew](https://picrew.me/) - Animated Character Maker
* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home), [MotorPen](https://motorpen.com/) or [Scratch](https://scratch.mit.edu/) - Animate Drawings
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks
* [Tiny Sketchbook](https://www.tinysketchbook.com/) - Create and Share Doodle Art
* [Ink Workspace](https://www.microsoft.com/store/productId/9P0RP342JZMN) - Pen App Launcher
* [brush-photoshop](https://www.brush-photoshop.fr/), [wowbrushes](https://wowbrushes.com/), [chezplumeau](https://www.chezplumeau.com/), [getbrushes](https://getbrushes.com/), [gfxfever](https://www.gfxfever.com/), [fbrushes](https://fbrushes.com/), [brushes_and_patterns](https://t.me/brushes_and_patterns), [myphotoshopbrushes](https://myphotoshopbrushes.com/), [brusheezy](https://www.brusheezy.com/brushes), [brushking](https://www.brushking.eu/) or [tala](https://t.me/tala_photoshop_brushes) - Digital Art Brushes
* [PanosFX](https://www.panosfx.com/) or [Fix the Photo](https://fixthephoto.com/free-photoshop-actions) - Photoshop Actions
***
## ▷ Pixel Art
* 🌐 **[Awesome Pixel Art](https://github.com/Siilwyn/awesome-pixel-art)** - Pixel Art Resource Index
* [Piskel](https://www.piskelapp.com/), [rx](https://rx.cloudhead.io/), [Pixelated](https://pixelated.vercel.app/), [PaintWith](https://paintwith.webflow.io/), [Aseprite](https://dacap.itch.io/aseprite), [PixelCraft](https://pixelcraft.web.app/) / [GitHub](https://github.com/rgab1508/PixelCraft), [Kleki](https://kleki.com/), [CSprite](https://csprite.github.io/) or [PixilArt](https://www.pixilart.com/draw) - Pixel Art Editors
* [Strike](https://amorphous.itch.io/strike) - 1-Bit Pixel Art Editor
* [Pixel Painter](https://jenniferdewalt.com/pixel_painter.html) or [Pixel Paint](https://codepen.io/quinlo/full/RvPPKG) - Paint with Pixels
* [dpixel](https://marcoc2.itch.io/dpixel) - Pixel Art Remastering Tool
* [Paint Of Persia](https://dunin.itch.io/ptop) - Rotoscoping Pixel Art Tool
* [Dither Machine](https://lunarlabs.itch.io/dither-machine) - Pixel Art Dithering Creator
* [PixelMe](https://pixel-me.tokyo/en/), [Pixel It](https://giventofly.github.io/pixelit/), [Pixelator](https://ronenness.itch.io/pixelator), [Img8Bit](https://img8bit.com/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixelart Converters
* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor
* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker) , [Pixel Sprite](https://deep-fold.itch.io/pixel-sprite-generator) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator
* [Pixelicious](https://www.pixelicious.xyz/) - Image to Pixel Art Converter
* [Pal](https://pal.constraint.systems/) - Apply 8-bit Terminal Color Palettes to Images
* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor
* [Petmate](https://nurpax.github.io/petmate/) - C64 PETSCII Image Editor
* [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Scale Pixel Art w/o Quality Loss
***
## ▷ Icons / SVGs
* 🌐 **[Awesome Icons](https://github.com/notlmn/awesome-icons)**, **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#icons)** or **[Free Icons](https://www.iconshock.com/freeicons/)** - Icon Indexes
* ↪️ **[Icon Drives](https://rentry.co/FMHYBase64#icon-drives)** - Icon Drives
***[SVG Repo](https://www.svgrepo.com/)** - Customizable SVG Icons / Vectors
***[icons8](https://icons8.com/icons)**, [Flaticon](https://www.flaticon.com/), [Devicon](https://devicon.dev/) or [Glyphs](https://glyphs.fyi/) - Customizable Icons
***[Alphacoders Avatars](https://avatars.alphacoders.com/)** - PFP Icons / GIFs
* [FontIcon](https://gauger.io/fonticon/), [PFPMaker](https://pfpmaker.com/), [IconsFlow](https://iconsflow.com/), [Flat-Icon-Surge](https://flat-icon.surge.sh/), [favicon.io](https://favicon.io/) or [Favic-o-Matic](https://favicomatic.com/) - Icon / Logo Generators
* [Logo Makr](https://logomakr.com/), [Logo Fast](https://shipfa.st/tools/logo-fast), [Hatchful](https://www.shopify.com/tools/logo-maker), [Logomak](https://logomak.com/), [The Logo Wizard](https://www.thelogowizard.com/), [DesignEvo](https://designevo.com/), [LogoFreeway](https://logofreeway.com/logos.php), [Logoshi](https://www.logoshi.com/), [OnlineLogoMaker](https://www.onlinelogomaker.com/), [Free Logo Maker](https://freelogomaker.net/), [LogoMaker](https://www.namecheap.com/logo-maker/app/new/) or [ACME](https://acme.com/labelmaker/) - Logo Creators / [Note](https://i.ibb.co/B3Mn3Hq/b7a4cf526ad1.png)
* [JSLogo](https://www.calormen.com/jslogo/) - Logo Interpreter
* [ArtFlow](https://app.artflow.ai/), [Photo A2E](https://photo.a2e.ai) [Avatar Mixer](https://kenney.itch.io/avatar-mixer), [Bitmoji](https://www.bitmoji.com/), [Avatar Maker](https://avatarmaker.com/), [Pravatar](https://pravatar.cc/), [MultiAvatar](https://multiavatar.com/), [Personas](https://personas.draftbit.com/), [react-nice-avatar](https://github.com/dapi-labs/react-nice-avatar) or [Avataaars](https://getavataaars.com/) - Face / Avatar Creators
* [Method](https://editor.method.ac/) - SVG Editor
* [SVGFilters](https://svgfilters.com/) - SVG Filter Builder
* [Crayon](https://designstripe.com/crayon) or [SVGArtista](https://svgartista.net/) - SVG Animation Tools
* [PixelMe](https://xsgames.co/pixelme/) - 8bit Avatar Creator
* [IconArchive](https://iconarchive.com/), [IconDuck](https://iconduck.com/), [icon icons](https://icon-icons.com/), [Icons-For-Free](https://icons-for-free.com/), [Streamline](https://www.streamlinehq.com/), [Dryicons](https://dryicons.com/) or [Icones](https://icones.js.org/) - Icon Packs
* [IconPacks](https://www.iconpacks.net/), [svgmix](https://svgmix.com/), [Iconbuddy](https://iconbuddy.app/), [Noun Project](https://thenounproject.com/) or [cappuccicons](https://cappuccicons.com/) - SVG / PNG Icons
* [Icofont](https://icofont.com/icons), [SimpleIcons](https://simpleicons.org/), [xIcons](https://xicons.org), [Polaris](https://polaris.shopify.com/icons), [Phosphor Icons](https://phosphoricons.com/), [IconFinder](https://www.iconfinder.com/), [Ant Design](https://ant.design/components/icon/) or [Orion](https://www.orioniconlibrary.com/) - SVG Icons
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
* [CaptainIconWeb](https://mariodelvalle.github.io/CaptainIconWeb/), [IconNinja](https://www.iconninja.com/), [Iconify](https://github.com/kyutefox/Iconify) or [IconHunt](https://www.iconhunt.site/) - Vector Icons
* [StyledIcons](https://styled-icons.dev/) - Import Icons as Styled Components
* [Teenyicons](https://teenyicons.com/) - Minimal 1px Icons
* [awsicons](https://awsicons.dev/) - AWS Icons
* [Game-icons](https://game-icons.net/) - Game Icons
* [HealthIcons](https://healthicons.org/) - Medical Icons
* [RealFaviconGenerator](https://realfavicongenerator.net/) - Favicon Generator * [RealFaviconGenerator](https://realfavicongenerator.net/) - Favicon Generator
*** ***
## ▷ Textures / Patterns ## ▷ Textures / Patterns
* [AmbientCG](https://ambientcg.com/) - Textures * [AmbientCG](https://ambientcg.com/) - Textures
* [TextureTown](https://textures.neocities.org/) - Textures * [TextureTown](https://textures.neocities.org/) - Textures
@@ -362,56 +307,53 @@
* [TexturesForFree](https://texturesforfree.com/) - Textures * [TexturesForFree](https://texturesforfree.com/) - Textures
* [fatstrawberry](https://www.fatstrawberry.co.uk/) - Textures * [fatstrawberry](https://www.fatstrawberry.co.uk/) - Textures
* [AnthonyBoyd](https://www.anthonyboyd.graphics/) - Textures * [AnthonyBoyd](https://www.anthonyboyd.graphics/) - Textures
* [MatLib](https://matlib.gpuopen.com/main/materials/all) - Textures
* [TextureNinja](https://texture.ninja/) - Textures
* [cgbookcase](https://www.cgbookcase.com/) - Textures * [cgbookcase](https://www.cgbookcase.com/) - Textures
* [Texture Collection](https://rentry.co/FMHYBase64#texture-collection) - Textures * [Texture Collection](https://rentry.co/FMHYBase64#texture-collection) - Textures
* [Subtle Patterns](https://www.toptal.com/designers/subtlepatterns/) - Patterns * [Subtle Patterns](https://www.toptal.com/designers/subtlepatterns/) - Patterns
* [Background Tiles](https://background-tiles.com/) - Patterns * [Background Tiles](https://background-tiles.com/) - Patterns
* [Pattern Collection](https://rentry.co/FMHYBase64#pattern-collection) - Patterns * [Pattern Collection](https://rentry.co/FMHYBase64#pattern-collection) - Patterns
* [ArmorLab](https://armorlab.org/), [Pixela](https://pixela.ai/), [Texture Library](https://www.texture-library.com/) or [TextureLab](https://www.texturelab.io/) - Texture Generators * [ArmorLab](https://armorlab.org/), [Pixela](https://pixela.ai/) or [TextureLab](https://www.texturelab.io/) - Texture Generators
* [TextureLab](https://njbrown.itch.io/texturelab) - Procedural Texture Generator / [GitHub](https://github.com/njbrown/texturelab) / [Discord](https://discord.com/invite/975NdQPsSc) * [Texture Lab](https://njbrown.itch.io/texturelab) - Procedural Texture Generator / [GitHub](https://github.com/njbrown/texturelab)
* [Material Maker](https://rodzilla.itch.io/material-maker) - Procedural Texture Creator * [Material Maker](https://rodzilla.itch.io/material-maker) - Procedural Texture Creator
* [DoodDad](https://doodad.dev/pattern-generator), [Repeater](https://repeater.space/), [PatternPad](https://patternpad.com/), [patternico](https://patternico.com/), [Repeater](https://www.richardwestenra.com/repeater/), [more.graphics](https://more.graphics/), [Valentina](https://gitlab.com/smart-pattern/valentina), [tylify](https://tylify.app/), [Patternizer](https://www.patternizer.com/) or [Haikei](https://app.haikei.app/) - Pattern Generators * [DoodDad](https://doodad.dev/pattern-generator), [Repeater](https://repeater.space/), [PatternPad](https://patternpad.com/), [patternico](https://patternico.com/), [Repeater](https://www.richardwestenra.com/repeater/), [more.graphics](https://more.graphics/), [Valentina](https://gitlab.com/smart-pattern/valentina), [tylify](https://tylify.app/) or [Haikei](https://app.haikei.app/) - Pattern Generators
* [Noise & Gradient](https://www.noiseandgradient.com/), [Gradient Designer](https://gradient-designer.csspost.com/), [BGJar](https://bgjar.com/), [MeshGradient](https://meshgradient.in/) or [BGGenerator](https://bggenerator.com/) - Background / Gradient Generators * [Noise & Gradient](https://www.noiseandgradient.com/), [Gradient Designer](https://gradient-designer.csspost.com/), [BGJar](https://bgjar.com/), [MeshGradient](https://meshgradient.in/) or [BGGenerator](https://bggenerator.com/) - Background / Gradient Generators
* [Hide.Lizz](https://hide.lizz.website/) - Camouflage Pattern Generator * [Hide.Lizz](https://hide.lizz.website/) - Camouflage Pattern Generator
* [Tabbied](https://tabbied.com/) or [Slopes](https://tinkersynth.com/slopes/) - Art Pattern Generators * [Tabbied](https://tabbied.com/) or [Slopes](https://tinkersynth.com/slopes/) - Art Pattern Generators
* [05x5](https://csh.bz/line/05x5.html) - Rainbow Pattern Generator
* [Generative Landscapes](https://generativelandscapes.wordpress.com/) - Generative Landscape Blog * [Generative Landscapes](https://generativelandscapes.wordpress.com/) - Generative Landscape Blog
* [Mixer](https://quixel.com/mixer) - 3D Texture Creation Software * [Mixer](https://quixel.com/mixer) - 3D Texture Creation Software
* [The Textures Resource](https://www.textures-resource.com/) - Game Textures * [The Textures Resource](https://www.textures-resource.com/) - Game Textures
* [Trianglify.io](https://trianglify.io/) - Low-Poly Texture Generator * [Trianglify.io](https://trianglify.io/) - Low-Poly Texture Generator
* [Replacement Sky](https://replacement-sky.com/) - Skies for Photoshop
*** ***
## ▷ Free Assets ## ▷ Free Assets
***[FreePreset](https://freepreset.net/)** ***[FreePreset](https://freepreset.net/)**
* [UnliPresets](https://www.unlipresets.com/)
* [Gumroad](https://discover.gumroad.com/) (Enter $0)
* [psdkeys](https://psdkeys.com/) * [psdkeys](https://psdkeys.com/)
* [AvaxGFX](https://avxgfx.com/) * [AvaxGFX](https://avxgfx.com/)
* [Freeject](https://www.freeject.net/) * [Freeject](https://www.freeject.net/)
* [PDFTree](https://pngtree.com/) * [PDFTree](https://pngtree.com/)
* [NitroGFX](https://nitrogfx.pro/) * [NitroGFX](https://nitrogfx.pro/)
* [TianUI](https://www.titanui.com/)
* [Designer Candies](https://designercandies.net/category/freebies/) * [Designer Candies](https://designercandies.net/category/freebies/)
* [GraphixTree](https://graphixtree.com/) * [GraphixTree](https://graphixtree.com/)
* [PSDLY](https://www.psdly.com/) * [PSDLY](https://www.psdly.com/)
* [Heroturko](https://heroturko1.com/) * [Heroturko](https://heroturko1.com/)
* [CGArchives](https://cgarchives.com/) * [CGArchives](https://cgarchives.com/)
* [CGPlugin](https://t.me/s/cgplugin)
* [SearchGFX](https://searchgfx.com/) * [SearchGFX](https://searchgfx.com/)
* [Quasual](https://m.vk.com/quasual) * [Quasual](https://m.vk.com/quasual)
* [designersgan9](https://m.vk.com/designersgan9) * [designersgan9](https://m.vk.com/designersgan9)
* [WockupWorld](https://m.vk.com/mockupworld) * [WockupWorld](https://m.vk.com/mockupworld)
* [The GFX](https://m.vk.com/the_gfx) * [The GFX](https://m.vk.com/the_gfx)
* [Graphics Materials](https://vk.com/topic-178186634_39330245) * [Graphics Materials](https://vk.com/topic-178186634_39330245)
* [desiignertm](https://vk.com/desiignertm) * [desiignertm](https://vk.com/desiignertm)
* [all_psd](https://vk.com/all_psd) * [all_psd](https://vk.com/all_psd)
* [designbloody](https://vk.com/designbloody) * [designbloody](https://vk.com/designbloody)
* [designarchiv](https://t.me/designarchiv) * [designarchiv](https://t.me/designarchiv)
* [grphc dsgn](https://t.me/+xx1YjI6DC4RiZjJk) * [grphc dsgn](https://t.me/+xx1YjI6DC4RiZjJk)
* [freepsdvn](https://freepsdvn.com/) * [freepsdvn](https://freepsdvn.com/)
* [graphicex](https://graphicex.com/)
* [ae-project](https://ae-project.su/) * [ae-project](https://ae-project.su/)
* [godownloads](https://godownloads.net/) * [godownloads](https://godownloads.net/)
@@ -424,7 +366,6 @@
***[Thingiverse](https://www.thingiverse.com/)**, [Yeggi](https://www.yeggi.com/) or [YouImagine](https://www.youmagine.com/) - 3D Printer Models ***[Thingiverse](https://www.thingiverse.com/)**, [Yeggi](https://www.yeggi.com/) or [YouImagine](https://www.youmagine.com/) - 3D Printer Models
* [ModelViewer](https://modelviewer.dev/) or [F3D](https://f3d.app/) - 3D Model Viewers * [ModelViewer](https://modelviewer.dev/) or [F3D](https://f3d.app/) - 3D Model Viewers
* [Anaglyph Maker](https://www.stereoeye.jp/software/index_e.html) - Make 3D Images * [Anaglyph Maker](https://www.stereoeye.jp/software/index_e.html) - Make 3D Images
* [TripoSR](https://huggingface.co/spaces/stabilityai/TripoSR) - 2D to 3D Image Converter
* [Vectary](https://www.vectary.com/) - Online 3D Image Editor * [Vectary](https://www.vectary.com/) - Online 3D Image Editor
* [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter * [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter
* [OpenSCAD](https://openscad.org/) or [Mayo](https://github.com/fougue/mayo) - 3D CAD Modelers * [OpenSCAD](https://openscad.org/) or [Mayo](https://github.com/fougue/mayo) - 3D CAD Modelers
@@ -446,12 +387,12 @@
* [Armorpaint](https://armorpaint.org/) - 3D Painting * [Armorpaint](https://armorpaint.org/) - 3D Painting
* [SculptGL](https://stephaneginier.com/sculptgl/) - 3D Sculpting * [SculptGL](https://stephaneginier.com/sculptgl/) - 3D Sculpting
* [Perspective Grid](https://www.reubenlara.com/perspectivegrid/) - 3D Perspective Tool * [Perspective Grid](https://www.reubenlara.com/perspectivegrid/) - 3D Perspective Tool
* [Skybox](https://skybox.blockadelabs.com/) - AI Generated 3D Environments * [Skybox](https://skybox.blockadelabs.com/) - AI Generated 3D Environments
* [Assemblr](https://www.assemblrworld.com/) - Augmented Reality Image Creator * [Assemblr](https://www.assemblrworld.com/) - Augmented Reality Image Creator
* [MeshLab](https://www.meshlab.net/) - 3D Mesh Processing / [GitHub](https://github.com/cnr-isti-vclab/meshlab) * [MeshLab](https://www.meshlab.net/) - 3D Mesh Processing / [GitHub](https://github.com/cnr-isti-vclab/meshlab)
* [CadHub](https://cadhub.xyz/) - Community Hub for CAD Projects * [CadHub](https://cadhub.xyz/) - Community Hub for CAD Projects
* [MakeHuman](http://www.makehumancommunity.org/) - 3D Humanoid Modeler * [MakeHuman](http://www.makehumancommunity.org/) - 3D Humanoid Modeler
* [PoseMy](https://app.posemy.art/), [SetPose](https://setpose.com/), [DesignDoll](https://terawell.net/en/index.php), [MagicPoser](https://magicposer.com/), [quickposes](https://quickposes.com/en) or [justsketch](https://app.justsketch.me/) - Posing Tools * [PoseMy](https://app.posemy.art/), [SetPose](https://setpose.com/), [MagicPoser](https://magicposer.com/), [quickposes](https://quickposes.com/en) or [justsketch](https://app.justsketch.me/) - Posing Tools
* [PoseManiacs](https://www.posemaniacs.com/), [Anatomy Doc](https://photos.google.com/share/AF1QipMbaSTp0BlK1kBCKVvfZzyDhcgCZQuaDBbp8v8Lj6hxnBaNh7YWoKwCPCYr-10--A?pli=1&key=cU5OaV9TVWhoMWlVZERnaEc2YVFKQTJHbnVDeWR3), [Adorkastock](https://www.adorkastock.com/) or [Anatomy360](https://anatomy360.info/anatomy-scan-reference-dump/) - Pose References * [PoseManiacs](https://www.posemaniacs.com/), [Anatomy Doc](https://photos.google.com/share/AF1QipMbaSTp0BlK1kBCKVvfZzyDhcgCZQuaDBbp8v8Lj6hxnBaNh7YWoKwCPCYr-10--A?pli=1&key=cU5OaV9TVWhoMWlVZERnaEc2YVFKQTJHbnVDeWR3), [Adorkastock](https://www.adorkastock.com/) or [Anatomy360](https://anatomy360.info/anatomy-scan-reference-dump/) - Pose References
* [FaceMaker](http://facemaker.uvrg.org/) - 3D Face / Avatar Generator * [FaceMaker](http://facemaker.uvrg.org/) - 3D Face / Avatar Generator
* [Recursivity](https://gregtatum.com/poems/recursive/5/) - 3D Tree Creator * [Recursivity](https://gregtatum.com/poems/recursive/5/) - 3D Tree Creator
@@ -465,35 +406,88 @@
*** ***
## ▷ [Animation Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_animation_tools)
***
# ► Image Generation
* ↪️ **[AI Image Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_image_generation)**
* [imgsli](https://imgsli.com/) - Before & After Slider Generator
* [Hugin](https://hugin.sourceforge.io/) - Panorama Image Generator
* [CharacterCreator](https://charactercreator.org/) - Character Generator
* [99 Avatars](https://99avatars.com/) - Create Doodle Avatar
* [FontSVG](https://fontsvg.com/) - Convert Font, Icon, Glyph to SVG
* [Mimi](https://mimi-panda.com/) - Create Coloring Pages from Photos
* [Text-Image](https://www.text-image.com/) - Text Image Generator
* [Photovisi](https://www.photovisi.com/) or [PhotoJoiner](https://www.photojoiner.com/) - Collage Generators
* [Tiler](https://github.com/nuno-faria/tiler) - Make Images out of Images
* [NoiseDeck](https://noisedeck.app/) - Art Generator
* [Pulp-O-Mizer](https://thrilling-tales.webomator.com/derange-o-lab/pulp-o-mizer/pulp-o-mizer.html ) - Vintage Magazine Cover Generator
* [Mirro-Ai](https://mirror-ai.com/) - Get Stickers w/ Your Face
***
## ▷ GIF Tools
* 🌐 **[Awesome GIF](https://rentry.co/ccuz3)** - GIF Resources / [GitHub](https://github.com/davisonio/awesome-gif)
* 🌐 **[Online GIF Tools](https://onlinegiftools.com/)** - GIF Tools
* [Giphy](https://giphy.com/), [Tenor](https://tenor.com/), [Gifer](https://gifer.com/en), [Curlie GIFs](https://curlie.org/en/Computers/Graphics/Web/Free/Animated_GIFs), [GifCities](https://gifcities.org/), [Animations](https://bleuje.com/animationsite/) or [GIFBin](https://gifbin.com/) - View / Download GIFs
* [/r/animegifs](https://www.reddit.com/r/animegifs/) - View / Download Anime GIFs
* [EZGif](https://ezgif.com/), [GIFCurry](https://lettier.github.io/gifcurry/) / [GitHub](https://github.com/lettier/gifcurry), [Giflr](https://giflr.com/), [GIFMemes](https://gifmemes.io/), [GIFnText](https://www.gifntext.com/), [makeagif](https://makeagif.com/), [Gifsicle](http://www.lcdf.org/gifsicle/) or [Pixteller](https://pixteller.com/) - GIF Creators / Editors
* [EatMyArt](https://www.eatmy.art/), [DrawIsland](https://drawisland.com/) or [Sketch Machine](https://sketchmachine.net/) - Create GIFs from Drawings
* [Kinegram](https://kinegram.app/) - Kinegram GIF Creator
* [GifRun](https://gifrun.com/) - Make GIFs from Online Videos
* [ScreenToGif](https://www.screentogif.com/) or [Peek](https://github.com/phw/peek) - GIF Recorder
* [ugiffer](https://iobureau.com/ugiffer/) or [licecap](https://www.cockos.com/licecap/) - Create GIFs via Screencasts
* [TokkingHeads](https://app.tokkingheads.com/) - Face Movement GIFs
* [petpet](https://benisland.neocities.org/petpet/) - Headpatting GIF Maker
* [Gifski](https://gif.ski/) - GIF Encoder
***
## ▷ Meme Makers
* [ImgFlip](https://imgflip.com/memegenerator), [Meme Generator](https://www.memegenerator.top/), [Meme Town](https://meme.town/), [MemeBetter](https://memebetter.com/), [meme-generator](https://newfastuff.com/meme-generator/) or [Emacs Meme Generator](https://github.com/larsmagne/meme) - Meme Creators
* [MemeCam](https://www.memecam.io/) - AI Meme Generator
* [Memegine](https://memegine.com/) - Meme Search Engine
* [MemeAtlas](https://www.memeatlas.com/) or [Templates](https://drive.google.com/drive/folders/1Z4PSi2XmZ6x8I891xZSg5Cl4oNEOIRhh) - Meme Templates
* [iFake](https://ifaketextmessage.com/) - Make Fake Text Conversation
* [Frinkiac](https://frinkiac.com/) - Simpsons Meme Generator
* [Morbotron](https://morbotron.com/) - Futurama Meme Generator
* [BreakYourOwnNews](https://www.breakyourownnews.com/) - Breaking News Meme Generator
* [AnimorphGenerator](https://animorphgenerator.com/) - Animorph Image Generator
***
# ► Download Images # ► Download Images
* 🌐 **[2ndBrain](https://rentry.co/2ndBrain)** or [designer](https://start.me/p/jj0JAp/designer) - Image Download Site Indexs * 🌐 **[Image Download Site Index](https://start.me/p/jj0JAp/designer)** - Image Download Site Index
* ↪️ **[Image Download Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_image_download_extensions)** * ↪️ **[Image Download Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_image_download_extensions)**
* ↪️ **[Random Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_random_generators)** * ↪️ **[Random Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_random_generators)**
* ↪️ **[PNG Images / Clipart](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_png_images_.2F_clipart)**
* ↪️ **[AI Galleries](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_prompts_.2F_galleries)** * ↪️ **[AI Galleries](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_prompts_.2F_galleries)**
* ↪️ **[Media Covers / Posters](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_covers_.2F_posters)** * ↪️ **[Media Covers / Posters](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_covers_.2F_posters)**
***[Search Anything](https://search.anything.io/)** - Image Search Engine ***[Search Anything](https://search.anything.io/)** - Image Search Engine
***[gallery-dl](https://github.com/mikf/gallery-dl)**, [RipMe](https://github.com/RipMeApp2/ripme), [ImgDownloader](https://imgdownloader.com/), [SCrawler](https://github.com/AAndyProgram/SCrawler) / [Discord](https://discord.gg/uFNUXvFFmg) or [Image Extractor](https://extract.pics/) - Image Download Tools ***[gallery-dl](https://github.com/mikf/gallery-dl)**, [RipMe](https://github.com/RipMeApp/ripme), [ImgDownloader](https://imgdownloader.com/), [SCrawler](https://github.com/AAndyProgram/SCrawler) or [Image Extractor](https://extract.pics/) - Image Download Tools
* [same.energy](https://same.energy/) - Visual Search Engine
* [Dezoomify](https://dezoomify.ophir.dev/) - Download Zoomable Images * [Dezoomify](https://dezoomify.ophir.dev/) - Download Zoomable Images
* [Clip Retrieval](https://rom1504.github.io/clip-retrieval/) - Clip Retrieval System * [Clip Retrieval](https://rom1504.github.io/clip-retrieval/) - Clip Retrieval System
* [PicTriev](http://www.pictriev.com/) - Find Look-Alike Images * [PicTriev](http://www.pictriev.com/) - Find Look-Alike Images
* [pfps.gg](https://pfps.gg/) - Profile Picture Index * [pfps.gg](https://pfps.gg/) - Profile Picture Index
* [OpenMoji](https://openmoji.org/) - Emojis * [OpenMoji](https://openmoji.org/) - Emojis
* [PixelJoint](https://pixeljoint.com/) or [rsrcs](https://rentry.co/rsrcs) - Pixel Art * [PixelJoint](https://pixeljoint.com/) - Pixel Art
* [PimpMyDrawing](https://pimpmydrawing.com/) - Human Silhouettes * [PimpMyDrawing](https://pimpmydrawing.com/) - Human Silhouettes
* [Film.ai](https://beta.flim.ai/) or [Film Grab](https://film-grab.com/) - Movie Screenshots * [Film.ai](https://beta.flim.ai/) or [Film Grab](https://film-grab.com/) - Movie Screenshots
* [CleanPNG](https://www.cleanpng.com/), [PNGWing](https://www.pngwing.com/), [PNGEgg](https://www.pngegg.com/), [AnyRGB](https://www.anyrgb.com/), [HiClipart](https://www.hiclipart.com/), [HDClipArtAll](https://hdclipartall.com/), [pngmart](https://www.pngmart.com/), [pngall](https://www.pngall.com/), [pngplay](https://www.pngplay.com/), [freepngimg](https://www.freepngimg.com/), [KindPNG](https://www.kindpng.com/), [FreePNGLogos](https://www.freepnglogos.com/), [PNGFind](https://www.pngfind.com), [PikPng](https://www.pikpng.com/), [PNGHero](https://pnghero.com/) or [PNGHut](https://pnghut.com/) - PNG Images / Clipart
* [Footyrenders](https://www.footyrenders.com/) - Football Related Images * [Footyrenders](https://www.footyrenders.com/) - Football Related Images
* [PSDGraphics](https://www.psdgraphics.com/) - PSD Files * [PSDGraphics](https://www.psdgraphics.com/) - PSD Files
* [The NFT Bay](https://thenftbay.org/) or [Extremely Fungible Tokens](https://www.extremelyfungible.com/) - Free NFTs * [The NFT Bay](https://thenftbay.org/) or [Extremely Fungible Tokens](https://www.extremelyfungible.com/) - Free NFTs
* [Artvee](https://artvee.com/) - Public Domain Artwork * [Artvee](https://artvee.com/) - Public Domain Artwork
* [Behance](https://behance.net/) - Design Projects * [Behance](https://behance.net/) - Design Projects
* [Placeit](https://placeit.net/) - Image Templates * [Placeit](https://placeit.net/) - Image Templates
* [Worldvectorlogo](https://worldvectorlogo.com/), [Logos & Badges Bundle](https://rentry.co/FMHYBase64#logos-badges-bundle), [Brands of the World](https://www.brandsoftheworld.com/), [Logos Download](https://logos-download.com/), [Logodust](https://logodust.com/), [Logowik](https://logowik.com/), [Logo Wine](https://www.logo.wine/), [seeklogo](https://seeklogo.net/), [logospire](https://logospire.com/), [LogoSearch](https://logosear.ch/), [logopond](https://logopond.com/), [SuperTinyIcons](https://edent.github.io/SuperTinyIcons/), [logotouse](https://www.logotouse.com/), [brandeps](https://brandeps.com/), [logolounge](https://www.logolounge.com/), [logomoose](https://www.logomoose.com/) - Logo Designs * [Worldvectorlogo](https://worldvectorlogo.com/), [Logos & Badges Bundle](https://rentry.co/FMHYBase64#logos-badges-bundle), [Brands of the World](https://www.brandsoftheworld.com/), [Logos Download](https://logos-download.com/), [Logodust](https://logodust.com/), [Logowik](https://logowik.com/), [Logo Wine](https://www.logo.wine/), [seeklogo](https://seeklogo.net/), [logospire](https://logospire.com/), [LogoSearch](https://logosear.ch/), [logopond](https://logopond.com/), [logotouse](https://www.logotouse.com/), [brandeps](https://brandeps.com/), [logolounge](https://www.logolounge.com/), [logomoose](https://www.logomoose.com/) - Logo Designs
* [MariaLetta](https://github.com/MariaLetta/mega-doodles-pack) - Free Doodles * [MariaLetta](https://github.com/MariaLetta/mega-doodles-pack) - Free Doodles
* [Watercolor Collection](https://rentry.co/FMHYBase64#watercolor-collection) - Download Watercolor Pictures * [Watercolor Collection](https://rentry.co/FMHYBase64#watercolor-collection) - Download Watercolor Pictures
* [googleimagerestored](https://git.sr.ht/~fanfare/googleimagesrestored) - Old Google Image Search * [googleimagerestored](https://git.sr.ht/~fanfare/googleimagesrestored) - Old Google Image Search
* [Block Posters](https://www.blockposters.com/), [PosterRazor](https://posterazor.sourceforge.io/) or [Rasterbator](https://rasterbator.net/) - Create Printable Posters * [Block Posters](https://www.blockposters.com/), [PosterRazor](https://posterazor.sourceforge.io/) or [Rasterbator](https://rasterbator.net/) - Create Printable Posters
*** ***
@@ -501,17 +495,17 @@
## ▷ Reverse Image Search ## ▷ Reverse Image Search
***[Search by Image](https://github.com/dessant/search-by-image)** - Browser Extension ***[Search by Image](https://github.com/dessant/search-by-image)** - Browser Extension
***[SauceNao](https://saucenao.com/)** - Multi Site Search / [Extension](https://saucenao.com/tools/) ***[TinEye](https://tineye.com/)** - Fast Image Search / [Extension](https://tineye.com/extensions)
***[SmartImage](https://github.com/Decimation/SmartImage)** - Multi Site Search App ***[same.energy](https://same.energy/)** - Visual Search Engine
***[SmartImage](https://github.com/Decimation/SmartImage)** - Multi Search App
***[Yandex Images](https://yandex.com/images/)** - Image Search ***[Yandex Images](https://yandex.com/images/)** - Image Search
***[TinEye](https://tineye.com/)** - Image Search / [Extension](https://tineye.com/extensions)
* [IQDB](https://iqdb.org/) - Multi Site Search
* [Google Images](https://images.google.com/) - Image Search * [Google Images](https://images.google.com/) - Image Search
* [CopySeeker](https://copyseeker.net/) - Image Search * [CopySeeker](https://copyseeker.net/) - Image Search
* [MaxURL](https://qsniyg.github.io/maxurl/) - Larger Image Search / [GitHub](https://github.com/qsniyg/maxurl)
* [VISE](https://www.robots.ox.ac.uk/~vgg/software/vise/) - Image Search with Search Queries * [VISE](https://www.robots.ox.ac.uk/~vgg/software/vise/) - Image Search with Search Queries
* [SauceNao](https://saucenao.com/) - Multi Search / [Extension](https://saucenao.com/tools/)
* [Have I Been Trained?](https://haveibeentrained.com/) - AI Image Search * [Have I Been Trained?](https://haveibeentrained.com/) - AI Image Search
* [RootAbout](https://rootabout.com/) - Archive / OpenLibrary Reverse Image Search * [RootAbout](https://rootabout.com/) - Archive / OpenLibrary Reverse Image Search
* [PimEyes](https://pimeyes.com/en/) - Reverse Face Image Search
* [Multicolr](https://labs.tineye.com/multicolr/) - Color-Based Image Search * [Multicolr](https://labs.tineye.com/multicolr/) - Color-Based Image Search
* [trace.moe](https://trace.moe/) or [Saucekudasai](https://saucekudasai.com/) - Anime Reverse Image Search * [trace.moe](https://trace.moe/) or [Saucekudasai](https://saucekudasai.com/) - Anime Reverse Image Search
@@ -520,27 +514,18 @@
## ▷ Stock Images ## ▷ Stock Images
* 🌐 **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#photography)** - Stock Photo Index * 🌐 **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#photography)** - Stock Photo Index
***[GetPaidStock](https://getpaidstock.com/)**, **[DownPic](https://downpic.cc)**, **[Downloader.la](https://downloader.la/)**,[SystemErrorStock](https://t.me/SystemErrorStock) or [istock](https://istock.7xm.xyz/) - Paid Stock Photo Downloaders
***[EveryPixel](https://www.everypixel.com/)** or [LibreStock](https://librestock.com/) - Stock Photo Search Engines ***[EveryPixel](https://www.everypixel.com/)** or [LibreStock](https://librestock.com/) - Stock Photo Search Engines
* [PxHere](https://pxhere.com/) - Stock Photos * **[GetPaidStock](https://getpaidstock.com/)**, **[DownPic](https://downpic.cc)**, **[Downloader.la](https://downloader.la/)**, [VisualHunt](https://visualhunt.com/), [SystemErrorStock](https://t.me/SystemErrorStock) or [istock](https://istock.7xm.xyz/) - Download Paid Stock Photos
* [Adobe Stock](https://stock.adobe.com/free) - Stock Photos * [PxHere](https://pxhere.com/), [Adobe Stock](https://stock.adobe.com/free), [themeisle](https://mystock.themeisle.com/), [burst](https://burst.shopify.com/), [Hippopx](https://www.hippopx.com/), [focastock](https://focastock.com/), [4freephotos](https://www.4freephotos.com/) or [Pikwizard](https://pikwizard.com/) - Misc Stock Photos
* [themeisle](https://mystock.themeisle.com/) - Stock Photos
* [burst](https://burst.shopify.com/) - Stock Photos
* [Hippopx](https://www.hippopx.com/) - Stock Photos
* [BarnImages](https://barnimages.com/) - Stock Photos
* [Pixnio](https://pixnio.com/) - Stock Photos
* [focastock](https://focastock.com/) - Stock Photos
* [Pikwizard](https://pikwizard.com/) - Stock Photos
* [Lummi](https://www.lummi.ai/) - AI Generated Stock Photos
* [Smithsonian Open Access](https://www.si.edu/OpenAccess) - Smithsonian High-Quality Photos * [Smithsonian Open Access](https://www.si.edu/OpenAccess) - Smithsonian High-Quality Photos
* [desirefx](https://desirefx.me/category/stock_images/) - Stock Photo Overlays * [desirefx](https://desirefx.me/category/stock_images/) - Stock Photo Overlays
* [creativity103](https://creativity103.com/) - Abstract Background Photos * [creativity103](https://creativity103.com/) - Abstract Background Photos
* [freenaturestock](https://freenaturestock.com/) - Nature Photos * [freenaturestock](https://freenaturestock.com/) - Nature Photos
* [Warren Photographic](https://www.warrenphotographic.co.uk/index.php) - Animal Photos * [Warren Photographic](https://www.warrenphotographic.co.uk/index.php) - Animal Photos
* [PhyloPic](https://www.phylopic.org/) - Animal Silhouettes
* [diverseui](https://diverseui.com/) - Human Face Photos * [diverseui](https://diverseui.com/) - Human Face Photos
* [Foodiesfeed](https://www.foodiesfeed.com/) - Food Photos * [Foodiesfeed](https://www.foodiesfeed.com/) - Food Photos
* [iwaria](https://iwaria.com/) - African Photos * [iwaria](https://iwaria.com/) - African Photos
* [Freely Photos](https://www.freelyphotos.com/) - Christian Photos
* [twnsnd](https://nos.twnsnd.co/) - Vintage Photos * [twnsnd](https://nos.twnsnd.co/) - Vintage Photos
* [PNGIMG](https://pngimg.com/) or [stickpng](https://www.stickpng.com/) - PNG Photos * [PNGIMG](https://pngimg.com/) or [stickpng](https://www.stickpng.com/) - PNG Photos
* [gfxmountain](https://gfxmountain.com/stock-photos/) - Stock Photo Collections * [gfxmountain](https://gfxmountain.com/stock-photos/) - Stock Photo Collections
@@ -548,7 +533,7 @@
* [Flickr Commons](https://www.flickr.com/commons) / [Downloader](https://github.com/beaufour/flickr-download) - Public Photo Archives * [Flickr Commons](https://www.flickr.com/commons) / [Downloader](https://github.com/beaufour/flickr-download) - Public Photo Archives
* [Shutterstock Premium](https://t.me/shutterstockpremium), [freestockphotos](https://t.me/freestockphotos) or [Shutter](https://t.me/Shutter) - Shutterstock Telegram Downloaders * [Shutterstock Premium](https://t.me/shutterstockpremium), [freestockphotos](https://t.me/freestockphotos) or [Shutter](https://t.me/Shutter) - Shutterstock Telegram Downloaders
* [Nohat](https://nohat.cc/), [FreeImages](https://www.freeimages.com/), [cgispread](https://cgispread.com/), [Vecteezy](https://www.vecteezy.com/) or [FreeDesignFile](https://freedesignfile.com/) - Misc Stock Photos / Vectors * [Nohat](https://nohat.cc/), [FreeImages](https://www.freeimages.com/), [cgispread](https://cgispread.com/), [Vecteezy](https://www.vecteezy.com/) or [FreeDesignFile](https://freedesignfile.com/) - Misc Stock Photos / Vectors
* [argfx](https://argfx.co/), [publicdomainvectors](https://publicdomainvectors.org/), [Free Vector](https://www.freevector.com/), [VectorJunky](https://www.vectorjunky.com/), [freevectors](https://www.freevectors.net/) or [vector4free](https://www.vector4free.com/) - Misc Vectors * [argfx](https://argfx.co/), [publicdomainvectors](https://publicdomainvectors.org/), [Free Vector](https://www.freevector.com/), [freevectors](https://www.freevectors.net/) or [vector4free](https://www.vector4free.com/) - Misc Vectors
* [VectorPortal](https://www.vectorportal.com/) - Vector Collections * [VectorPortal](https://www.vectorportal.com/) - Vector Collections
* [123freevectors](https://www.123freevectors.com/) - Background Vectors * [123freevectors](https://www.123freevectors.com/) - Background Vectors
@@ -557,17 +542,13 @@
## ▷ Art / Illustrations ## ▷ Art / Illustrations
***[Kemono](https://kemono.su/)** - Patreon Content / Some NSFW / Use Adblock ***[Kemono](https://kemono.su/)** - Patreon Content / Some NSFW / Use Adblock
***[DeviantArt](https://www.deviantart.com/)** - User-Made Art / Fanart / [Downloader](https://github.com/NC22/KellyC-Image-Downloader) ***[DeviantArt](https://www.deviantart.com/)** - Western Fanart / [Downloader](https://github.com/NC22/KellyC-Image-Downloader)
***[Pixiv](https://www.pixiv.net/)** - Japanese Fanart ***[Pixiv](https://www.pixiv.net/)** - Japanese Fanart
***Pixiv Tools** - [Downloader](https://chromewebstore.google.com/detail/pixiv-toolkit/ajlcnbbeidbackfknkgknjefhmbngdnjen), [2](https://github.com/Nandaka/PixivUtil2), [3](https://github.com/xuejianxianzun/PixivBatchDownloader), [4](https://greasyfork.org/en/scripts/432150-pixiv-downloader) / [Rankings](https://pixiv.navirank.com/) / [Frontend](https://pixiv.pics/), [2](https://codeberg.org/VnPower/pixivfe) / [Preview](https://github.com/NightLancer/PixivPreview), [2](https://github.com/ppixiv/ppixiv) / [Android](https://github.com/Notsfsssf/pixez-flutter/blob/master/.github/README_en.md) ***Pixiv Tools** - [Downloader](https://chromewebstore.google.com/detail/pixiv-toolkit/ajlcnbbeidbackfknkgknjefhmbngdnjen), [2](https://github.com/Nandaka/PixivUtil2), [3](https://github.com/xuejianxianzun/PixivBatchDownloader), [4](https://greasyfork.org/en/scripts/432150-pixiv-downloader) / [Rankings](https://pixiv.navirank.com/) / [Frontend](https://pixiv.pics/), [2](https://codeberg.org/VnPower/pixivfe) / [Preview](https://github.com/NightLancer/PixivPreview), [2](https://github.com/ppixiv/ppixiv) / [Android](https://github.com/Notsfsssf/pixez-flutter/blob/master/.github/README_en.md)
***[Danbooru](https://danbooru.donmai.us/)** / [SFW Only](https://safebooru.donmai.us/), [Sankaku Complex](https://chan.sankakucomplex.com/) or [yande.re](https://yande.re/) - Anime-Style Image Booru / [Donwloader](https://github.com/kuanyui/BooruShinshi) ***[Danbooru](https://danbooru.donmai.us/)** / [SFW Only](https://safebooru.donmai.us/), [Sankaku Complex](https://chan.sankakucomplex.com/) or [yande.re](https://yande.re/) - Anime-Style Image Booru / [Donwloader](https://github.com/kuanyui/BooruShinshi)
***[hydrus](https://hydrusnetwork.github.io/hydrus/)** - Booru-Style Media Tagger / [GitHub](https://github.com/hydrusnetwork/hydrus) ***[hydrus](https://hydrusnetwork.github.io/hydrus/)** - Booru-Style Media Tagger / [GitHub](https://github.com/hydrusnetwork/hydrus)
***[booruwf](https://booru.pixiv.pics/)** - Booru Aggregator / [Alternate Layout](https://moeview.pixiv.pics/) / [GitHub](https://github.com/asadahimeka/booruwf-web) ***[booruwf](https://booru.pixiv.pics/)** - Booru Aggregator / [Alternate Layout](https://moeview.pixiv.pics/) / [GitHub](https://github.com/asadahimeka/booruwf-web)
* [Buzzly](https://buzzly.art/) - User-Made Art / Fanart * [ArtStation](https://www.artstation.com/) / [Downloader](https://github.com/findix/ArtStationDownloader)
* [Artfol](https://www.artfol.co/) - User-Made Art / Fanart
* [Cara](https://cara.app/) - User-Made Art / Fanart
* [InkBlot](https://inkblot.art/) - User-Made Art / Fanart
* [ArtStation](https://www.artstation.com/) - User-Made Art / Fanart / [Downloader](https://github.com/findix/ArtStationDownloader)
* [Gelbooru](https://gelbooru.com/), [Safebooru](https://safebooru.org/) or [TBIB](https://tbib.org/) - Image Boorus * [Gelbooru](https://gelbooru.com/), [Safebooru](https://safebooru.org/) or [TBIB](https://tbib.org/) - Image Boorus
* [icons8](https://icons8.com/illustrations), [3D Illustrations](https://3d.khagwal.co/), [3dbay](https://clouddevs.com/3dbay/) or [NS-illustration-pack](https://github.com/nsobolewart/NS-illustration-pack) - 3D Illustrations * [icons8](https://icons8.com/illustrations), [3D Illustrations](https://3d.khagwal.co/), [3dbay](https://clouddevs.com/3dbay/) or [NS-illustration-pack](https://github.com/nsobolewart/NS-illustration-pack) - 3D Illustrations
* [StorySet](https://storyset.com/), [unDraw](https://undraw.co/illustrations), [blush](https://blush.design/) or [Humaaans](https://www.humaaans.com/) - Customizable Illustrations * [StorySet](https://storyset.com/), [unDraw](https://undraw.co/illustrations), [blush](https://blush.design/) or [Humaaans](https://www.humaaans.com/) - Customizable Illustrations
@@ -579,7 +560,7 @@
* [Plant Illustrations](http://www.plantillustrations.org/) - Plant Illustrations * [Plant Illustrations](http://www.plantillustrations.org/) - Plant Illustrations
* [Flexbooru](https://github.com/flexbooru/flexbooru), [BooruSphere](https://github.com/nullxception/boorusphere), [Yummybooru](https://github.com/Yochyo/Yummybooru) or [Animes Boxes](https://animebox.es/) - Booru Clients / [Telegram](https://t.me/Flexbooru/161) * [Flexbooru](https://github.com/flexbooru/flexbooru), [BooruSphere](https://github.com/nullxception/boorusphere), [Yummybooru](https://github.com/Yochyo/Yummybooru) or [Animes Boxes](https://animebox.es/) - Booru Clients / [Telegram](https://t.me/Flexbooru/161)
* [Buhitter](https://buhitter.com/) - Twitter Illustration Search * [Buhitter](https://buhitter.com/) - Twitter Illustration Search
* [imgbrd-grabber](https://www.bionus.org/imgbrd-grabber/) - Booru Image Downloader * [imgbrd-grabber](https://github.com/Bionus/imgbrd-grabber) - Booru Image Downloader
* [Artbreeder](https://artbreeder.com/) - Image Discovery / Combining * [Artbreeder](https://artbreeder.com/) - Image Discovery / Combining
*** ***
@@ -592,43 +573,40 @@
* 🌐 **[Creator Resources](https://www.newgrounds.com/wiki/creator-resources/)** - Art / Animation Resources * 🌐 **[Creator Resources](https://www.newgrounds.com/wiki/creator-resources/)** - Art / Animation Resources
* 🌐 **[Awesome Colab Notebooks](https://github.com/amrzv/awesome-colab-notebooks)** - Image Colab Resources * 🌐 **[Awesome Colab Notebooks](https://github.com/amrzv/awesome-colab-notebooks)** - Image Colab Resources
* ↪️ **[Color Scheme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_color_schemes)** - [Guide](https://i.ibb.co/cCRn3y1/5eb0a8de7dac.jpg) * ↪️ **[Multi-Tool Image Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multi_image_tool_sites)**
* ↪️ **[Color Scheme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_color_schemes)** - [Guide](https://i.ibb.co/cCRn3y1/5eb0a8de7dac.jpg)
* ↪️ **[Color Pickers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_color_pickers)**
***[ImgOps](https://imgops.com/)** - Image Operations Meta-Tool ***[ImgOps](https://imgops.com/)** - Image Operations Meta-Tool
***[AntiDupl](https://github.com/ermig1979/AntiDupl)** or [cbird](https://github.com/scrubbbbs/cbird) - Duplicate Image Removers ***[AntiDupl](https://github.com/ermig1979/AntiDupl)** or [cbird](https://github.com/scrubbbbs/cbird) - Duplicate Image Removers
***[Muzli](https://search.muz.li/)** - Design Inspiration Search ***[Muzli](https://search.muz.li/)** - Design Inspiration Search
* [WebOasis Editors](https://weboasis.app/editors/), [RedKetchup](https://redketchup.io/), [Img2Go](https://www.img2go.com/), [fffuel](https://fffuel.co/) or [Mara](https://mara.photos/) - Multi-Tool Sites
* [PhotoFeeler](https://www.photofeeler.com/) - Get Photo Feedback * [PhotoFeeler](https://www.photofeeler.com/) - Get Photo Feedback
* [Picviewer CE+](https://github.com/hoothin/UserScripts/tree/master/Picviewer%20CE+) - Turn Webpages into Image Galleries * [Picviewer CE+](https://github.com/hoothin/UserScripts/tree/master/Picviewer%20CE+) - Turn Webpages into Image Galleries
* [Binternet](https://github.com/Ahwxorg/Binternet) - Pinterest Frontend * [Binternet](https://github.com/Ahwxorg/Binternet) - Pinterest Frontend
* [/r/Photography Guide](https://www.reddit.com/r/photography/wiki/introduction) - Photography / Camera Guide * [/r/Photography Guide](https://www.reddit.com/r/photography/wiki/introduction) - Photography / Camera Guide
* [PhotoEphemeris](https://photoephemeris.com/) - Photography Sunlight Calculator * [PhotoEphemeris](https://photoephemeris.com/) - Photography Sunlight Calculator
* [DataFilm](http://datafilm.io/) - Notebook for Film Photographers * [DataFilm](http://datafilm.io/) - Notebook for Film Photographers
* [fSpy](https://fspy.io/) - Still Image Camera Matching
* [GlanceBack](https://glanceback.info/) - Daily Webcam Photo Journal * [GlanceBack](https://glanceback.info/) - Daily Webcam Photo Journal
* [Image Color Summarizer](http://mkweb.bcgsc.ca/color-summarizer/) - Image Color Summarizer * [Image Color Summarizer](http://mkweb.bcgsc.ca/color-summarizer/) - Image Color Summarizer
* [Image Colors](https://franciscouzo.github.io/image_colors/) - Image Color Scatter Plot * [Image Comparison Tool](https://jklgit.github.io/Image-Comparison-in-Browser/index.html) - Compare Images
* [Image Pixel Sorter](http://birdhat.org/misc/sort-pixels/) - Sort Pixels of Images
* [odiff](https://github.com/dmtrKovalenko/odiff) or [Image Comparison Tool](https://jklgit.github.io/Image-Comparison-in-Browser/index.html) - Image Differences / Comparisons
* [FontAwesomePS](http://creativedo.co/FontAwesomePS) - Photoshop Icon Manager * [FontAwesomePS](http://creativedo.co/FontAwesomePS) - Photoshop Icon Manager
* [Adobe Bridge](https://adobe.com/products/bridge.html) - Adobe Assets Manager * [Adobe Bridge](https://adobe.com/products/bridge.html) - Adobe Assets Manager
* [detectron2](https://detectron2.readthedocs.io/) - Object / Human Detection * [Image Colors](https://franciscouzo.github.io/image_colors/) - Image Color Scatter Plot
* [detectron2](https://github.com/facebookresearch/detectron2) - Object / Human Detection
* [behind!](https://github.com/kubuzetto/behind) - View Background Images * [behind!](https://github.com/kubuzetto/behind) - View Background Images
* [Visual Center](https://javier.xyz/visual-center/) - Find the Visual Center of an Image * [Visual Center](https://javier.xyz/visual-center/) - Find the Visual Center of an Image
* [Lithophane](https://3dp.rocks/lithophane) - Image to Lithophane Converter * [Lithophane](https://3dp.rocks/lithophane) - Image to Lithophane Converter
* [WhatTheFont](https://www.myfonts.com/) - Find Font from Image * [WhatTheFont](https://www.myfonts.com/) - Find Font from Image
* [Watermarkly](https://watermarkly.com/), [BatchWatermark](https://batchwatermark.com/) or [Watermarkup](https://watermarkup.com/watermark.html) - Image Watermarking * [Watermarkly](https://watermarkly.com/) or [Watermarkup](https://watermarkup.com/watermark.html) - Image Watermarking
* [Watermark Remover](https://www.watermarkremover.io/) or [DeWatermark](https://dewatermark.ai/) - Watermark Removal * [Watermark Remover](https://www.watermarkremover.io/) or [DeWatermark](https://dewatermark.ai/) - Watermark Removal
* [Glaze](https://glaze.cs.uchicago.edu/index.html) or [Nightshade](https://nightshade.cs.uchicago.edu/downloads.html) - Protect Digital Art from AI Copies * [Glaze](https://glaze.cs.uchicago.edu/index.html) or [Nightshade](https://nightshade.cs.uchicago.edu/downloads.html) - Protect Digital Art from AI Copies
* [FPNG](https://github.com/richgel999/fpng) - PNG Reader / Writer * [FPNG](https://github.com/richgel999/fpng) - PNG Reader / Writer
* [APNG Maker](https://rukario.github.io/Schande/Uninteresting%20stuff/APNG%20Maker.html) - Create / Optimize APNG Images * [APNG Maker](https://rukario.github.io/Schande/Uninteresting%20stuff/APNG%20Maker.html) - Create / Optimize APNG Images
* [JPEG.rocks](https://jpeg.rocks/) - JPEG Re-Encoder
* [JPEGMedic ARWE](https://www.jpegmedic.com/tools/jpegmedic-arwe/) - Recover Ransomware-Encrypted Images * [JPEGMedic ARWE](https://www.jpegmedic.com/tools/jpegmedic-arwe/) - Recover Ransomware-Encrypted Images
* [CamScanner](https://apps.apple.com/us/app/camscanner-pdf-scanner-app/id388627783) or [Microsoft Lens](https://apps.apple.com/us/app/microsoft-lens-pdf-scanner/id975925059) - Scan & Digitize Documents / iOS * [CamScanner](https://apps.apple.com/us/app/camscanner-pdf-scanner-app/id388627783) or [Microsoft Lens](https://apps.apple.com/us/app/microsoft-lens-pdf-scanner/id975925059) - Scan & Digitize Documents / iOS
* [FaceSwapApp](https://face-swap.app/) / [Discord](https://discord.gg/D8wYxUvwTD), [Swapface](https://swapface.org/) / [Discord](https://discord.com/invite/5yPew6Cy6a), [faceswap](https://faceswap.dev/), [AIFaceSwap](https://aifaceswap.io/), [face-swap](https://face-swap.io/), [Swapper](https://icons8.com/swapper) or [FaceFusion](https://github.com/facefusion/facefusion) - Face Swapping * [Swapper](https://icons8.com/swapper) or [FaceFusion](https://github.com/facefusion/facefusion) - Face Swapping
* [WiseTagger](https://github.com/0xb8/WiseTagger) - Image Tagger * [WiseTagger](https://github.com/0xb8/WiseTagger) - Image Tagger
* [BooruDatasetTagManager](https://github.com/starik222/BooruDatasetTagManager) - Booru Image Tagger * [BooruDatasetTagManager](https://github.com/starik222/BooruDatasetTagManager) - Booru Image Tagger
* [Cluttr](https://gitlab.com/bearjaws/cluttr) or [TagStudio](https://github.com/TagStudioDev/TagStudio) - Image File Organizers * [Cluttr](https://gitlab.com/bearjaws/cluttr) - Automatically Organize & Tag Photos
* [Allusion](https://allusion-app.github.io/) - Reference Image Manager
* [DigicamControl](https://digicamcontrol.com/) - Camera Controller * [DigicamControl](https://digicamcontrol.com/) - Camera Controller
* [Camera Wiki](http://camera-wiki.org/) - Camera Model Wiki * [Camera Wiki](http://camera-wiki.org/) - Camera Model Wiki
* [Canon Camera Museum](https://global.canon/en/c-museum/camera-series.html) - History of Canon Cameras * [Canon Camera Museum](https://global.canon/en/c-museum/camera-series.html) - History of Canon Cameras
@@ -643,7 +621,7 @@
***[Capture2Text](https://capture2text.sourceforge.net/)** - OCR Desktop App ***[Capture2Text](https://capture2text.sourceforge.net/)** - OCR Desktop App
***[Text Grab](https://github.com/TheJoeFin/Text-Grab)** - Minimal OCR Windows Tool ***[Text Grab](https://github.com/TheJoeFin/Text-Grab)** - Minimal OCR Windows Tool
* [i2ocr](https://www.i2ocr.com/) or [OCR.SPACE](https://ocr.space/) - Online OCRs * **[Pomodoro](https://pomodoro.semlab.io/)**, [i2ocr](https://www.i2ocr.com/) or [OCR.SPACE](https://ocr.space/) - Online OCRs
* [TextShot](https://github.com/ianzhao05/textshot) - Cross Platform OCR * [TextShot](https://github.com/ianzhao05/textshot) - Cross Platform OCR
* [ImageScanOCR](https://github.com/ttop32/ImageScanOCR) - Windows OCR Tool * [ImageScanOCR](https://github.com/ttop32/ImageScanOCR) - Windows OCR Tool
* [Handwriting-OCR](https://github.com/Breta01/handwriting-ocr) - Handwriting OCR * [Handwriting-OCR](https://github.com/Breta01/handwriting-ocr) - Handwriting OCR
@@ -652,36 +630,34 @@
*** ***
## ▷ Image Viewers ## ▷ Image Viewers
***[IrfanView](https://www.irfanview.com/)** ***[IrfanView](https://www.irfanview.com/)**
***[JPEGView](https://github.com/sylikc/jpegview)** ***[JPEGView](https://github.com/sylikc/jpegview)**
***[ImageGlass](https://github.com/d2phap/ImageGlass)**
***[FastStone](https://www.faststone.org/index.htm)**
***[qView](https://interversehq.com/qview/)**
***[XnView MP](https://www.xnview.com/en/xnviewmp/)** ***[XnView MP](https://www.xnview.com/en/xnviewmp/)**
***[Digikam](https://www.digikam.org/)** ***[Digikam](https://www.digikam.org/)**
* [nomacs](https://github.com/nomacs/nomacs) * [nomacs](https://github.com/nomacs/nomacs)
* [qimgv](https://github.com/easymodo/qimgv) * [qimgv](https://github.com/easymodo/qimgv)
* [PhotoQt](https://github.com/luspi/photoqt) * [PhotoQt](https://github.com/luspi/photoqt)
* [PicView](https://picview.org/) * [PicView](https://github.com/Ruben2776/PicView)
* [Image Eye](https://www.fmjsoft.com/imageeye.html) * [Image Eye](https://www.fmjsoft.com/imageeye.html)
* [qView](https://interversehq.com/qview/)
* [Quick Picture Viewer](https://moduleart.github.io/quick-picture-viewer/) * [Quick Picture Viewer](https://moduleart.github.io/quick-picture-viewer/)
* [Fragment](https://www.fragmentapp.info/) * [Fragment](https://www.fragmentapp.info/)
* [HoneyView](https://en.bandisoft.com/honeyview/) * [HoneyView](https://en.bandisoft.com/honeyview/)
* [picturama](https://picturama.github.io/) * [picturama](https://picturama.github.io/)
* [narrative](https://narrative.so/) * [narrative](https://narrative.so/)
* [G'MIC](https://gmic.eu/) * [G'MIC](https://gmic.eu/)
* [BeeRef](https://beeref.org/) or [PureRef](https://www.pureref.com/) - Reference Image Viewers * [BeeRef](https://beeref.org/) - Reference Image Viewer
* [HDRView](https://github.com/wkjarosz/hdrview) or [tev](https://github.com/Tom94/tev) - HDR / Technical Image Viewers * [HDRView](https://github.com/wkjarosz/hdrview) - HDR Image Viewer
* [FlipFlip](https://github.com/ififfy/flipflip/) - Image Slideshow * [FlipFlip](https://github.com/ififfy/flipflip/) - Image Slideshow
*** ***
## ▷ Self-Hosted Galleries ## ▷ Self-Hosted Galleries
* 🌐 **[FOSS Photo Libraries](https://meichthys.github.io/foss_photo_libraries/)** * 🌐 **[FOSS Photo Libraries](https://github.com/meichthys/foss_photo_libraries)**
* [Immich](https://immich.app/) / [Github](https://github.com/immich-app/immich) * [Immich](https://immich.app/)
* [Damselfly](https://github.com/Webreaper/Damselfly) * [Damselfly](https://github.com/Webreaper/Damselfly)
* [HomeGallery](https://home-gallery.org/) * [HomeGallery](https://home-gallery.org/)
* [LibrePhotos](https://github.com/LibrePhotos/librephotos) * [LibrePhotos](https://github.com/LibrePhotos/librephotos)
@@ -696,43 +672,42 @@
* [PicoShare](https://github.com/mtlynch/picoshare) * [PicoShare](https://github.com/mtlynch/picoshare)
* [Up1](https://github.com/Upload/Up1) * [Up1](https://github.com/Upload/Up1)
* [Chevereto](https://chevereto.com/) * [Chevereto](https://chevereto.com/)
* [Pinry](https://docs.getpinry.com/)
* [Photofield](https://github.com/SmilyOrg/photofield) * [Photofield](https://github.com/SmilyOrg/photofield)
* [Google Photos Toolkit](https://github.com/xob0t/Google-Photos-Toolkit) - Manage / Delete Google Photos
* [Google Takeout](https://takeout.google.com/) - Export from Google Photos / [Script](https://github.com/TheLastGimbus/GooglePhotosTakeoutHelper) * [Google Takeout](https://takeout.google.com/) - Export from Google Photos / [Script](https://github.com/TheLastGimbus/GooglePhotosTakeoutHelper)
*** ***
## ▷ Image Hosts ## ▷ Image Hosts
***[lookimg](https://lookimg.com/)** ***[lookimg](https://lookimg.com/)**
***[ImgBB](https://imgbb.com/)** ***[ImgBB](https://imgbb.com/)**
***[Postimages](https://postimages.org/)** ***[Postimages](https://postimages.org/)**
***[Catbox.moe](https://catbox.moe/)** ***[Catbox.moe](https://catbox.moe/)**
* [Imgur](https://imgur.com/) * [Imgur](https://imgur.com/)
* Imgur Tools - [Frontends](https://rimgo.codeberg.page/), [2](https://git.voidnet.tech/kev/imgin), [3](https://codeberg.org/rimgo/rimgo), [4](https://codeberg.org/3np/rimgu), [5](https://rimgo.bus-hit.me/) * Imgur Tools - [Frontends](https://rimgo.codeberg.page/), [2](https://git.voidnet.tech/kev/imgin), [3](https://codeberg.org/rimgo/rimgo), [4](https://codeberg.org/3np/rimgu), [5](https://rimgo.bus-hit.me/) / [Proxy](https://imgin.voidnet.tech/)
* [pixelfed](https://pixelfed.org/)- Decentralized Image Host / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_pixelfed_tools) * [pixelfed](https://pixelfed.org/) / [2](https://pixelfed.social/) - Decentralized Image Hosts
* [Unsee](https://unsee.cc/) - Decentralized / Temporary Image Hosts / [Android](https://gitlab.shinice.net/pixeldroid/PixelDroid) * [Unsee](https://unsee.cc/) - Decentralized / Temporary Image Hosts / [Android](https://gitlab.shinice.net/pixeldroid/PixelDroid)
* [WebOasis IPFS](https://weboasis.app/ipfs/) * [WebOasis IPFS](https://weboasis.app/ipfs/)
* [Shutterfly](https://www.shutterfly.com/) * [Shutterfly](https://www.shutterfly.com/)
* [FreeImage.Host](https://freeimage.host/) * [FreeImage.Host](https://freeimage.host/)
* [snipboard](https://i.snipboard.io/)
* [imgbox](https://imgbox.com/) * [imgbox](https://imgbox.com/)
* [pasteboard](https://www.pasteboard.co/) * [pasteboard](https://www.pasteboard.co/)
* [picsur](https://picsur.org/)
* [vgy](https://vgy.me/) * [vgy](https://vgy.me/)
* [i](https://tikolu.net/i/) * [i](https://tikolu.net/i/)
* [tixte](https://tixte.com/) * [tixte](https://tixte.com/)
* [linkpicture](https://www.linkpicture.com/) * [linkpicture](https://www.linkpicture.com/)
* [imagebam](https://www.imagebam.com/) * [imagebam](https://www.imagebam.com/)
* [imagevenue](https://www.imagevenue.com/) * [imagevenue](https://www.imagevenue.com/)
* [BayIMG](https://bayimg.com/)
* [Imagem](https://imagem.app/?lang=en)
* [talaikis](https://ipfs.talaikis.com/upload) * [talaikis](https://ipfs.talaikis.com/upload)
* [imgchest](https://imgchest.com/) * [imgchest](https://imgchest.com/)
* [upanhtv](https://upanh.tv/) * [upanhtv](https://upanh.tv/)
* [sendpic](http://sendpic.org/)
* [Lutim](https://lutim.lagout.org/) * [Lutim](https://lutim.lagout.org/)
* [prnt.sc](https://prnt.sc/)
* [anhsieuviet](https://anhsieuviet.com/?lang=en) * [anhsieuviet](https://anhsieuviet.com/?lang=en)
* [Slowpoke Pics](https://slow.pics/) * [Slowpoke Pics](https://slow.pics/)
* [FastPic](https://fastpic.org/)
* [dutov](https://dutov.org/) * [dutov](https://dutov.org/)
* [Piczel](https://piczel.tv/) - Online Art Gallery * [Piczel](https://piczel.tv/) - Online Art Gallery
@@ -741,35 +716,36 @@
## ▷ Screenshot Tools ## ▷ Screenshot Tools
***[ShareX](https://getsharex.com/)** / [Free Host](https://encrypting.host/), [2](https://sxcu.net/), [3](https://www.sharexhosting.com/) / [File Manager](https://xbackbone.app/) ***[ShareX](https://getsharex.com/)** / [Free Host](https://encrypting.host/), [2](https://sxcu.net/), [3](https://www.sharexhosting.com/) / [File Manager](https://xbackbone.app/)
***[Zipline](https://zipline.diced.sh/)** / [GitHub](https://github.com/diced/zipline) or [ass](https://github.com/tycrek/ass) - Self-Hosted ShareX Server ***[Zipline](https://zipline.diced.sh/)** / [GitHub](https://github.com/diced/zipline) or [ass](https://github.com/tycrek/ass)- Self-Hosted ShareX Server
***[Flameshot](https://flameshot.org/)** / [GitHub](https://github.com/flameshot-org/flameshot) / [Imgur Upload](https://slproweb.com/products/Win32OpenSSL.html) ***[Flameshot](https://flameshot.org/)** / [GitHub](https://github.com/flameshot-org/flameshot) / [Imgur Upload](https://slproweb.com/products/Win32OpenSSL.html)
* [Greenshot](https://getgreenshot.org/) * [Greenshot](https://getgreenshot.org/)
* [Gyazo](https://gyazo.com/) * [Gyazo](https://gyazo.com/)
* [KSnip](https://github.com/ksnip/ksnip) * [KSnip](https://github.com/ksnip/ksnip)
* [LightShot](https://app.prntscr.com/en/index.html)
* [Nimbus Capture](https://nimbusweb.me/screenshot.php) * [Nimbus Capture](https://nimbusweb.me/screenshot.php)
* [ScreenshotX](https://screenshotx.com/) * [ScreenshotX](https://screenshotx.com/)
* [Pika](https://pika.style/) / [GitHub](https://github.com/rishimohan/pika), [FabPic](https://www.fabpic.app/) or [OnPaste](https://onpaste.com/) - Screenshot Editor * [Pika](https://pika.style/) / [GitHub](https://github.com/rishimohan/pika), [FabPic](https://www.fabpic.app/) or [OnPaste](https://onpaste.com/) - Screenshot Editor
* [Screenshot Guru](https://screenshot.guru/), [CleanShot](https://cleanshot.vercel.app/) or [Site-Shot](https://www.site-shot.com/) - Online Screenshot Tool * [Screenshot Guru](https://screenshot.guru/), [CleanShot](https://cleanshot.vercel.app/) or [Site-Shot](https://www.site-shot.com/) - Online Screenshot Tool
* [Screenshot Rocks](https://screenshot.rocks/) / [GitHub](https://github.com/daveearley/screenshot.rocks), [screenshots.cloud](https://screenshots.cloud/), [shrinktheweb](https://shrinktheweb.com/) or [Pikwy](https://pikwy.com/) - Site Screenshot Tool * [Screenshot Rocks](https://screenshot.rocks/) / [GitHub](https://github.com/daveearley/screenshot.rocks), [screenshots.cloud](https://screenshots.cloud/), [shrinktheweb](https://shrinktheweb.com/ ) or [Pikwy](https://pikwy.com/) - Site Screenshot Tool
* [puush](https://puush.me/) - Easily Share Screenshots * [puush](https://puush.me/) - Easily Share Screenshots
* [paste.photos](https://www.paste.photos/) - Image Clipboard to File
* [Screenstab](https://screenstab.com/editor/) - Create Graphics from Screenshots * [Screenstab](https://screenstab.com/editor/) - Create Graphics from Screenshots
* [Limus](https://limus.netlify.app/) or [Screenstab](https://www.screenstab.com/editor/) - Change Screenshot Angles * [Limus](https://limus.netlify.app/) or [Screenstab](https://www.screenstab.com/editor/) - Change Screenshot Angles
* [Screenshot Tutorial](https://www.take-a-screenshot.org/) - Multi-Platform Screenshot Guides * [Screenshot Comparison](https://screenshotcomparison.com/) - Compare Screenshots
* [Screenshot Tutorial](https://www.take-a-screenshot.org/) - Multi Platform Screenshot Guides
*** ***
## ▷ Palette Generators ## ▷ Palette Generators
***[Color Designer](https://colordesigner.io/gradient-generator)**, [Super Color Palette](https://supercolorpalette.com/) - Color Palette Generator ***[supercolorpalette](https://supercolorpalette.com/)** - Color Palette Generator
* [Color Space](https://mycolor.space/) - Generate Gradient Color Palettes * [ColorSpace](https://mycolor.space/) - Generate Gradient Color Palettes
* [Colors Wall](https://colorswall.com/) or [ColorKit](https://colorkit.co/color-palette-generator/) - Generate Random Color Palettes * [ColorsWall](https://colorswall.com/) or [ColorKit](https://colorkit.co/color-palette-generator/) - Generate Random Color Palettes
* [Color Palette Generator](https://www.degraeve.com/color-palette) or [Color Picker](https://imagecolorpicker.com/) - Generate Color Palettes from Images * [Color Palette Generator](https://www.degraeve.com/color-palette) or [Color Picker](https://imagecolorpicker.com/) - Generate Color Palettes from Images
* [Color Kit](https://colorkit.io/) - Generate Color Palettes by Mixing 2 Colors * [ColorKit](https://colorkit.io/) - Generate Color Palettes by Mixing 2 Colors
* [Pigment](https://pigment.shapefactory.co/), [Eva Design System](https://colors.eva.design/), [Scale](https://hihayk.github.io/scale/), [copypalette](https://copypalette.app/) or [Huey](https://huey.design/) - Simple Color Palette Generators * [Pigment](https://pigment.shapefactory.co/), [Eva Design System](https://colors.eva.design/), [Scale](https://hihayk.github.io/scale/), [copypalette](https://copypalette.app/) or [Huey](https://huey.design/) - Simple Color Palette Generators
* [ColorBox](https://colorbox.io/), [hue.tools](https://hue.tools/), [Randoma11y](https://randoma11y.com/), [accessiblepalette](https://accessiblepalette.com/) or [colorcolor](https://colorcolor.in/) - Advanced Color Palette Generators * [ColorBox](https://colorbox.io/), [hue.tools](https://hue.tools/), [Randoma11y](https://randoma11y.com/), [accessiblepalette](https://accessiblepalette.com/) or [colorcolor](https://colorcolor.in/) - Advanced Color Palette Generators
* [Good Palette](https://goodpalette.io/), [Huemint](https://huemint.com/), [AI Colors](https://aicolors.co/) or [PaletteMaker](https://palettemaker.com/) - Generate UI Color Palettes * [goodpalette](https://goodpalette.io/), [Huemint](https://huemint.com/), [AI Colors](https://aicolors.co/) or [PaletteMaker](https://palettemaker.com/) - Generate UI Color Palettes
* [Couleur.io](https://couleur.io/) - CSS Color Palettes Generator * [couleur.io](https://couleur.io/) - CSS Color Palettes Generator
* [UI Colors](https://uicolors.app/create) or [Tints](https://www.tints.dev/) - Tailwind CSS Color Generators * [UI Colors](https://uicolors.app/create) or [Tints](https://www.tints.dev/) - Tailwind CSS Color Generators
* [Poolors](https://poolors.com/) - Generate Most / Least Used Color Palettes * [Poolors](https://poolors.com/) - Generate Most / Least Used Color Palettes
* [Cielab](https://cielab.io/) - Human Perception Color Tool * [Cielab](https://cielab.io/) - Human Perception Color Tool
@@ -780,7 +756,7 @@
* 🌐 **[React Color](https://casesandberg.github.io/react-color/)** - Color Pickers Index * 🌐 **[React Color](https://casesandberg.github.io/react-color/)** - Color Pickers Index
* 🌐 **[BrandColors](https://brandcolors.net/)** - Brand Color Palettes Index * 🌐 **[BrandColors](https://brandcolors.net/)** - Brand Color Palettes Index
* [Material UI](https://materialui.co/colors/), [Color Deck](https://color.obscuredetour.com/), [Picular](https://picular.co/) or [ColorKit's Color Picker](https://colorkit.co/color-picker/) - Color Pickers * [Material UI](https://materialui.co/colors/), [Color Deck](https://color.obscuredetour.com/), [cccolor](https://fffuel.co/cccolor/), [Picular](https://picular.co/) or [ColorKit's Color Picker](https://colorkit.co/color-picker/) - Color Pickers
* [Colorpicker](https://colorpicker.fr/), [Just Color Picker](https://annystudio.com/software/colorpicker/) or [epick](https://github.com/vv9k/epick) - Color Picker Desktop Apps * [Colorpicker](https://colorpicker.fr/), [Just Color Picker](https://annystudio.com/software/colorpicker/) or [epick](https://github.com/vv9k/epick) - Color Picker Desktop Apps
* [Colorscales](https://www.colorscales.com/en/start) - Find Colors in Color Space * [Colorscales](https://www.colorscales.com/en/start) - Find Colors in Color Space
* [ColourCode](https://www.toptal.com/designers/colourcode/) or [Colordot](https://color.hailpixel.com/) - Find Colors by Moving Mouse * [ColourCode](https://www.toptal.com/designers/colourcode/) or [Colordot](https://color.hailpixel.com/) - Find Colors by Moving Mouse
@@ -798,10 +774,10 @@
* 🌐 **[Photo OSINT](https://start.me/p/0PgzqO/photo-osint)** - Image OSINT Resources * 🌐 **[Photo OSINT](https://start.me/p/0PgzqO/photo-osint)** - Image OSINT Resources
***[Fawkes](http://sandlab.cs.uchicago.edu/fawkes/)** or **[Lowkey](https://lowkey.umiacs.umd.edu/)** - Facial Cloaking ***[Fawkes](http://sandlab.cs.uchicago.edu/fawkes/)** or **[Lowkey](https://lowkey.umiacs.umd.edu/)** - Facial Cloaking
***[FotoForensics](https://www.fotoforensics.com/)** or [Forensically](https://29a.ch/photo-forensics/) - Photo Forensics Tool ***[FotoForensics](https://www.fotoforensics.com/)**, [Forensically](https://29a.ch/photo-forensics/) or [Ghiro](http://www.getghiro.org/) - Photo Forensics Tool
***[GeoSpy](https://geospy.web.app/)** or [GeoEstimation](https://labs.tib.eu/geoestimation) - Estimate Image Geolocation * [GeoEstimation](https://labs.tib.eu/geoestimation) or [GeoSpy](https://geospy.web.app/) - Estimate Image Geolocation
* [Image Identification Project](https://www.imageidentify.com/) - Image Identification Tool * [Image Identification Project](https://www.imageidentify.com/) - Image Identification Tool
* [StegOnline](https://stegonline.georgeom.net/image), [OpenStego](https://www.openstego.com/), [OpenPuff](https://embeddedsw.net/OpenPuff_Steganography_Home.html), [Steganography-PNG](https://pedrooaugusto.github.io/steganography-png/) / [GitHub](https://github.com/pedrooaugusto/steganography-png), [ImSter](https://github.com/DJayalath/ImSter), [stegano](https://bztsrc.gitlab.io/stegano/) or [stegpy](https://github.com/dhsdshdhk/stegpy) - Images Steganography Tools * [CryptoStego](https://github.com/zeruniverse/CryptoStego), [StegOnline](https://stegonline.georgeom.net/image), [OpenStego](https://www.openstego.com/), [OpenPuff](https://embeddedsw.net/OpenPuff_Steganography_Home.html), [Steganography-PNG](https://pedrooaugusto.github.io/steganography-png/) / [GitHub](https://github.com/pedrooaugusto/steganography-png), [ImSter](https://github.com/DJayalath/ImSter), [stegano](https://bztsrc.gitlab.io/stegano/) or [stegpy](https://github.com/dhsdshdhk/stegpy) - Images Steganography Tools
* [Aperisolve](https://aperisolve.fr/) / [2](https://www.aperisolve.com/) or [stegextract](https://github.com/evyatarmeged/stegextract) - Steganography Analysis Tool * [Aperisolve](https://aperisolve.fr/) / [2](https://www.aperisolve.com/) or [stegextract](https://github.com/evyatarmeged/stegextract) - Steganography Analysis Tool
* [Unredacter](https://github.com/BishopFox/unredacter) - Crack Pixelated Images * [Unredacter](https://github.com/BishopFox/unredacter) - Crack Pixelated Images
* [Redacted](https://redacted.app/) - Blur, Pixelate or Blackout parts of Images * [Redacted](https://redacted.app/) - Blur, Pixelate or Blackout parts of Images
@@ -809,13 +785,14 @@
* [Schizoware](https://sourceforge.net/projects/schizoware/) - Image Name / Hash Randomizer * [Schizoware](https://sourceforge.net/projects/schizoware/) - Image Name / Hash Randomizer
* [BetterCensorship](https://bc.betterrepack.com/) - Censor and De-censor Images * [BetterCensorship](https://bc.betterrepack.com/) - Censor and De-censor Images
* [ViewEXIF](https://www.imgonline.com.ua/eng/exif-info.php), [Jimpl](https://jimpl.com/), [ExifData](https://exifdata.com/), [OnlineEXIFViewer](https://onlineexifviewer.com/), [ExifLooter](https://github.com/aydinnyunus/exifLooter), [CameraSummary](https://camerasummary.com/) or [JPEGsnoop](https://www.impulseadventure.com/photo/jpeg-snoop.html) - EXIF / Metadata Viewers * [ViewEXIF](https://www.imgonline.com.ua/eng/exif-info.php), [Jimpl](https://jimpl.com/), [ExifData](https://exifdata.com/), [OnlineEXIFViewer](https://onlineexifviewer.com/), [ExifLooter](https://github.com/aydinnyunus/exifLooter), [CameraSummary](https://camerasummary.com/) or [JPEGsnoop](https://www.impulseadventure.com/photo/jpeg-snoop.html) - EXIF / Metadata Viewers
* [exiftool](https://exiftool.org/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data * [exiftool](https://exiftool.org/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data
* [Pic2Map](https://www.pic2map.com/) - Image EXIF data viewer with GPS support * [Pic2Map](https://www.pic2map.com/) - Image EXIF data viewer with GPS support
* [TheExifer](https://www.thexifer.net/index.php), [Photini](https://github.com/jim-easterbrook/Photini) - Image EXIF Data Editors * [TheExifer](https://www.thexifer.net/index.php), [Photini](https://github.com/jim-easterbrook/Photini) - Image EXIF Data Editors
* [Base64 Image](https://www.base64-image.de/) - Encrypt / Decrypt Images * [Base64 Image](https://www.base64-image.de/) - Encrypt / Decrypt Images
* [BetaFace](https://www.betaface.com/demo.html) - Facial Recognition * [BetaFace](https://www.betaface.com/demo.html) or [Face Recognition](https://github.com/ageitgey/face_recognition) - Facial Recognition
* [FaceCheck](https://facecheck.id/) or [Faceagle](https://faceagle.com/) - Face Recognition Search Engines * [FaceCheck](https://facecheck.id/) or [Faceagle](https://faceagle.com/) - Face Recognition Search Engines
* [Shoop](https://colab.research.google.com/drive/1AQ0XSKWjzJBhGXXJ0XrA4DckFdv6Ul5N) - Detect if Image is Photoshopped * [Shoop](https://colab.research.google.com/drive/1AQ0XSKWjzJBhGXXJ0XrA4DckFdv6Ul5N) - Detect if Image is Photoshopped
* [Squoosh](https://squoosh.app/) - Image Codec Comparison
*** ***

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: Monthly Updates [June 2024] title: Monthly Updates [March 2024]
link: /posts/june-2024 link: /posts/march-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.0.4", "packageManager": "pnpm@8.15.1",
"scripts": { "scripts": {
"docs:dev": "vitepress dev", "docs:dev": "vitepress dev",
"docs:build": "vitepress build", "docs:build": "vitepress build",
@@ -16,7 +16,8 @@
"postinstall": "nitropack prepare" "postinstall": "nitropack prepare"
}, },
"dependencies": { "dependencies": {
"@headlessui/vue": "^1.7.22", "@fmhy/colors": "^0.0.11",
"@headlessui/vue": "^1.7.17",
"@resvg/resvg-js": "^2.6.0", "@resvg/resvg-js": "^2.6.0",
"consola": "^3.2.3", "consola": "^3.2.3",
"feed": "^4.2.2", "feed": "^4.2.2",
@@ -27,21 +28,19 @@
"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", "vitepress": "npm:@taskylizard/vitepress@1.0.10",
"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": {
"@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/eslint-config": "^1.1.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",
"eslint": "^8.56.0", "eslint": "^8.56.0",
"prettier": "^3.2.4", "prettier": "^3.2.4"
"tailwindcss": "^3.4.4"
} }
} }

10770
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

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,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,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

@@ -1,49 +1,36 @@
---
title: Minecraft Server
description: Minecraft Server
date: 2024-02-11
next: false
aside: left
prev: false
sidebar: false
footer: true
---
<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.
- To go to modded, head to the nether portal. * To go to modded, head to the nether portal.
- 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**: [RAR](<https://buzzheavier.com/f/GIr%2FvkDOsAA=>) + [Guide](<https://rentry.org/fmhy-modded>)
or you could use the .mrpack files and add it to Prism or other compatible launchers: or you could use the .mrpack filesand add it to Prism or other compatible launchers:
[FMHY_Modpack-2.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218042133382959184/FMHY_Modpack-2.mrpack?ex=66063922&is=65f3c422&hm=a3fecfe897d81368f91f6860f96e5359706c292269bafd82429d72b5323bf1a1) [FMHY_Modpack-2.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218042133382959184/FMHY_Modpack-2.mrpack?ex=66063922&is=65f3c422&hm=a3fecfe897d81368f91f6860f96e5359706c292269bafd82429d72b5323bf1a1&)
[FMHY_Server_Pack_ClientPP.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218063597326827571/FMHY_Server_Pack_ClientPP.mrpack?ex=66064d20&is=65f3d820&hm=a2476bc723343c912bd4ab9e549bcfa0338c68ff0b670c266d4b1dbaabd3d032) [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://buzzheavier.com/f/GIr+b3jOsAA=) [Optional Modpack with QOL mods added](<https://buzzheavier.com/f/GIr+b3jOsAA=>)
*** ***
### 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` 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. * 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. * 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.
Have fun! ♥ Have fun! ♥

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 86 KiB

30545
single-page

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,11 @@
import { defineConfig, presetUno, presetAttributify, presetIcons } from 'unocss' import {
defineConfig,
presetUno,
presetAttributify,
presetIcons,
transformerDirectives
} from 'unocss'
import { colors, shortcuts } from '@fmhy/colors'
export default defineConfig({ export default defineConfig({
content: { content: {
@@ -6,6 +13,7 @@ export default defineConfig({
}, },
theme: { theme: {
colors: { colors: {
...colors,
primary: 'var(--vp-c-brand-1)', primary: 'var(--vp-c-brand-1)',
bg: 'var(--vp-c-bg)', bg: 'var(--vp-c-bg)',
'bg-alt': 'var(--vp-c-bg-alt)', 'bg-alt': 'var(--vp-c-bg-alt)',
@@ -15,6 +23,7 @@ export default defineConfig({
div: 'var(--vp-c-divider)' div: 'var(--vp-c-divider)'
} }
}, },
shortcuts,
presets: [ presets: [
presetUno(), presetUno(),
presetAttributify(), presetAttributify(),
@@ -25,5 +34,6 @@ export default defineConfig({
'vertical-align': 'middle' 'vertical-align': 'middle'
} }
}) })
] ],
transformers: [transformerDirectives()]
}) })