mirror of
https://github.com/fmhy/edit.git
synced 2025-08-03 01:32:13 +10:00
Merge branch 'fmhy:main' into main
This commit is contained in:
commit
ef116eda27
40 changed files with 1069 additions and 575 deletions
2
.github/ISSUE_TEMPLATE/wiki.yml
vendored
2
.github/ISSUE_TEMPLATE/wiki.yml
vendored
|
@ -1,6 +1,6 @@
|
||||||
name: Create Issue
|
name: Create Issue
|
||||||
description: 'Help us improve FMHY for everyone'
|
description: 'Help us improve FMHY for everyone'
|
||||||
title: '<title>'
|
title: 'Issue form title'
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
@ -29,8 +29,8 @@ onMounted(() => {
|
||||||
>
|
>
|
||||||
<ClientOnly>
|
<ClientOnly>
|
||||||
<Transition name="fade" mode="out-in">
|
<Transition name="fade" mode="out-in">
|
||||||
<VPIconSun v-if="!isDark" class="sun" />
|
<div v-if="!isDark" class="sun text-xl i-ph-sun-duotone" />
|
||||||
<VPIconMoon v-else class="moon" />
|
<div v-else class="moon text-xl i-ph-moon-duotone" />
|
||||||
</Transition>
|
</Transition>
|
||||||
</ClientOnly>
|
</ClientOnly>
|
||||||
</button>
|
</button>
|
||||||
|
|
88
docs/.vitepress/theme/components/ColorPicker.vue
Normal file
88
docs/.vitepress/theme/components/ColorPicker.vue
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { colors } from '@fmhy/colors'
|
||||||
|
import { useStorage, useStyleTag } from '@vueuse/core'
|
||||||
|
import { watch } from 'vue'
|
||||||
|
|
||||||
|
const colorScales = [
|
||||||
|
'50',
|
||||||
|
'100',
|
||||||
|
'200',
|
||||||
|
'300',
|
||||||
|
'400',
|
||||||
|
'500',
|
||||||
|
'600',
|
||||||
|
'700',
|
||||||
|
'800',
|
||||||
|
'900',
|
||||||
|
'950'
|
||||||
|
] as const
|
||||||
|
|
||||||
|
type ColorNames = keyof typeof colors
|
||||||
|
const selectedColor = useStorage<ColorNames>('preferred-color', 'swarm')
|
||||||
|
|
||||||
|
const colorOptions = Object.keys(colors).filter(
|
||||||
|
(key) => typeof colors[key as keyof typeof colors] === 'object'
|
||||||
|
) as Array<ColorNames>
|
||||||
|
|
||||||
|
const { css } = useStyleTag('', { id: 'brand-color' })
|
||||||
|
|
||||||
|
const updateThemeColor = (colorName: ColorNames) => {
|
||||||
|
const colorSet = colors[colorName]
|
||||||
|
|
||||||
|
const cssVars = colorScales
|
||||||
|
.map((scale) => `--vp-c-brand-${scale}: ${colorSet[scale]};`)
|
||||||
|
.join('\n ')
|
||||||
|
|
||||||
|
css.value = `
|
||||||
|
:root {
|
||||||
|
${cssVars}
|
||||||
|
--vp-c-brand-1: ${colorSet[500]};
|
||||||
|
--vp-c-brand-2: ${colorSet[600]};
|
||||||
|
--vp-c-brand-3: ${colorSet[800]};
|
||||||
|
--vp-c-brand-soft: ${colorSet[400]};
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark {
|
||||||
|
${cssVars}
|
||||||
|
--vp-c-brand-1: ${colorSet[400]};
|
||||||
|
--vp-c-brand-2: ${colorSet[500]};
|
||||||
|
--vp-c-brand-3: ${colorSet[700]};
|
||||||
|
--vp-c-brand-soft: ${colorSet[300]};
|
||||||
|
}
|
||||||
|
`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initialize theme color
|
||||||
|
updateThemeColor(selectedColor.value)
|
||||||
|
|
||||||
|
watch(selectedColor, updateThemeColor)
|
||||||
|
|
||||||
|
const normalizeColorName = (colorName: string) =>
|
||||||
|
colorName.replaceAll(/-/g, ' ').charAt(0).toUpperCase() +
|
||||||
|
colorName.slice(1).replaceAll(/-/g, ' ')
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div class="flex flex-wrap gap-2">
|
||||||
|
<div v-for="color in colorOptions" :key="color">
|
||||||
|
<button
|
||||||
|
:class="[
|
||||||
|
'inline-block w-6 h-6 rounded-full transition-all duration-200'
|
||||||
|
]"
|
||||||
|
@click="selectedColor = color"
|
||||||
|
:title="normalizeColorName(color)"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="inline-block w-6 h-6 rounded-full"
|
||||||
|
:style="{ backgroundColor: colors[color][500] }"
|
||||||
|
/>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-2 text-sm text-$vp-c-text-2">
|
||||||
|
Selected: {{ normalizeColorName(selectedColor) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -69,10 +69,12 @@ const isDisabled = computed(() => {
|
||||||
})
|
})
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
// prettier-ignore
|
|
||||||
const feedback = reactive<
|
const feedback = reactive<{
|
||||||
Pick<FeedbackType, 'message' | 'page'> & Partial<Pick<FeedbackType, 'type'>>
|
message: string
|
||||||
>({
|
page: string
|
||||||
|
type?: FeedbackType['type']
|
||||||
|
}>({
|
||||||
page: router.route.path,
|
page: router.route.path,
|
||||||
message: ''
|
message: ''
|
||||||
})
|
})
|
||||||
|
@ -142,17 +144,45 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<button
|
<div
|
||||||
class="bg-$vp-c-default-soft text-primary px2 py1 border-$vp-c-default-soft hover:border-primary mt-2 select-none rounded border-2 border-solid font-bold transition-all duration-300"
|
class="mt-2 p-4 border-2 border-solid bg-brand-50 border-brand-300 dark:bg-brand-950 dark:border-brand-800 rounded-xl col-span-3 transition-colors duration-250"
|
||||||
@click="toggleCard()"
|
>
|
||||||
|
<div class="flex items-start md:items-center gap-3">
|
||||||
|
<div class="pt-1 md:pt-0">
|
||||||
|
<div
|
||||||
|
class="w-10 h-10 rounded-full flex items-center justify-center bg-brand-500 dark:bg-brand-400"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
:class="
|
:class="
|
||||||
isCardShown === false ? `i-lucide:mail mr-2` : `i-lucide:mail-x mr-2`
|
isCardShown === false
|
||||||
|
? `i-lucide:mail w-6 h-6 text-white dark:text-brand-950`
|
||||||
|
: `i-lucide:mail-x w-6 h-6 text-white dark:text-brand-950`
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
<span>Send Feedback</span>
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="flex-grow flex items-start md:items-center gap-3 flex-col md:flex-row"
|
||||||
|
>
|
||||||
|
<div class="flex-grow">
|
||||||
|
<div class="font-semibold text-brand-950 dark:text-brand-50">
|
||||||
|
Got feedback?
|
||||||
|
</div>
|
||||||
|
<div class="text-sm text-brand-800 dark:text-brand-100">
|
||||||
|
We'd love to know what you think about this page.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button
|
||||||
|
class="inline-block text-center rounded-full px-4 py-2.5 text-sm font-medium border-2 border-solid text-brand-700 border-brand-300 dark:text-brand-100 dark:border-brand-800"
|
||||||
|
@click="toggleCard()"
|
||||||
|
>
|
||||||
|
Share Feedback
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<Transition name="fade" mode="out-in">
|
<Transition name="fade" mode="out-in">
|
||||||
|
@ -254,7 +284,7 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
class="border border-div rounded-lg transition-colors duration-250 inline-block text-14px font-500 leading-1.5 px-3 py-3 text-center align-middle whitespace-nowrap disabled:opacity-50 text-text-2 bg-swarm-100 dark:bg-swarm-700 border-swarm-800 dark:border-swarm-700 disabled:bg-swarm-100 dark:disabled:bg-swarm-900 hover:border-swarm-900 dark:hover:border-swarm-800 hover:bg-swarm-200 dark:hover:bg-swarm-800"
|
class="border border-div rounded-lg transition-colors duration-250 inline-block text-14px font-500 leading-1.5 px-3 py-3 text-center align-middle whitespace-nowrap disabled:opacity-50 text-text-2 bg-brand-100 dark:bg-brand-700 border-brand-800 dark:border-brand-700 disabled:bg-brand-100 dark:disabled:bg-brand-900 hover:border-brand-900 dark:hover:border-brand-800 hover:bg-brand-200 dark:hover:bg-brand-800"
|
||||||
:disabled="isDisabled"
|
:disabled="isDisabled"
|
||||||
@click="handleSubmit()"
|
@click="handleSubmit()"
|
||||||
>
|
>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import Field from './CardField.vue'
|
import Field from './CardField.vue'
|
||||||
|
import ColorPicker from './ColorPicker.vue'
|
||||||
import InputField from './InputField.vue'
|
import InputField from './InputField.vue'
|
||||||
import ToggleStarred from './ToggleStarred.vue'
|
import ToggleStarred from './ToggleStarred.vue'
|
||||||
</script>
|
</script>
|
||||||
|
@ -16,7 +17,7 @@ import ToggleStarred from './ToggleStarred.vue'
|
||||||
<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>
|
<Field icon="i-twemoji-star">Recommendations</Field>
|
||||||
<div class="align-center mb-4 flex justify-between">
|
<div class="align-center mb-4 mt-4 flex justify-between">
|
||||||
<div class="text-$vp-c-text-1 lh-relaxed text-sm font-bold">Options</div>
|
<div class="text-$vp-c-text-1 lh-relaxed text-sm font-bold">Options</div>
|
||||||
</div>
|
</div>
|
||||||
<InputField id="toggle-starred" label="Toggle Starred">
|
<InputField id="toggle-starred" label="Toggle Starred">
|
||||||
|
@ -25,16 +26,6 @@ import ToggleStarred from './ToggleStarred.vue'
|
||||||
</template>
|
</template>
|
||||||
</InputField>
|
</InputField>
|
||||||
|
|
||||||
<Field icon="i-lucide:github">
|
<ColorPicker />
|
||||||
<a
|
|
||||||
href="https://github.com/fmhy/edit"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
aria-label="Star FMHY on GitHub"
|
|
||||||
class="text-primary underline font-bold"
|
|
||||||
>
|
|
||||||
Star on GitHub
|
|
||||||
</a>
|
|
||||||
</Field>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -257,6 +257,71 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info.custom-block a {
|
||||||
|
color: var(--vp-custom-block-info-text);
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 2px;
|
||||||
|
transition: opacity 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info.custom-block a:hover {
|
||||||
|
opacity: 0.7;
|
||||||
|
color: var(--vp-custom-block-info-text-deep);
|
||||||
|
}
|
||||||
|
|
||||||
|
.note.custom-block a {
|
||||||
|
color: var(--vp-custom-block-info-text);
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 2px;
|
||||||
|
transition: opacity 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.note.custom-block a:hover {
|
||||||
|
opacity: 0.7;
|
||||||
|
color: var(--vp-custom-block-note-text-deep);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tip.custom-block a {
|
||||||
|
color: var(--vp-custom-block-tip-text);
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 2px;
|
||||||
|
transition: opacity 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tip.custom-block a:hover {
|
||||||
|
opacity: 0.7;
|
||||||
|
color: var(--vp-custom-block-tip-text-deep);
|
||||||
|
}
|
||||||
|
|
||||||
|
.warning.custom-block a {
|
||||||
|
color: var(--vp-custom-block-warning-text);
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 2px;
|
||||||
|
transition: opacity 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.warning.custom-block a:hover {
|
||||||
|
opacity: 0.7;
|
||||||
|
color: var(--vp-custom-block-warning-text-deep);
|
||||||
|
}
|
||||||
|
|
||||||
|
.danger.custom-block a {
|
||||||
|
color: var(--vp-custom-block-danger-text);
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 2px;
|
||||||
|
transition: opacity 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.danger.custom-block a:hover {
|
||||||
|
opacity: 0.7;
|
||||||
|
color: var(--vp-custom-block-danger-text-deep);
|
||||||
|
}
|
||||||
|
|
||||||
.info.custom-block {
|
.info.custom-block {
|
||||||
--icon: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWluZm8iPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjEwIi8+PHBhdGggZD0iTTEyIDE2di00Ii8+PHBhdGggZD0iTTEyIDhoLjAxIi8+PC9zdmc+');
|
--icon: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWluZm8iPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjEwIi8+PHBhdGggZD0iTTEyIDE2di00Ii8+PHBhdGggZD0iTTEyIDhoLjAxIi8+PC9zdmc+');
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,11 +22,11 @@ interface Header {
|
||||||
export const headers: Header = {
|
export const headers: Header = {
|
||||||
'adblockvpnguide.md': {
|
'adblockvpnguide.md': {
|
||||||
title: 'Adblocking / Privacy',
|
title: 'Adblocking / Privacy',
|
||||||
description: "Adblocking, Privacy, VPN's, Proxies, Antivirus"
|
description: "Adblocking, Privacy, VPNs, Proxies, Antiviruses"
|
||||||
},
|
},
|
||||||
'ai.md': {
|
'ai.md': {
|
||||||
title: 'Artificial Intelligence',
|
title: 'Artificial Intelligence',
|
||||||
description: 'Chat Bots, Text Generators, Image Generators, ChatGPT Tools'
|
description: 'Chatbots, Text Generators, Image Generators, ChatGPT Tools'
|
||||||
},
|
},
|
||||||
'android-iosguide.md': {
|
'android-iosguide.md': {
|
||||||
title: 'Android / iOS',
|
title: 'Android / iOS',
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
* [AlternateDNS](https://alternate-dns.com/index.php) - DNS Adblocking
|
* [AlternateDNS](https://alternate-dns.com/index.php) - DNS Adblocking
|
||||||
* [LibreDNS](https://libredns.gr/) - DNS Adblocking / [GitLab](https://gitlab.com/libreops/libredns)
|
* [LibreDNS](https://libredns.gr/) - DNS Adblocking / [GitLab](https://gitlab.com/libreops/libredns)
|
||||||
* [Tiarap](https://doh.tiar.app/) - DNS Adblocking / [GitHub](https://github.com/pengelana/blocklist)
|
* [Tiarap](https://doh.tiar.app/) - DNS Adblocking / [GitHub](https://github.com/pengelana/blocklist)
|
||||||
* [NextDNS](https://nextdns.io) - Customizable DNS Adblocking Service / [Guide](https://github.com/yokoffing/NextDNS-Config) / [Video](https://youtu.be/WUG57ynLb8I)
|
* [NextDNS](https://nextdns.io) - Customizable DNS Adblocking Service / [Video](https://youtu.be/WUG57ynLb8I)
|
||||||
* [AdGuard DNS](https://adguard-dns.io/) - Customizable DNS Adblocking Service / [X](https://x.com/adguard) / [Telegram](https://t.me/adguarden) / [Subreddit](https://reddit.com/r/Adguard)
|
* [AdGuard DNS](https://adguard-dns.io/) - Customizable DNS Adblocking Service / [X](https://x.com/adguard) / [Telegram](https://t.me/adguarden) / [Subreddit](https://reddit.com/r/Adguard)
|
||||||
* [Control D](https://controld.com/free-dns) - Customizable DNS Adblocking Service / [X](https://x.com/controldns) / [Subreddit](https://reddit.com/r/ControlD/) / [Discord](https://discord.gg/dns)
|
* [Control D](https://controld.com/free-dns) - Customizable DNS Adblocking Service / [X](https://x.com/controldns) / [Subreddit](https://reddit.com/r/ControlD/) / [Discord](https://discord.gg/dns)
|
||||||
* [NxFilter](https://nxfilter.org/) - Self-Hosted Customizable DNS Adblocking / [Subreddit](https://reddit.com/r/nxfilter)
|
* [NxFilter](https://nxfilter.org/) - Self-Hosted Customizable DNS Adblocking / [Subreddit](https://reddit.com/r/nxfilter)
|
||||||
|
@ -69,7 +69,7 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ [Mac Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_mac_adblock_.2F_privacy)
|
## ▷ [Mac Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_adblock_.2F_privacy)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -126,8 +126,8 @@
|
||||||
* ↪️ **[SMS Verification Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_sms_verification_sites)**
|
* ↪️ **[SMS Verification Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_sms_verification_sites)**
|
||||||
* ↪️ **[File Encryption](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_file_encryption)**
|
* ↪️ **[File Encryption](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_file_encryption)**
|
||||||
* ↪️ **[Drive Formatting / File Deletion](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_formatting_.2F_deletion)**
|
* ↪️ **[Drive Formatting / File Deletion](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_formatting_.2F_deletion)**
|
||||||
* ⭐ **[/r/Privacy](https://reddit.com/r/privacy)**, [/r/TheHatedOne](https://www.reddit.com/r/thehatedone) or [/r/privatelife](https://www.reddit.com/r/privatelife/) - Privacy Discussion, News & Tools
|
|
||||||
* ⭐ **[Tails](https://tails.net/)** / [Telegram](https://t.me/torproject) / [GitHub](https://github.com/torproject), [Whonix](https://www.whonix.org/) / [Telegram](https://t.me/s/Whonix) / [GitHub](https://github.com/Whonix) or [Qubes](https://www.qubes-os.org/) / [GitHub](https://github.com/QubesOS) - Privacy-Based Operating Systems
|
* ⭐ **[Tails](https://tails.net/)** / [Telegram](https://t.me/torproject) / [GitHub](https://github.com/torproject), [Whonix](https://www.whonix.org/) / [Telegram](https://t.me/s/Whonix) / [GitHub](https://github.com/Whonix) or [Qubes](https://www.qubes-os.org/) / [GitHub](https://github.com/QubesOS) - Privacy-Based Operating Systems
|
||||||
|
* [/r/Privacy](https://reddit.com/r/privacy), [/r/TheHatedOne](https://www.reddit.com/r/thehatedone) or [/r/privatelife](https://www.reddit.com/r/privatelife/) - Privacy Discussion, News & Tools
|
||||||
* [O&O ShutUp10++](https://www.oo-software.com/en/shutup10) or [W10Privacy](https://www.w10privacy.de/english-home/) - Privacy and Data Protection Tools
|
* [O&O ShutUp10++](https://www.oo-software.com/en/shutup10) or [W10Privacy](https://www.w10privacy.de/english-home/) - Privacy and Data Protection Tools
|
||||||
* [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89) - Disable Windows 10/11 Telemetry
|
* [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89) - Disable Windows 10/11 Telemetry
|
||||||
* [Disable Recall](https://rentry.co/b88ixo8f) - Disable Microsoft Recall on Windows 11
|
* [Disable Recall](https://rentry.co/b88ixo8f) - Disable Microsoft Recall on Windows 11
|
||||||
|
@ -178,7 +178,7 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ [Linux Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_linux_adblock_.2F_privacy)
|
## ▷ [Linux Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_adblock_.2F_privacy)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -203,7 +203,6 @@
|
||||||
* ↪️ **[Encode / Decode URLs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_encode_.2F_decode)**
|
* ↪️ **[Encode / Decode URLs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_encode_.2F_decode)**
|
||||||
* ⭐ **[PrivacySpy](https://privacyspy.org/)** / [GitHub](https://github.com/politiwatch/privacyspy) or [ToS;DR](https://tosdr.org/) / [Discord](https://discord.gg/tosdr) / [GitHub](https://github.com/tosdr) - Sites Privacy Policies
|
* ⭐ **[PrivacySpy](https://privacyspy.org/)** / [GitHub](https://github.com/politiwatch/privacyspy) or [ToS;DR](https://tosdr.org/) / [Discord](https://discord.gg/tosdr) / [GitHub](https://github.com/tosdr) - Sites Privacy Policies
|
||||||
* ⭐ **[JustDeleteMe](https://justdeleteme.xyz/)** - Find / Terminate Old Accounts / [GitHub](https://github.com/jdm-contrib/jdm)
|
* ⭐ **[JustDeleteMe](https://justdeleteme.xyz/)** - Find / Terminate Old Accounts / [GitHub](https://github.com/jdm-contrib/jdm)
|
||||||
* ⭐ **[Cryptomator](https://cryptomator.org/)** / [GitHub](https://github.com/cryptomator/cryptomator) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) / [GitHub](https://github.com/tahoe-lafs/tahoe-lafs) - Cloud File Encryption
|
|
||||||
* [FirefoxMonitor](https://monitor.mozilla.org/) - Data Breach Check / [GitHub](https://github.com/mozilla/blurts-server)
|
* [FirefoxMonitor](https://monitor.mozilla.org/) - Data Breach Check / [GitHub](https://github.com/mozilla/blurts-server)
|
||||||
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) / [Discord](https://discord.gg/8Hzbrnkr7E) / [GitHub](https://github.com/trufflesecurity/trufflehog) or [LeakPeek](https://leakpeek.com/) / [Discord](https://discord.com/invite/mNxhSRWKwq) - Data Breach Search Engines
|
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) / [Discord](https://discord.gg/8Hzbrnkr7E) / [GitHub](https://github.com/trufflesecurity/trufflehog) or [LeakPeek](https://leakpeek.com/) / [Discord](https://discord.com/invite/mNxhSRWKwq) - Data Breach Search Engines
|
||||||
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) / [Telegram](https://t.me/joinchat/AAAAAElZRwd0aBrYTaHHcQ) / [GitHub](https://github.com/eschultze/phishstats-api-network) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
|
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) / [Telegram](https://t.me/joinchat/AAAAAElZRwd0aBrYTaHHcQ) / [GitHub](https://github.com/eschultze/phishstats-api-network) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
|
||||||
|
@ -399,7 +398,7 @@
|
||||||
* [Delusionz](https://delusionz.xyz/)
|
* [Delusionz](https://delusionz.xyz/)
|
||||||
* [ProxyPal](https://proxypal.net/) / [Telegram](https://t.me/PlainProxies)
|
* [ProxyPal](https://proxypal.net/) / [Telegram](https://t.me/PlainProxies)
|
||||||
* [Proxyium](https://proxyium.com/)
|
* [Proxyium](https://proxyium.com/)
|
||||||
* [Szvy Central](https://szvy.lol/), [2](https://test.szvy.unitgrapigs.com/), [3](https://play.szvy.win/), [4](https://studying-central.global.ssl.fastly.net/), [5](https://zearn.global.ssl.fastly.net/), [6](https://cheapenglishtutors.global.ssl.fastly.net/)
|
* [Szvy Central](https://szvy.lol/), [2](https://play.szvy.win/), [3](https://studying-central.global.ssl.fastly.net/), [4](https://zearn.global.ssl.fastly.net/), [5](https://cheapenglishtutors.global.ssl.fastly.net/)
|
||||||
* [Google Translate](https://translate.google.com/) / [Explanation](https://redd.it/fawkjy), [2](https://ibb.co/BtWc8ML)
|
* [Google Translate](https://translate.google.com/) / [Explanation](https://redd.it/fawkjy), [2](https://ibb.co/BtWc8ML)
|
||||||
* [Proxy Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper) or [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker) - Proxy Scrapers / Checkers
|
* [Proxy Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper) or [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker) - Proxy Scrapers / Checkers
|
||||||
* [CheckSocks5](https://checksocks5.com/) - SOCKS5 Proxy Checker
|
* [CheckSocks5](https://checksocks5.com/) - SOCKS5 Proxy Checker
|
||||||
|
|
77
docs/ai.md
77
docs/ai.md
|
@ -9,38 +9,36 @@
|
||||||
## ▷ Online Chatbots
|
## ▷ Online Chatbots
|
||||||
|
|
||||||
* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** or [Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md) - Online LLM Indexes
|
* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** or [Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md) - Online LLM Indexes
|
||||||
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o / o3-mini Chatbot / [/r/OpenAI](https://www.reddit.com/r/OpenAI/) / [Subreddit](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o / o3-mini (medium) Chatbot / [/r/OpenAI](https://www.reddit.com/r/OpenAI/) / [Subreddit](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
||||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** - Alibaba's Chatbots
|
* ⭐ **[Qwen](https://chat.qwen.ai/)** - Alibaba's Chatbots / Qwen2.5-Max / QwQ-32B
|
||||||
* ⭐ **[Grok](https://grok.com/)** - X.com Chatbot / Grok (Unlimited) / Grok 3 (10 Hourly) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - R1 + DeepSeek-V3-0324 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.gg/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
||||||
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - R1 + Deepseek V3 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.gg/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
* ⭐ **[Grok](https://grok.com/)** - X.com Chatbot / Grok 2 (30 Hourly) / Grok 3 (12 Per Two Hours) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||||
* ⭐ **[Gemini](https://gemini.google.com/)** or [AI Studio](https://aistudio.google.com/app/prompts/new_chat) - Google's Chatbot / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
* ⭐ **[Gemini](https://gemini.google.com/)** or [AI Studio](https://aistudio.google.com/app/prompts/new_chat) - Gemini 2.5 Pro Experimental / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4o / OpenAI o1 / No Sign-Up
|
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4o / OpenAI o3-Mini-High / No Sign-Up
|
||||||
* ⭐ **[Chatbot Arena](https://lmarena.ai/)** - Multiple Chatbots / No Sign-Up / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat)
|
* ⭐ **[Chatbot Arena](https://lmarena.ai/)** - Multiple Chatbots / No Sign-Up / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||||
* ⭐ **[Mistral](https://chat.mistral.ai)** - Multiple Chatbots / [Discord](https://discord.gg/mistralai)
|
* ⭐ **[Mistral](https://chat.mistral.ai)** - Mistral Large 2411 / [Discord](https://discord.gg/mistralai)
|
||||||
* [Claude](https://claude.ai/) - Anthropic's Chatbot / Phone # Required / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/zkrBaqytPW)
|
* [Claude](https://claude.ai/) - Claude 3.7 Sonnet / Phone # Required / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/zkrBaqytPW)
|
||||||
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / o3-mini / No Sign-Up
|
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / o3-Mini / No Sign-Up
|
||||||
* [ChatK](https://chat.oaichat.cc/) or [LobeChat](https://lobechat.com/chat) / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat) - GPT-4o / Multiple Chatbots
|
* [ChatK](https://chat.oaichat.cc/) or [lobe.wr.do](https://lobe.wr.do/) / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat) - GPT-4o / DeepSeek-R1-32b / Multiple Chatbots
|
||||||
* [FFA Chat](https://ffa.chat/) - GPT-4o / Multiple Chatbots
|
* [FFA Chat](https://ffa.chat/) - GPT-4o / Multiple Chatbots
|
||||||
* [AI Assistant](https://aiassistantbot.pages.dev/) - Multiple Chatbots / No Sign-Up
|
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-R1 / Qwen QwQ-32B / Multiple Chatbots / No Sign-Up
|
||||||
* [AI SDK](https://sdk.vercel.ai/) - Multiple Chatbots / [GitHub](https://github.com/vercel/ai)
|
* [AI SDK](https://sdk.vercel.ai/) - Multiple Chatbots / [GitHub](https://github.com/vercel/ai)
|
||||||
* [GizAI](https://www.giz.ai/) - Multiple Chatbots
|
* [GizAI](https://www.giz.ai/) - Multiple Chatbots
|
||||||
* [SciSpace](https://scispace.com/) (no Sign-Up) or [Elicit](https://elicit.com/) / [GitHub](https://github.com/elicit) - Research Paper Chatbots
|
* [SciSpace](https://scispace.com/) (no Sign-Up) or [Elicit](https://elicit.com/) / [GitHub](https://github.com/elicit) - Research Paper Chatbots
|
||||||
* [HelixMind](https://helixmind.online/) - Multiple Chatbots / [Discord](https://discord.gg/7CmPjK87n3)
|
* [HelixMind](https://helixmind.online/) - Multiple Chatbots / [Discord](https://discord.gg/7CmPjK87n3)
|
||||||
* [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots / [GitHub](https://github.com/huggingface/chat-ui)
|
* [HuggingChat](https://huggingface.co/chat/) - DeepSeek-R1-Distill-Qwen-32B / Qwen QwQ-32B / Multiple Open-Source Chatbots / [GitHub](https://github.com/huggingface/chat-ui)
|
||||||
* [Infermatic](https://infermatic.ai/) - Multiple Chatbots / [Discord](https://discord.gg/9GUXmDx9GF)
|
* [Infermatic](https://infermatic.ai/) - Multiple Chatbots / [Discord](https://discord.gg/9GUXmDx9GF)
|
||||||
* [Electron Hub](https://www.electronhub.top/) - Multiple Chatbots / [Discord](https://discord.com/invite/apUUqbxCBQ)
|
* [Electron Hub](https://www.electronhub.top/) - Deepseek-R1 / o3-Mini-High / Multiple Chatbots / [Discord](https://discord.com/invite/apUUqbxCBQ)
|
||||||
* [NexusAI](https://www.nexusmind.tech/) - GPT-4o / o1-preview / o3-mini / [Discord](https://discord.com/invite/sk8eddGwmP)
|
* [NexusAI](https://www.nexusmind.tech/) - GPT-4o / Deepseek-R1 / o3-Mini-High / 300 Daily [Discord](https://discord.com/invite/sk8eddGwmP)
|
||||||
* [NextChat](https://nextchat.club/) - Multiple Chatbots / [GitHub](https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web)
|
* [NVIDIA NIM](https://build.nvidia.com/) - Deepseek-R1 / Multiple Chatbots / No Sign-Up
|
||||||
* [Tune Chat](https://tunehq.ai/tune-chat) - Multiple Chatbots / 24 Msgs per Chat / No Sign-Up / [Discord](https://discord.com/invite/KhF38hrAJ2)
|
* [OIChat](https://oi.wr.do/) - Gemini-2.5-Pro-Exp-03-25 / DeepSeek R1 / Qwen QwQ-32B / DeepSeek-V3-0324 / Multiple Chatbots
|
||||||
* [NVIDIA NIM](https://build.nvidia.com/) - Multiple Chatbots / No Sign-Up
|
|
||||||
* [OIChat](https://oi.wr.do/) - Multiple Chatbots
|
|
||||||
* [Kimi](https://kimi.ai/) - Kimi 1.5 Chatbot
|
* [Kimi](https://kimi.ai/) - Kimi 1.5 Chatbot
|
||||||
* [Groq](https://groq.com/) - Llama 3 and Mixtral Chatbots / [Discord](https://discord.gg/invite/groq)
|
* [Groq](https://groq.com/) - Qwen QwQ-32B / Deepseek-R1-Distill / Multiple Chatbots / [Discord](https://discord.gg/invite/groq)
|
||||||
* [SambaNova](https://sambanova.ai/) - Llama 3.1 / Enter Fake Info
|
* [SambaNova](https://sambanova.ai/) - Deepseek-R1 / Qwen QwQ-32B / DeepSeek-V3-0324 / Multiple Chatbots / Enter Fake Info
|
||||||
* [Lambda Chat](https://lambda.chat/chatui/) - Llama 3.1 / Unlimited / No Sign-Up
|
* [Lambda Chat](https://lambda.chat/chatui/) - Deepseek-R1 / Multiple Chatbots / Unlimited / No Sign-Up
|
||||||
* [Maisa](https://maisa.ai/) - Vinci KPU Chatbot
|
* [Maisa](https://maisa.ai/) - Vinci KPU Chatbot
|
||||||
* [Meta AI](https://www.meta.ai/) - Llama 3 Chatbot
|
* [Meta AI](https://www.meta.ai/) - Llama 3 Chatbot
|
||||||
* [MiniMax AI](https://chat.minimax.io/) - Chatbot w/ Large Token Context Window / [GitHub](https://github.com/MiniMax-AI/MiniMax-01)
|
* [MiniMax AI](https://chat.minimax.io/) - Deepseek-R1 / MiniMax-Text-01 Chatbot w/ Large Token Context Window / [GitHub](https://github.com/MiniMax-AI/MiniMax-01)
|
||||||
* [Pi](https://pi.ai/) - Inflection AI's Chatbot
|
* [Pi](https://pi.ai/) - Inflection AI's Chatbot
|
||||||
* [Reka](https://www.reka.ai/) - Reka's Chatbot / [Discord](https://discord.gg/jtjNSD52mf)
|
* [Reka](https://www.reka.ai/) - Reka's Chatbot / [Discord](https://discord.gg/jtjNSD52mf)
|
||||||
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / Phone # Required / [Discord](https://discord.com/invite/joinpoe)
|
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / Phone # Required / [Discord](https://discord.com/invite/joinpoe)
|
||||||
|
@ -53,22 +51,22 @@
|
||||||
* 🌐 **[Awesome AI Web Search](https://github.com/felladrin/awesome-ai-web-search)** - AI Search Engine Index
|
* 🌐 **[Awesome AI Web Search](https://github.com/felladrin/awesome-ai-web-search)** - AI Search Engine Index
|
||||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - AI Search Engine / [Enhancements](https://www.cplx.app/) / [Open Source Models](https://labs.perplexity.ai/) / [Discord](https://discord.com/invite/perplexity-ai)
|
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - AI Search Engine / [Enhancements](https://www.cplx.app/) / [Open Source Models](https://labs.perplexity.ai/) / [Discord](https://discord.com/invite/perplexity-ai)
|
||||||
* ⭐ **[WolframAlpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / No Sign-Up / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile)
|
* ⭐ **[WolframAlpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / No Sign-Up / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile)
|
||||||
* ⭐ **[Scira](https://scira.ai/)** - AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira)
|
* ⭐ **[Scira](https://scira.ai/)** - Grok 2.0 / Mistral Small 3.1 AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira)
|
||||||
* ⭐ **[You](https://you.com/)** - AI Search Engine / Sign-Up Required / [Discord](https://discord.com/invite/youdotcom) / [GitHub](https://github.com/You-OpenSource)
|
* ⭐ **[You](https://you.com/)** - AI Search Engine / Sign-Up Required / [Discord](https://discord.com/invite/youdotcom) / [GitHub](https://github.com/You-OpenSource)
|
||||||
* [Hyperspace](https://hyper.space/) - P2P AI Network / No Sign-Up / [Web App](https://play.hyper.space/), [2](https://compute.hyper.space/) / [GitHub](https://github.com/hyperspaceai)
|
* [Hyperspace](https://hyper.space/) - P2P AI Network / No Sign-Up / [Web App](https://play.hyper.space/), [2](https://compute.hyper.space/) / [GitHub](https://github.com/hyperspaceai)
|
||||||
* [Phind](https://www.phind.com/) - Llama Search Engine / No Sign-Up / [Discord](https://discord.gg/S25yW8TebZ)
|
* [Phind](https://www.phind.com/) - Llama Search Engine / No Sign-Up / [Discord](https://discord.gg/S25yW8TebZ)
|
||||||
* [Morphic](https://www.morphic.sh/) - AI Search Engine / No Sign-Up / [Discord](https://discord.gg/zRxaseCuGq)
|
* [Morphic](https://www.morphic.sh/) - GPT-4o-mini AI Search Engine / No Sign-Up / [Discord](https://discord.gg/zRxaseCuGq)
|
||||||
* [Komo](https://komo.ai/) - AI Search Engine / No Sign-Up
|
* [Komo](https://komo.ai/) - AI Search Engine / No Sign-Up
|
||||||
* [Jina](https://search.jina.ai/) - AI Search Engine / No Sign-Up
|
* [Jina](https://search.jina.ai/) - AI Search Engine / No Sign-Up
|
||||||
* [Felo](https://felo.ai/) - AI Search Engine / No Sign-Up
|
* [Felo](https://felo.ai/) - AI Search Engine / AI Agents / No Sign-Up
|
||||||
* [searc.ai](https://searc.ai/) - AI Search Engine / No Sign-Up
|
* [searc.ai](https://searc.ai/) - AI Search Engine / No Sign-Up
|
||||||
* [RabbitHoles](https://rabbitholes.dojoma.ai/) - Mind Map Style Search / [Discord](https://discord.gg/Y7pZUw36) / [GitHub](https://github.com/AsyncFuncAI/rabbitholes)
|
* [RabbitHoles](https://rabbitholes.dojoma.ai/) - Mind Map Style Search / [Discord](https://discord.gg/Y7pZUw36) / [GitHub](https://github.com/AsyncFuncAI/rabbitholes)
|
||||||
* [Isou.chat](https://isou.chat/) - AI Search Engine / No Sign-Up / [GitHub](https://github.com/yokingma/search_with_ai)
|
* [Isou.chat](https://isou.chat/) - Deepseek-R1-Distill / Qwen 2.5 AI Search Engine / No Sign-Up / [GitHub](https://github.com/yokingma/search_with_ai)
|
||||||
* [Hika](https://hika.fyi/) - AI Search Engine / No Sign-Up / [Discord](https://discord.gg/tUATkScUue)
|
* [Hika](https://hika.fyi/) - Deepseek-R1 AI Search Engine / No Sign-Up / [Discord](https://discord.gg/tUATkScUue)
|
||||||
* [Khoj](https://khoj.dev/) - Sign-Up Required / [Discord](https://discord.gg/BDgyabRM6e) / [GitHub](https://github.com/khoj-ai/khoj)
|
* [Khoj](https://khoj.dev/) - Gemini-2.0-Flash AI Search Engine / AI Agents / Sign-Up Required / [Discord](https://discord.gg/BDgyabRM6e) / [GitHub](https://github.com/khoj-ai/khoj)
|
||||||
* [AyeSoul](https://ayesoul.com/) - AI Search Engine / No Sign-Up
|
* [AyeSoul](https://ayesoul.com/) - AI Search Engine / No Sign-Up
|
||||||
* [Venice](https://venice.ai/) - AI Search Engine / No Sign-Up
|
* [Venice](https://venice.ai/) - LLama 3 AI Search Engine / No Sign-Up
|
||||||
* [uncovr](https://uncovr.app/) - AI Search Engine / No Sign-Up / [Discord](https://discord.gg/a4gDaVWceP)
|
* [uncovr](https://uncovr.app/) - GPT-4o-mini / Gemini-2.0-Flash AI Search Engine / No Sign-Up / [Discord](https://discord.gg/a4gDaVWceP)
|
||||||
* [Exa](https://exa.ai/) - AI Search Engine / No Sign-Up / [Discord](https://discord.gg/HCShtBqbfV)
|
* [Exa](https://exa.ai/) - AI Search Engine / No Sign-Up / [Discord](https://discord.gg/HCShtBqbfV)
|
||||||
* [Lepton Search](https://search.lepton.run/) - AI Search Engine / No Sign-Up / [GitHub](https://github.com/leptonai/search_with_lepton)
|
* [Lepton Search](https://search.lepton.run/) - AI Search Engine / No Sign-Up / [GitHub](https://github.com/leptonai/search_with_lepton)
|
||||||
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT)
|
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT)
|
||||||
|
@ -125,7 +123,7 @@
|
||||||
|
|
||||||
* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** / [GitHub](https://github.com/evalplus/evalplus), [WebDev Arena](https://web.lmarena.ai/), [Aider LLM Leaderboards](https://aider.chat/docs/leaderboards/) or [Big Code Models Leaderboard](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards
|
* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** / [GitHub](https://github.com/evalplus/evalplus), [WebDev Arena](https://web.lmarena.ai/), [Aider LLM Leaderboards](https://aider.chat/docs/leaderboards/) or [Big Code Models Leaderboard](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards
|
||||||
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs / [Discord](https://discord.gg/U7KEcGErtQ)
|
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs / [Discord](https://discord.gg/U7KEcGErtQ)
|
||||||
* ⭐ **[Codeium](https://codeium.com/)** - Coding AI / [Subreddit](https://www.reddit.com/r/Codeium/) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
* ⭐ **[Windsurf](https://www.windsurf.com/)** - Coding AI / [Subreddit](https://www.reddit.com/r/Codeium/) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
||||||
* ⭐ **[Pieces](https://pieces.app/)** - Multi-LLM Coding AI / GPT-4 / 4o for Free / No Sign-Up / [Discord](https://discord.gg/getpieces)
|
* ⭐ **[Pieces](https://pieces.app/)** - Multi-LLM Coding AI / GPT-4 / 4o for Free / No Sign-Up / [Discord](https://discord.gg/getpieces)
|
||||||
* [WDTCD?](https://whatdoesthiscodedo.com/) - Simple Code Explanations / No Sign-Up
|
* [WDTCD?](https://whatdoesthiscodedo.com/) - Simple Code Explanations / No Sign-Up
|
||||||
* [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews / [GitHub](https://github.com/sourcery-ai/sourcery)
|
* [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews / [GitHub](https://github.com/sourcery-ai/sourcery)
|
||||||
|
@ -147,6 +145,7 @@
|
||||||
* [Codacy](https://www.codacy.com/) - Code Fixing AI / [GitHub](https://github.com/codacy)
|
* [Codacy](https://www.codacy.com/) - Code Fixing AI / [GitHub](https://github.com/codacy)
|
||||||
* [Open Interpreter](https://github.com/OpenInterpreter/open-interpreter) - Run Code Locally / No Sign-Up / [Discord](https://discord.gg/Hvz9Axh84z)
|
* [Open Interpreter](https://github.com/OpenInterpreter/open-interpreter) - Run Code Locally / No Sign-Up / [Discord](https://discord.gg/Hvz9Axh84z)
|
||||||
* [v0](https://v0.dev/) - Text to Site Code / [Discord](https://discord.gg/4ECCp2V5y9)
|
* [v0](https://v0.dev/) - Text to Site Code / [Discord](https://discord.gg/4ECCp2V5y9)
|
||||||
|
* [DeepSite](https://huggingface.co/spaces/enzostvs/deepsite) - Text to Site Code
|
||||||
* [Bolt.new](https://bolt.new/) - Web App Builder / [Discord](https://discord.com/invite/stackblitz) / [GitHub](https://github.com/stackblitz/bolt.new)
|
* [Bolt.new](https://bolt.new/) - Web App Builder / [Discord](https://discord.com/invite/stackblitz) / [GitHub](https://github.com/stackblitz/bolt.new)
|
||||||
* [Fragments](https://fragments.e2b.dev/) - App Builder / [Discord](https://discord.com/invite/U7KEcGErtQ) / [GitHub](https://github.com/e2b-dev)
|
* [Fragments](https://fragments.e2b.dev/) - App Builder / [Discord](https://discord.com/invite/U7KEcGErtQ) / [GitHub](https://github.com/e2b-dev)
|
||||||
* [Composio](https://composio.dev/) - Add Tools to Coding AI / [Discord](https://discord.com/invite/cNruWaAhQk) / [GitHub](https://github.com/ComposioHQ/composio)
|
* [Composio](https://composio.dev/) - Add Tools to Coding AI / [Discord](https://discord.com/invite/cNruWaAhQk) / [GitHub](https://github.com/ComposioHQ/composio)
|
||||||
|
@ -157,8 +156,8 @@
|
||||||
|
|
||||||
* 🌐 **[sindresorhus's Awesome ChatGPT](https://github.com/sindresorhus/awesome-chatgpt)** or [Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt) - AI Resources
|
* 🌐 **[sindresorhus's Awesome ChatGPT](https://github.com/sindresorhus/awesome-chatgpt)** or [Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt) - AI Resources
|
||||||
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index
|
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index
|
||||||
* 🌐 **[AI API Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools/#wiki_.25B7_api_tools)**
|
* ↪️ **[AI API Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools/#wiki_.25B7_api_tools)**
|
||||||
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** (no Sign-Up) or [AskYourPDF](https://askyourpdf.com/) - Turn Books into Chatbots
|
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** (no Sign-Up) or [AskYourPDF](https://askyourpdf.com/) - Turn Books / PDFs into Chatbots
|
||||||
* [AI Piracy Resources](https://rentry.org/aipiracyresources) - AI / LLM Piracy Guides
|
* [AI Piracy Resources](https://rentry.org/aipiracyresources) - AI / LLM Piracy Guides
|
||||||
* [tldraw computer](https://computer.tldraw.com/) - Create Component Workflows to Generate or Transform Data / [Discord](https://discord.com/invite/SBBEVCA4PG) / [GitHub](https://github.com/tldraw/tldraw)
|
* [tldraw computer](https://computer.tldraw.com/) - Create Component Workflows to Generate or Transform Data / [Discord](https://discord.com/invite/SBBEVCA4PG) / [GitHub](https://github.com/tldraw/tldraw)
|
||||||
* [ChatGPT Box](https://github.com/josStorer/chatGPTBox) or [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) - Extensions
|
* [ChatGPT Box](https://github.com/josStorer/chatGPTBox) or [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) - Extensions
|
||||||
|
@ -235,6 +234,7 @@
|
||||||
* [Artificial Analysis](https://artificialanalysis.ai/) - Chatbot Benchmarks
|
* [Artificial Analysis](https://artificialanalysis.ai/) - Chatbot Benchmarks
|
||||||
* [The Fastest AI](https://thefastest.ai/) - Chatbot Latency Speeds / [GitHub](https://github.com/fixie-ai/thefastest.ai)
|
* [The Fastest AI](https://thefastest.ai/) - Chatbot Latency Speeds / [GitHub](https://github.com/fixie-ai/thefastest.ai)
|
||||||
* [OpenRouter](https://openrouter.ai/rankings) - Chatbot Popularity Rankings / [Discord](https://discord.gg/fVyRaUDgxW) / [GitHub](https://github.com/OpenRouterTeam)
|
* [OpenRouter](https://openrouter.ai/rankings) - Chatbot Popularity Rankings / [Discord](https://discord.gg/fVyRaUDgxW) / [GitHub](https://github.com/OpenRouterTeam)
|
||||||
|
* [AI Elo](https://aielo.co/) - AI Game Competitions / Benchmarks
|
||||||
|
|
||||||
***
|
***
|
||||||
***
|
***
|
||||||
|
@ -289,7 +289,7 @@
|
||||||
* ⭐ **[NexusAI Image](https://image.nexusmind.tech/)** / 300 Daily Per Model / [Discord](https://discord.com/invite/sk8eddGwmP)
|
* ⭐ **[NexusAI Image](https://image.nexusmind.tech/)** / 300 Daily Per Model / [Discord](https://discord.com/invite/sk8eddGwmP)
|
||||||
* ⭐ **[FLUX.1 [Schnell]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)** or [FLUX.1 [Dev]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-dev) / Unlimited / No Sign-Up
|
* ⭐ **[FLUX.1 [Schnell]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)** or [FLUX.1 [Dev]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-dev) / Unlimited / No Sign-Up
|
||||||
* ⭐ **[Mage](https://www.mage.space/)** / No Sign-Up / [Discord](https://discord.com/invite/GT9bPgxyFP)
|
* ⭐ **[Mage](https://www.mage.space/)** / No Sign-Up / [Discord](https://discord.com/invite/GT9bPgxyFP)
|
||||||
* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** or [Gemini](https://gemini.google.com/) - Google's Image Generators / Unlimited / Region Based / [Discord](https://discord.com/invite/googlelabs)
|
* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** or [Gemini](https://gemini.google.com/) - Imagen 3 / Unlimited / Region Based / [Discord](https://discord.com/invite/googlelabs)
|
||||||
* ⭐ **[ComfyUI Online](https://www.runcomfy.com/comfyui-web)** / Unlimited / No Sign-Up
|
* ⭐ **[ComfyUI Online](https://www.runcomfy.com/comfyui-web)** / Unlimited / No Sign-Up
|
||||||
* ⭐ **[Grok](https://grok.com/)** / 25 Per 2 Hours / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
* ⭐ **[Grok](https://grok.com/)** / 25 Per 2 Hours / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||||
* [Dezgo](https://dezgo.com/) / Unlimited / No Sign-Up / [Discord](https://discord.com/invite/RQrGpUhPhx)
|
* [Dezgo](https://dezgo.com/) / Unlimited / No Sign-Up / [Discord](https://discord.com/invite/RQrGpUhPhx)
|
||||||
|
@ -318,13 +318,13 @@
|
||||||
* [SeaArt](https://www.seaart.ai/) / 40 Daily / [Discord](https://discord.com/invite/gUHDU644vU)
|
* [SeaArt](https://www.seaart.ai/) / 40 Daily / [Discord](https://discord.com/invite/gUHDU644vU)
|
||||||
* [Art Genie](https://artgenie.pages.dev/) / Unlimited / No Sign-Up
|
* [Art Genie](https://artgenie.pages.dev/) / Unlimited / No Sign-Up
|
||||||
* [Raphael](https://raphael.app/) / Unlimited / No Sign-Up / Uses Flux.1
|
* [Raphael](https://raphael.app/) / Unlimited / No Sign-Up / Uses Flux.1
|
||||||
* [CGDream](https://cgdream.ai/) / 770 SDXL / 450 Fast FLUX / 150 FLUX Dev Monthly
|
* [CGDream](https://cgdream.ai/) / 770 SDXL / 450 Fast FLUX / 150 FLUX Dev Monthly
|
||||||
* [Hailuo AI](https://hailuoai.video/) - 100 Daily / [Discord](https://discord.com/invite/hvvt8hAye6)
|
* [Hailuo AI](https://hailuoai.video/) - 100 Daily / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||||
* [PixNova AI](https://pixnova.ai/ai-body-generator/) / Unlimited
|
* [PixNova AI](https://pixnova.ai/ai-body-generator/) / Unlimited
|
||||||
* [ChatK](https://chat.oaichat.cc/) / Unlimited
|
* [ChatK](https://chat.oaichat.cc/) / Unlimited
|
||||||
|
* [Reve Image](https://preview.reve.art/) / 20 Daily
|
||||||
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited / No Sign-Up
|
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited / No Sign-Up
|
||||||
* [Qwen](https://chat.qwen.ai/) / Unlimited
|
* [Qwen](https://chat.qwen.ai/) / Unlimited
|
||||||
* [PicFinder](https://picfinder.ai/) / Unlimited
|
|
||||||
* [AIGazou](https://muryou-aigazou.com/) / Unlimited
|
* [AIGazou](https://muryou-aigazou.com/) / Unlimited
|
||||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) / 50 Daily
|
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) / 50 Daily
|
||||||
* [Perchance](https://perchance.org/ai-text-to-image-generator), [2](https://perchance.org/ai-photo-generator) / Unlimited / No Sign-Up
|
* [Perchance](https://perchance.org/ai-text-to-image-generator), [2](https://perchance.org/ai-photo-generator) / Unlimited / No Sign-Up
|
||||||
|
@ -434,13 +434,13 @@
|
||||||
* [LazyPy](https://lazypy.ro/tts/) / No Sign-Up / [GitHub](https://github.com/chrisjp/tts)
|
* [LazyPy](https://lazypy.ro/tts/) / No Sign-Up / [GitHub](https://github.com/chrisjp/tts)
|
||||||
* [Kokoro TTS](https://huggingface.co/spaces/hexgrad/Kokoro-TTS) / No Sign-Up / [Source code](https://huggingface.co/hexgrad/Kokoro-82M) / [Discord](https://discord.gg/QuGxSWBfQy) / [GitHub](https://github.com/hexgrad/kokoro)
|
* [Kokoro TTS](https://huggingface.co/spaces/hexgrad/Kokoro-TTS) / No Sign-Up / [Source code](https://huggingface.co/hexgrad/Kokoro-82M) / [Discord](https://discord.gg/QuGxSWBfQy) / [GitHub](https://github.com/hexgrad/kokoro)
|
||||||
* [Ondoku](https://ondoku3.com/en/) / No Sign-Up
|
* [Ondoku](https://ondoku3.com/en/) / No Sign-Up
|
||||||
|
* [AnyVoiceLab](https://anyvoicelab.com/long-form-text-to-speech-converter/) / No Sign-Up
|
||||||
* [VoiceCraft](https://github.com/jasonppy/VoiceCraft) / [Colab](https://colab.research.google.com/drive/1IOjpglQyMTO2C3Y94LD9FY0Ocn-RJRg6?usp=sharing)
|
* [VoiceCraft](https://github.com/jasonppy/VoiceCraft) / [Colab](https://colab.research.google.com/drive/1IOjpglQyMTO2C3Y94LD9FY0Ocn-RJRg6?usp=sharing)
|
||||||
* [EmotiVoice](https://github.com/netease-youdao/EmotiVoice)
|
* [EmotiVoice](https://github.com/netease-youdao/EmotiVoice)
|
||||||
* [Fish Audio](https://fish.audio/) / [Discord](https://discord.gg/6t7dUSPV) / [GitHub](https://github.com/fishaudio)
|
* [Fish Audio](https://fish.audio/) / [Discord](https://discord.gg/6t7dUSPV) / [GitHub](https://github.com/fishaudio)
|
||||||
* [Audio-WebUI](https://github.com/gitmylo/audio-webui) / No Sign-Up / [Colab](https://colab.research.google.com/github/gitmylo/audio-webui/blob/master/audio_webui_colab.ipynb) / [Discord](https://discord.gg/NB86C3Szkg)
|
* [Audio-WebUI](https://github.com/gitmylo/audio-webui) / No Sign-Up / [Colab](https://colab.research.google.com/github/gitmylo/audio-webui/blob/master/audio_webui_colab.ipynb) / [Discord](https://discord.gg/NB86C3Szkg)
|
||||||
* [VanillaVoice](https://www.vanillavoice.com/) / No Sign-Up
|
* [VanillaVoice](https://www.vanillavoice.com/) / No Sign-Up
|
||||||
* [TTSFree](https://ttsfree.com/) / No Sign-Up
|
* [TTSFree](https://ttsfree.com/) / No Sign-Up
|
||||||
* [Wideo](https://wideo.co/text-to-speech/)
|
|
||||||
* [LOVO](https://lovo.ai/) / [Discord](https://discord.gg/vWHw5ZKEmk)
|
* [LOVO](https://lovo.ai/) / [Discord](https://discord.gg/vWHw5ZKEmk)
|
||||||
* [SoundofText](https://soundoftext.com/) / No Sign-Up
|
* [SoundofText](https://soundoftext.com/) / No Sign-Up
|
||||||
* [FreeTTS](https://freetts.com/)
|
* [FreeTTS](https://freetts.com/)
|
||||||
|
@ -463,8 +463,9 @@
|
||||||
* [Replay](https://www.weights.com/replay) - RVC Desktop App / [Discord](https://discord.gg/A5rgNwDRd4)
|
* [Replay](https://www.weights.com/replay) - RVC Desktop App / [Discord](https://discord.gg/A5rgNwDRd4)
|
||||||
* [Bark Voice Cloning](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning / No Sign-Up / [Colab](https://colab.research.google.com/github/KevinWang676/Bark-Voice-Cloning/blob/main/Bark_Voice_Cloning.ipynb) / [GitHub](https://github.com/KevinWang676/Bark-Voice-Cloning)
|
* [Bark Voice Cloning](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning / No Sign-Up / [Colab](https://colab.research.google.com/github/KevinWang676/Bark-Voice-Cloning/blob/main/Bark_Voice_Cloning.ipynb) / [GitHub](https://github.com/KevinWang676/Bark-Voice-Cloning)
|
||||||
* [RVC Inference HF](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning / No Sign-Up
|
* [RVC Inference HF](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning / No Sign-Up
|
||||||
|
* [AnyVoiceLab](https://anyvoicelab.com/voice-cloning/) - Voice Cloning / No Sign-Up
|
||||||
* [AllVoiceLab](https://www.allvoicelab.com/) - Voice Cloning / No Sign-Up
|
* [AllVoiceLab](https://www.allvoicelab.com/) - Voice Cloning / No Sign-Up
|
||||||
* [Xyphra](https://maia.zyphra.com/audio) - Voice Cloning / [GitHub](https://github.com/Zyphra/Zonos)
|
* [Zyphra](https://playground.zyphra.com/audio) - Voice Cloning / [GitHub](https://github.com/Zyphra/Zonos)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
## ▷ Modded APKs
|
## ▷ Modded APKs
|
||||||
|
|
||||||
* ⭐ **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Free Books / Signup Required / [App](https://forum.mobilism.org/app/) / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
* ⭐ **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Free Books / Signup Required / [App](https://forum.mobilism.org/app/) / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [Translator](https://fmhy.net/text-tools#translators) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
* ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [Translator](https://fmhy.net/text-tools#translators) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||||
* ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods)
|
* ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods)
|
||||||
* ⭐ **[PlatinMods](https://platinmods.com/)**
|
* ⭐ **[PlatinMods](https://platinmods.com/)**
|
||||||
* [LiteAPKs](https://liteapks.com/) / [App](https://liteapks.com/app.html) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#liteapk--modyolo-note) / [Telegram](https://t.me/liteapks)
|
* [LiteAPKs](https://liteapks.com/) / [App](https://liteapks.com/app.html) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#liteapk--modyolo-note) / [Telegram](https://t.me/liteapks)
|
||||||
|
@ -115,12 +115,12 @@
|
||||||
* ⭐ **[AppManager](https://muntashirakon.github.io/AppManager/)**, [UpdateMe](https://github.com/anfreire/updateMe-Mobile) (modded), [Inure](https://rentry.co/FMHYBase64#inure) or [PackageManager](https://smartpack.github.io/PackageManager/) - Package Managers
|
* ⭐ **[AppManager](https://muntashirakon.github.io/AppManager/)**, [UpdateMe](https://github.com/anfreire/updateMe-Mobile) (modded), [Inure](https://rentry.co/FMHYBase64#inure) or [PackageManager](https://smartpack.github.io/PackageManager/) - Package Managers
|
||||||
* ⭐ **[Lucky Patcher](https://rentry.co/FMHYBase64#lucky-patcher)** - App Patcher / [Avoid "LP Downloader"](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lucky-patcher-note)
|
* ⭐ **[Lucky Patcher](https://rentry.co/FMHYBase64#lucky-patcher)** - App Patcher / [Avoid "LP Downloader"](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lucky-patcher-note)
|
||||||
* ⭐ **Lucky Patcher Tools** - [Guide](https://flixbox.github.io/lp-compat/docs/intro) / [Compatibility](https://flixbox.github.io/lp-compat/) / [Subreddit](https://www.reddit.com/r/luckypatcher/) / [Discord](https://discord.com/invite/RS5ddYf7mw)
|
* ⭐ **Lucky Patcher Tools** - [Guide](https://flixbox.github.io/lp-compat/docs/intro) / [Compatibility](https://flixbox.github.io/lp-compat/) / [Subreddit](https://www.reddit.com/r/luckypatcher/) / [Discord](https://discord.com/invite/RS5ddYf7mw)
|
||||||
* ⭐ **[Obtainium](https://github.com/ImranR98/Obtainium/)** / [Configs](https://apps.obtainium.imranr.dev/), [UpgradeAll](https://github.com/DUpdateSystem/UpgradeAll), [APKUpdater](https://github.com/rumboalla/apkupdater) or [InstallerX](https://t.me/InstallerX) (root) - APK Installers / Updaters
|
* ⭐ **[Obtainium](https://obtainium.imranr.dev/)** / [Configs](https://apps.obtainium.imranr.dev/) / [GitHub](https://github.com/ImranR98/Obtainium), [UpgradeAll](https://github.com/DUpdateSystem/UpgradeAll), [APKUpdater](https://github.com/rumboalla/apkupdater) or [InstallerX](https://t.me/InstallerX) (root) - APK Installers / Updaters
|
||||||
* [Direct Download From Google Play](https://greasyfork.org/en/scripts/33005-direct-download-from-google-play/) - Add Direct DL Links to Google Play
|
* [Direct Download From Google Play](https://greasyfork.org/en/scripts/33005-direct-download-from-google-play/) - Add Direct DL Links to Google Play
|
||||||
* [GBox](https://www.gboxlab.com/) - GMS Google Box
|
* [GBox](https://www.gboxlab.com/) - GMS Google Box
|
||||||
* [InstallWithOptions](https://github.com/zacharee/InstallWithOptions/) - Install / Merge APKs with Extra Options
|
* [InstallWithOptions](https://github.com/zacharee/InstallWithOptions/) - Install / Merge APKs with Extra Options
|
||||||
* [APK Editor Studio](https://qwertycube.com/apk-editor-studio/) or [Apktool M](https://maximoff.su/apktool/?lang=en) - APK Editing / Merging
|
* [APK Editor Studio](https://qwertycube.com/apk-editor-studio/) or [Apktool M](https://maximoff.su/apktool/?lang=en) - APK Editing / Merging
|
||||||
* [SAI](https://github.com/Aefyr/SAI) or [AntiSplit-M](https://github.com/AbdurazaaqMohammed/AntiSplit-M) - Merge Split APKs
|
* [AntiSplit-M](https://github.com/AbdurazaaqMohammed/AntiSplit-M) - Merge Split APKs
|
||||||
* [Raccoon](https://raccoon.onyxbits.de/) - Private APK Downloader
|
* [Raccoon](https://raccoon.onyxbits.de/) - Private APK Downloader
|
||||||
* [APKeep](https://github.com/EFForg/apkeep) - APK Download CLIs
|
* [APKeep](https://github.com/EFForg/apkeep) - APK Download CLIs
|
||||||
* [APKTool](https://apktool.org/) - APK Reverse Engineering Tool / [GitHub](https://github.com/iBotPeaches/Apktool)
|
* [APKTool](https://apktool.org/) - APK Reverse Engineering Tool / [GitHub](https://github.com/iBotPeaches/Apktool)
|
||||||
|
@ -138,7 +138,7 @@
|
||||||
* 🌐 **[ReVanced-Patch-Bundles](https://github.com/Jman-Github/ReVanced-Patch-Bundles)** - ReVanced Patch Index
|
* 🌐 **[ReVanced-Patch-Bundles](https://github.com/Jman-Github/ReVanced-Patch-Bundles)** - ReVanced Patch Index
|
||||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Android App Patcher / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager)
|
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Android App Patcher / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager)
|
||||||
* ⭐ **[ReVanced Auto-Update](https://gist.github.com/VVispy/50172b4ab77940b2d1ec09d5af70c8a7)** - Update ReVanced Apps Automatically
|
* ⭐ **[ReVanced Auto-Update](https://gist.github.com/VVispy/50172b4ab77940b2d1ec09d5af70c8a7)** - Update ReVanced Apps Automatically
|
||||||
* ⭐ **[ReVanced MMT](https://kazimmt.github.io/)** / [Telegram](https://t.me/ReVanced_MMT/) or [ReVanced Troubleshooting Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/) - Unofficial ReVanced Docs, Guides, & Troubleshooting
|
* [ReVanced Troubleshooting Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/)
|
||||||
* [RVX Manager](https://github.com/inotia00/revanced-manager) - ReVanced Extended / [Subreddit](https://www.reddit.com/r/revancedextended/)
|
* [RVX Manager](https://github.com/inotia00/revanced-manager) - ReVanced Extended / [Subreddit](https://www.reddit.com/r/revancedextended/)
|
||||||
* [ReVanced APKs](https://revanced-apks.pages.dev/), [2](https://revanced-apks.github.io/) - Pre-Built ReVanced APKs / [GitHub](https://github.com/revanced-apks/build-apps) / [Telegram](https://t.me/revanced_apks_web)
|
* [ReVanced APKs](https://revanced-apks.pages.dev/), [2](https://revanced-apks.github.io/) - Pre-Built ReVanced APKs / [GitHub](https://github.com/revanced-apks/build-apps) / [Telegram](https://t.me/revanced_apks_web)
|
||||||
* [ReVanced Non-Root](https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root) - Pre-Built RV & RVX APKs / [Telegram](https://t.me/fiorenmas)
|
* [ReVanced Non-Root](https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root) - Pre-Built RV & RVX APKs / [Telegram](https://t.me/fiorenmas)
|
||||||
|
@ -153,7 +153,7 @@
|
||||||
* ↪️ **[Social Media Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media/)**
|
* ↪️ **[Social Media Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media/)**
|
||||||
* ↪️ **[Telegram Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_telegram_clients)**
|
* ↪️ **[Telegram Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_telegram_clients)**
|
||||||
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
|
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
|
||||||
* ⭐ **[Bunny](https://github.com/bunny-mod/Bunny)**, [2](https://github.com/revenge-mod/revenge-bundle) / [Plugins](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#bunny-plugins-note) / [Discord](https://discord.gg/XjYgWXHb9Q) or **[Aliucord](https://github.com/Aliucord/Aliucord)** / [Discord](https://discord.gg/EsNDvBaHVU) - Modded Discord Clients
|
* ⭐ **[Bunny](https://github.com/bunny-mod/Bunny)**, [2](https://github.com/revenge-mod/revenge-bundle) / [Plugins](https://purple-eyez.github.io/Plugins-List/) / [Fonts](https://github.com/Rairof/Theme-Fonts), [2](https://github.com/Purple-EyeZ/Bunny-Fonts) / [Discord](https://discord.gg/XjYgWXHb9Q) or **[Aliucord](https://github.com/Aliucord/Aliucord)** / [Discord](https://discord.gg/EsNDvBaHVU) - Modded Discord Clients
|
||||||
* ⭐ **[Reddit Client Patch](https://rentry.co/FMHYBase64#patch-clients)**, [Stealth](https://gitlab.com/cosmosapps/stealth) or [RedReader](https://github.com/QuantumBadger/RedReader) - Reddit Clients / Patch Guide
|
* ⭐ **[Reddit Client Patch](https://rentry.co/FMHYBase64#patch-clients)**, [Stealth](https://gitlab.com/cosmosapps/stealth) or [RedReader](https://github.com/QuantumBadger/RedReader) - Reddit Clients / Patch Guide
|
||||||
* ⭐ **[Voyager](https://vger.app) / [GitHub](https://github.com/aeharding/voyager)**, [Jerboa](https://github.com/LemmyNet/jerboa), [Eternity](https://codeberg.org/Bazsalanszky/Eternity), [summit](https://play.google.com/store/apps/details?id=com.idunnololz.summit), [Raccoon](https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy) or [Thunder](https://github.com/thunder-app/thunder) - Lemmy Clients / [Index](https://join-lemmy.org/apps)
|
* ⭐ **[Voyager](https://vger.app) / [GitHub](https://github.com/aeharding/voyager)**, [Jerboa](https://github.com/LemmyNet/jerboa), [Eternity](https://codeberg.org/Bazsalanszky/Eternity), [summit](https://play.google.com/store/apps/details?id=com.idunnololz.summit), [Raccoon](https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy) or [Thunder](https://github.com/thunder-app/thunder) - Lemmy Clients / [Index](https://join-lemmy.org/apps)
|
||||||
* ⭐ **[Tusky](https://tusky.app/)**, [Mastify](https://github.com/whitescent/Mastify), [Dhaaga](https://github.com/suvam0451/dhaaga), [tooot](https://tooot.app/), [SubwayTooter](https://github.com/tateisu/SubwayTooter) or [Dimett](https://github.com/MateriiApps/Dimett) - Mastodon Clients / [GitHub](https://github.com/LucasGGamerM/moshidon)
|
* ⭐ **[Tusky](https://tusky.app/)**, [Mastify](https://github.com/whitescent/Mastify), [Dhaaga](https://github.com/suvam0451/dhaaga), [tooot](https://tooot.app/), [SubwayTooter](https://github.com/tateisu/SubwayTooter) or [Dimett](https://github.com/MateriiApps/Dimett) - Mastodon Clients / [GitHub](https://github.com/LucasGGamerM/moshidon)
|
||||||
|
@ -168,7 +168,6 @@
|
||||||
* [Dumpus](https://github.com/dumpus-app/dumpus-app) - View Discord Data / Self host for Privacy
|
* [Dumpus](https://github.com/dumpus-app/dumpus-app) - View Discord Data / Self host for Privacy
|
||||||
* [DankChat](https://github.com/flex3r/DankChat) - Talk in Multiple Twitch Chats at Once
|
* [DankChat](https://github.com/flex3r/DankChat) - Talk in Multiple Twitch Chats at Once
|
||||||
* [OldLander](https://github.com/OctoNezd/oldlander) - Improve Old Reddit
|
* [OldLander](https://github.com/OctoNezd/oldlander) - Improve Old Reddit
|
||||||
* [Updoot](https://updoot.app/) - Reddit Saved Post / Comment Manager
|
|
||||||
* [MobiChan](https://github.com/Rukkaitto/mobichan), [Kuroba](https://github.com/Adamantcheese/Kuroba) or [Chan](https://github.com/moffatman/chan) - 4chan Apps
|
* [MobiChan](https://github.com/Rukkaitto/mobichan), [Kuroba](https://github.com/Adamantcheese/Kuroba) or [Chan](https://github.com/moffatman/chan) - 4chan Apps
|
||||||
* [MyInsta](https://t.me/instasmashrepo) or [Instadev](https://instadevofficial.netlify.app/) / [Telegram](https://t.me/Instadevofficial) - Modded Instagram Clients / [Tools](https://play.google.com/store/apps/details?id=com.dageek.socialtoolbox_android)
|
* [MyInsta](https://t.me/instasmashrepo) or [Instadev](https://instadevofficial.netlify.app/) / [Telegram](https://t.me/Instadevofficial) - Modded Instagram Clients / [Tools](https://play.google.com/store/apps/details?id=com.dageek.socialtoolbox_android)
|
||||||
* [TikTokModCloud](https://t.me/TikTokModCloud) - Modded TikTok Client
|
* [TikTokModCloud](https://t.me/TikTokModCloud) - Modded TikTok Client
|
||||||
|
@ -207,7 +206,7 @@
|
||||||
|
|
||||||
## ▷ Optimization
|
## ▷ Optimization
|
||||||
|
|
||||||
* ⭐ **[Canta](https://f-droid.org/en/packages/org.samo_lego.canta/)** - Android Debloater / [GitHub](https://github.com/samolego/Canta)
|
* ⭐ **[Canta](https://f-droid.org/en/packages/org.samo_lego.canta/)** - Android Debloater / Requires Shizuku / [GitHub](https://github.com/samolego/Canta)
|
||||||
* ⭐ **[Universal Android Debloater v2](https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation)** - Android Debloater
|
* ⭐ **[Universal Android Debloater v2](https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation)** - Android Debloater
|
||||||
* ⭐ **[Hail](https://github.com/aistra0528/Hail)** - Auto-Deactivate Unused Apps
|
* ⭐ **[Hail](https://github.com/aistra0528/Hail)** - Auto-Deactivate Unused Apps
|
||||||
* [De-Bloater](https://sunilpaulmathew.github.io/De-Bloater/) - Android Debloater / Root
|
* [De-Bloater](https://sunilpaulmathew.github.io/De-Bloater/) - Android Debloater / Root
|
||||||
|
@ -220,7 +219,7 @@
|
||||||
|
|
||||||
## ▷ Customization
|
## ▷ Customization
|
||||||
|
|
||||||
* ⭐ **[Iconify](https://github.com/Mahmud0808/Iconify)** (root), [RBoard](https://xdaforums.com/t/app-rboard-theme-manager.4331445/) / [GitHub](https://github.com/DerTyp7214/RboardThemeManagerV3), [ColorBlendr](https://github.com/Mahmud0808/ColorBlendr) or [Substratum](https://www.xda-developers.com/substratum-hub/) - Theme Managers
|
* ⭐ **[Iconify](https://github.com/Mahmud0808/Iconify)** (root), [RBoard](https://xdaforums.com/t/app-rboard-theme-manager.4331445/) / [GitHub](https://github.com/DerTyp7214/RboardThemeManagerV3), [ColorBlendr](https://github.com/Mahmud0808/ColorBlendr) (requires shizuku) or [Substratum](https://www.xda-developers.com/substratum-hub/) - Theme Managers
|
||||||
* ⭐ **[/r/AndroidThemes](https://www.reddit.com/r/androidthemes/)** - Android Themes Subreddit
|
* ⭐ **[/r/AndroidThemes](https://www.reddit.com/r/androidthemes/)** - Android Themes Subreddit
|
||||||
* ⭐ **[Mobile Abyss](https://mobile.alphacoders.com/)** - Wallpapers
|
* ⭐ **[Mobile Abyss](https://mobile.alphacoders.com/)** - Wallpapers
|
||||||
* [PixelXpert](https://github.com/siavash79/PixelXpert) or [Dashbud](https://dashbud.dev/) / [Discord](https://discord.com/invite/78h7xgj) - Android Customization Apps
|
* [PixelXpert](https://github.com/siavash79/PixelXpert) or [Dashbud](https://dashbud.dev/) / [Discord](https://discord.com/invite/78h7xgj) - Android Customization Apps
|
||||||
|
@ -239,7 +238,6 @@
|
||||||
|
|
||||||
## ▷ Battery Tools
|
## ▷ Battery Tools
|
||||||
|
|
||||||
* [Electron](https://play.google.com/store/apps/details?id=com.mahersafadi.electron) - Battery Monitor / Manager
|
|
||||||
* [SaverTuner](https://codeberg.org/s1m/savertuner) - Battery Monitor / Manager / Root
|
* [SaverTuner](https://codeberg.org/s1m/savertuner) - Battery Monitor / Manager / Root
|
||||||
* [Charge Meter](https://play.google.com/store/apps/details?id=dev.km.android.chargemeter) - Battery Monitor / Manager
|
* [Charge Meter](https://play.google.com/store/apps/details?id=dev.km.android.chargemeter) - Battery Monitor / Manager
|
||||||
* [BatteryGuru](https://rentry.co/FMHYBase64#battery-guru) - Battery Monitor / Manager
|
* [BatteryGuru](https://rentry.co/FMHYBase64#battery-guru) - Battery Monitor / Manager
|
||||||
|
@ -255,7 +253,7 @@
|
||||||
|
|
||||||
## ▷ Camera Tools
|
## ▷ Camera Tools
|
||||||
|
|
||||||
* ⭐ **[Google Lens](https://lens.google/)** - Multiple Camera Tools
|
* ⭐ **[Google Lens](https://lens.google.com/)** - Multiple Camera Tools
|
||||||
* ⭐ **[Gallery](https://github.com/FossifyOrg/Gallery)**, **[Aves](https://github.com/deckerst/aves)**, [PhotosGo](https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo), [Ente](https://ente.io/) / [GitHub](https://github.com/ente-io/ente), [Photok](https://github.com/leonlatsch/Photok), [Stingle](https://stingle.org/), [QuickPic](https://github.com/WSTxda/QP-Gallery-Releases), [UhuruPhotos](https://uhuru.photos) / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android), [Google Photos](https://rentry.co/FMHYBase64#revanced-google-photos) or [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Galleries
|
* ⭐ **[Gallery](https://github.com/FossifyOrg/Gallery)**, **[Aves](https://github.com/deckerst/aves)**, [PhotosGo](https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo), [Ente](https://ente.io/) / [GitHub](https://github.com/ente-io/ente), [Photok](https://github.com/leonlatsch/Photok), [Stingle](https://stingle.org/), [QuickPic](https://github.com/WSTxda/QP-Gallery-Releases), [UhuruPhotos](https://uhuru.photos) / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android), [Google Photos](https://rentry.co/FMHYBase64#revanced-google-photos) or [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Galleries
|
||||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)**, [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam
|
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)**, [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam
|
||||||
* [Sponge](https://play.google.com/store/apps/details?id=com.prismtree.sponge) - Image Gallery Cleaner
|
* [Sponge](https://play.google.com/store/apps/details?id=com.prismtree.sponge) - Image Gallery Cleaner
|
||||||
|
@ -307,7 +305,6 @@
|
||||||
|
|
||||||
## ▷ Screen Tools
|
## ▷ Screen Tools
|
||||||
|
|
||||||
* [OLEDBuddy](https://play.google.com/store/apps/details?id=me.mikecroall.oledbuddy) - Convert Gray Pixels to True Black
|
|
||||||
* [Quick Cursor](https://play.google.com/store/apps/details?id=com.quickcursor) - Cursor for Large Smartphones
|
* [Quick Cursor](https://play.google.com/store/apps/details?id=com.quickcursor) - Cursor for Large Smartphones
|
||||||
* [Caffeine](https://lab.zhs.moe/caffeine/) or [KeepScreenOn](https://github.com/elastic-rock/KeepScreenOn) - Keep Screen On
|
* [Caffeine](https://lab.zhs.moe/caffeine/) or [KeepScreenOn](https://github.com/elastic-rock/KeepScreenOn) - Keep Screen On
|
||||||
* [FakeStandby](https://fakestandby.jonasbernard.de/) - Turn Off the Screen While App is Running
|
* [FakeStandby](https://fakestandby.jonasbernard.de/) - Turn Off the Screen While App is Running
|
||||||
|
@ -337,7 +334,7 @@
|
||||||
## ▷ Root / Flash
|
## ▷ Root / Flash
|
||||||
|
|
||||||
* 🌐 **[Bootloader Unlock: Wall of Shame](https://github.com/melontini/bootloader-unlock-wall-of-shame)** - Bootlocker Limit Index
|
* 🌐 **[Bootloader Unlock: Wall of Shame](https://github.com/melontini/bootloader-unlock-wall-of-shame)** - Bootlocker Limit Index
|
||||||
* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [KernelSU](https://kernelsu.org/), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [APatch](https://github.com/bmax121/APatch) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools
|
* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [KernelSU](https://kernelsu.org/), [KernelSU-Next](https://github.com/KernelSU-Next/KernelSU-Next), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [APatch](https://github.com/bmax121/APatch) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools
|
||||||
* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/), [2](https://github.com/osm0sis/PlayIntegrityFork), [3](https://xdaforums.com/t/tricky-store-bootloader-keybox-spoofing.4683446/) / [Fix Guide](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/page-177#post-89189572) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo)
|
* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/), [2](https://github.com/osm0sis/PlayIntegrityFork), [3](https://xdaforums.com/t/tricky-store-bootloader-keybox-spoofing.4683446/) / [Fix Guide](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/page-177#post-89189572) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo)
|
||||||
* ⭐ **[Android Docker](https://gist.github.com/FreddieOliveira/efe850df7ff3951cb62d74bd770dce27)** - Run Docker on Android
|
* ⭐ **[Android Docker](https://gist.github.com/FreddieOliveira/efe850df7ff3951cb62d74bd770dce27)** - Run Docker on Android
|
||||||
* [Rooting Guides](https://awesome-android-root.link/rooting-guides/) - Android Root Guides
|
* [Rooting Guides](https://awesome-android-root.link/rooting-guides/) - Android Root Guides
|
||||||
|
@ -378,7 +375,7 @@
|
||||||
* [Toolbox](https://github.com/Koizeay/Toolbox), [Tooly](https://play.google.com/store/apps/details?id=com.yousx.thetoolsapp) or [fooView](https://play.google.com/store/apps/details?id=com.fooview.android.fooview) - Multi-Tool Apps
|
* [Toolbox](https://github.com/Koizeay/Toolbox), [Tooly](https://play.google.com/store/apps/details?id=com.yousx.thetoolsapp) or [fooView](https://play.google.com/store/apps/details?id=com.fooview.android.fooview) - Multi-Tool Apps
|
||||||
* [LightCut](https://play.google.com/store/apps/details?id=com.lightcut.videoeditor), [open-video-editor](https://github.com/devhyper/open-video-editor) or [Vaux](https://play.google.com/store/apps/details?id=com.vaux.vaux_editor) - Video Editors
|
* [LightCut](https://play.google.com/store/apps/details?id=com.lightcut.videoeditor), [open-video-editor](https://github.com/devhyper/open-video-editor) or [Vaux](https://play.google.com/store/apps/details?id=com.vaux.vaux_editor) - Video Editors
|
||||||
* [auto-auto-rotate](https://gitlab.com/juanitobananas/auto-auto-rotate) - Per App Rotation Settings
|
* [auto-auto-rotate](https://gitlab.com/juanitobananas/auto-auto-rotate) - Per App Rotation Settings
|
||||||
* [Geto](https://github.com/JackEblan/Geto) - Custom App Settings
|
* [Geto](https://github.com/JackEblan/Geto) - Custom App Settings / Requires Shizuku
|
||||||
* [Catima](https://catima.app/) - Loyalty Card Managers
|
* [Catima](https://catima.app/) - Loyalty Card Managers
|
||||||
* [Shortcut Maker](https://play.google.com/store/apps/details?id=rk.android.app.shortcutmaker) or [Quikshort](https://play.google.com/store/apps/details?id=com.atolphadev.quikshort) - Create App Shortcuts
|
* [Shortcut Maker](https://play.google.com/store/apps/details?id=rk.android.app.shortcutmaker) or [Quikshort](https://play.google.com/store/apps/details?id=com.atolphadev.quikshort) - Create App Shortcuts
|
||||||
* [Touch The Notch](https://play.google.com/store/apps/details?id=com.notch.touch) or [Action Notch](https://play.google.com/store/apps/details?id=com.androxus.touchthenotch) - Use Camera Notch as Button
|
* [Touch The Notch](https://play.google.com/store/apps/details?id=com.notch.touch) or [Action Notch](https://play.google.com/store/apps/details?id=com.androxus.touchthenotch) - Use Camera Notch as Button
|
||||||
|
@ -392,7 +389,7 @@
|
||||||
* [DeepSeek](https://download.deepseek.com/app/) - AI Chatbot
|
* [DeepSeek](https://download.deepseek.com/app/) - AI Chatbot
|
||||||
* [ChatBox](https://github.com/Bin-Huang/chatbox), [Maid](https://github.com/Mobile-Artificial-Intelligence/maid), [ChatterUI](https://github.com/Vali-98/ChatterUI) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - Local AI Chatbots
|
* [ChatBox](https://github.com/Bin-Huang/chatbox), [Maid](https://github.com/Mobile-Artificial-Intelligence/maid), [ChatterUI](https://github.com/Vali-98/ChatterUI) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - Local AI Chatbots
|
||||||
* [Chai](https://www.chai-research.com/) - Roleplaying Chatbots
|
* [Chai](https://www.chai-research.com/) - Roleplaying Chatbots
|
||||||
* [Audio-Recorder](https://gitlab.com/axet/android-audio-recorder/) - Audio Recorders
|
* [Audio-Recorder](https://gitlab.com/axet/android-audio-recorder/) - Audio Recorder
|
||||||
* [Noiseun Canceller](https://play.google.com/store/apps/details?id=com.jazibkhan.noiseuncanceller) - Audio Surrounding Recorder
|
* [Noiseun Canceller](https://play.google.com/store/apps/details?id=com.jazibkhan.noiseuncanceller) - Audio Surrounding Recorder
|
||||||
* [Voiceliner](https://a9.io/voiceliner/) - Voice Memos / [GitHub](https://github.com/maxkrieger/voiceliner)
|
* [Voiceliner](https://a9.io/voiceliner/) - Voice Memos / [GitHub](https://github.com/maxkrieger/voiceliner)
|
||||||
* [DiaryVault](https://github.com/SankethBK/diaryvault) - Diary App
|
* [DiaryVault](https://github.com/SankethBK/diaryvault) - Diary App
|
||||||
|
@ -441,7 +438,7 @@
|
||||||
* ⭐ **[ByeDPIAndroid](https://github.com/dovecoteescapee/ByeDPIAndroid)** or [Lantern](https://lantern.io/download?os=android) - Anti-Censorship Proxies
|
* ⭐ **[ByeDPIAndroid](https://github.com/dovecoteescapee/ByeDPIAndroid)** or [Lantern](https://lantern.io/download?os=android) - Anti-Censorship Proxies
|
||||||
* ⭐ **[XPL-EX](https://github.com/0bbedCode/XPL-EX)** or [InviZible](https://github.com/Gedsh/InviZible?tab=readme-ov-file#invizible-pro) - Privacy Managers
|
* ⭐ **[XPL-EX](https://github.com/0bbedCode/XPL-EX)** or [InviZible](https://github.com/Gedsh/InviZible?tab=readme-ov-file#invizible-pro) - Privacy Managers
|
||||||
* ⭐ **[Amarok](https://github.com/deltazefiro/Amarok-Hider)**, [Aer](https://github.com/nain-F49FF806/anemo-aer) or [SafeSpace](https://github.com/aashishksahu/SafeSpace) - Hide Files / Apps
|
* ⭐ **[Amarok](https://github.com/deltazefiro/Amarok-Hider)**, [Aer](https://github.com/nain-F49FF806/anemo-aer) or [SafeSpace](https://github.com/aashishksahu/SafeSpace) - Hide Files / Apps
|
||||||
* [ceno-browser](https://censorship.no/en/index.html) - Proxy Browser / [GitHub](https://github.com/censorship-no/ceno-browser)
|
* [Ceno Browser](https://censorship.no/en/index.html) - Proxy Browser / [GitHub](https://github.com/censorship-no/ceno-browser)
|
||||||
* [husi](https://github.com/xchacha20-poly1305/husi) - Proxy Config Manager
|
* [husi](https://github.com/xchacha20-poly1305/husi) - Proxy Config Manager
|
||||||
* [WG Tunnel](https://zaneschepke.com/wgtunnel-docs/overview.html) - WireGuard VPN App / [Discord](https://discord.gg/rbRRNh6H7V) / [Telegram](https://t.me/wgtunnel) / [GitHub](https://github.com/zaneschepke/wgtunnel)
|
* [WG Tunnel](https://zaneschepke.com/wgtunnel-docs/overview.html) - WireGuard VPN App / [Discord](https://discord.gg/rbRRNh6H7V) / [Telegram](https://t.me/wgtunnel) / [GitHub](https://github.com/zaneschepke/wgtunnel)
|
||||||
* [Oblivion](https://github.com/bepass-org/oblivion) - Warp Client
|
* [Oblivion](https://github.com/bepass-org/oblivion) - Warp Client
|
||||||
|
@ -453,7 +450,6 @@
|
||||||
* [Sapio](https://github.com/jonathanklee/Sapio) - Scan Apps for Google Dependency
|
* [Sapio](https://github.com/jonathanklee/Sapio) - Scan Apps for Google Dependency
|
||||||
* [NetGuard](https://www.netguard.me/) - Block Internet Access Per App / [GitHub](https://github.com/M66B/NetGuard)
|
* [NetGuard](https://www.netguard.me/) - Block Internet Access Per App / [GitHub](https://github.com/M66B/NetGuard)
|
||||||
* [AirGuard](https://github.com/seemoo-lab/AirGuard) - AirTag Tracking Protection
|
* [AirGuard](https://github.com/seemoo-lab/AirGuard) - AirTag Tracking Protection
|
||||||
* [Hypatia](https://gitlab.com/divested-mobile/hypatia) - Antivirus
|
|
||||||
* [AFWall+](https://github.com/ukanth/afwall/) (root) or [Rethink App](https://rethinkdns.com/) / [GitHub](https://github.com/celzero/rethink-app), [Karma](https://github.com/StarGW-net/karma-firewall) - Firewalls
|
* [AFWall+](https://github.com/ukanth/afwall/) (root) or [Rethink App](https://rethinkdns.com/) / [GitHub](https://github.com/celzero/rethink-app), [Karma](https://github.com/StarGW-net/karma-firewall) - Firewalls
|
||||||
* [v2rayNG](https://github.com/2dust/v2rayNG) or [V2Ray Proxy](https://play.google.com/store/apps/details?id=free.v2ray.proxy.VPN) - Build Privacy Network
|
* [v2rayNG](https://github.com/2dust/v2rayNG) or [V2Ray Proxy](https://play.google.com/store/apps/details?id=free.v2ray.proxy.VPN) - Build Privacy Network
|
||||||
* [Open SSTP Client](https://github.com/kittoku/Open-SSTP-Client) - SSTP Client
|
* [Open SSTP Client](https://github.com/kittoku/Open-SSTP-Client) - SSTP Client
|
||||||
|
@ -472,11 +468,11 @@
|
||||||
## ▷ Android Internet
|
## ▷ Android Internet
|
||||||
|
|
||||||
* ↪️ **[Android Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_browsers)**
|
* ↪️ **[Android Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_browsers)**
|
||||||
* ⭐ **[KeePassDX](https://www.keepassdx.com/)**, **[BitWarden](https://play.google.com/store/apps/details?id=com.x8bit.bitwarden)**, [Keyguard](https://github.com/AChep/keyguard-app), [AuthPass](https://authpass.app/), [KeyPass](https://github.com/yogeshpaliyal/KeyPass), [Keepass2Android](https://play.google.com/store/apps/details?id=keepass2android.keepass2android) / [GitHub](https://github.com/PhilippC/keepass2android) - Password Managers
|
* ⭐ **[KeePassDX](https://www.keepassdx.com/)**, **[BitWarden](https://play.google.com/store/apps/details?id=com.x8bit.bitwarden)**, [Keyguard](https://github.com/AChep/keyguard-app), [Proton Pass](https://proton.me/pass), [AuthPass](https://authpass.app/), [KeyPass](https://github.com/yogeshpaliyal/KeyPass), [Keepass2Android](https://play.google.com/store/apps/details?id=keepass2android.keepass2android) / [GitHub](https://github.com/PhilippC/keepass2android) - Password Managers
|
||||||
* ⭐ **[Thunderbird](https://github.com/thunderbird/thunderbird-android)**, [K-9 Mail](https://k9mail.app/), [Tuta](https://tuta.com/), [SimpleMail](https://framagit.org/dystopia-project/simple-email), [Monocles](https://f-droid.org/packages/de.monocles.mail/) or [FairCode](https://email.faircode.eu/) - Email Clients
|
* ⭐ **[Thunderbird](https://github.com/thunderbird/thunderbird-android)**, [K-9 Mail](https://k9mail.app/), [Tuta](https://tuta.com/), [SimpleMail](https://framagit.org/dystopia-project/simple-email), [Monocles](https://f-droid.org/packages/de.monocles.mail/) or [FairCode](https://email.faircode.eu/) - Email Clients
|
||||||
* ⭐ **[PairVPN Hotspot](https://pairvpn.com/hotspot)**, [Tetherfi](https://github.com/pyamsoft/tetherfi) or [NetShare](https://netshare.app/) - Create Wi-Fi Hotspots
|
* ⭐ **[PairVPN Hotspot](https://pairvpn.com/hotspot)**, [Tetherfi](https://github.com/pyamsoft/tetherfi) or [NetShare](https://netshare.app/) - Create Wi-Fi Hotspots
|
||||||
* [Wolfram Alpha](https://rentry.co/FMHYBase64#wolfram-mobile) - Searchable Knowledge Base
|
* [Wolfram Alpha](https://rentry.co/FMHYBase64#wolfram-mobile) - Searchable Knowledge Base
|
||||||
* [Pluma RSS](https://rentry.co/FMHYBase64#pluma-rss), [Feeder](https://f-droid.org/en/packages/com.nononsenseapps.feeder/), [Twine](https://github.com/msasikanth/twine), [FeedMe](https://github.com/seazon/FeedMe), [news](https://f-droid.org/packages/co.appreactor.news/) / [GitHub](https://github.com/bubelov/news), [nunti](https://gitlab.com/ondrejfoltyn/nunti), [Aggregator News](https://play.google.com/store/apps/details?id=com.and96.aggregator_news), [CapyReader](https://github.com/jocmp/capyreader) or [ReadYou](https://github.com/Ashinch/ReadYou) - RSS Readers
|
* [Feeder](https://github.com/spacecowboy/Feeder), [Pluma RSS](https://rentry.co/FMHYBase64#pluma-rss), [Twine](https://github.com/msasikanth/twine), [FeedMe](https://github.com/seazon/FeedMe), [news](https://f-droid.org/packages/co.appreactor.news/) / [GitHub](https://github.com/bubelov/news), [nunti](https://gitlab.com/ondrejfoltyn/nunti), [Aggregator News](https://play.google.com/store/apps/details?id=com.and96.aggregator_news), [CapyReader](https://github.com/jocmp/capyreader) or [ReadYou](https://github.com/Ashinch/ReadYou) - RSS Readers
|
||||||
* [NewsBang](https://www.newsbang.com/) - News App / US Only
|
* [NewsBang](https://www.newsbang.com/) - News App / US Only
|
||||||
* [Hacki](https://github.com/Livinglist/Hacki), [Harmoni](https://play.google.com/store/apps/details?id=com.simon.harmonichackernews) or [Glider](https://github.com/Mosc/Glider) - Tech News / HN Apps
|
* [Hacki](https://github.com/Livinglist/Hacki), [Harmoni](https://play.google.com/store/apps/details?id=com.simon.harmonichackernews) or [Glider](https://github.com/Mosc/Glider) - Tech News / HN Apps
|
||||||
* [DataMonitor](https://github.com/itsdrnoob/DataMonitor) - Data Usage Monitor
|
* [DataMonitor](https://github.com/itsdrnoob/DataMonitor) - Data Usage Monitor
|
||||||
|
@ -509,11 +505,12 @@
|
||||||
* ⭐ **[LocalSend](https://localsend.org/)** - File Sharing / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png)
|
* ⭐ **[LocalSend](https://localsend.org/)** - File Sharing / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png)
|
||||||
* ⭐ **[Snapdrop Android](https://github.com/fm-sys/snapdrop-android)** or [pairdrop](https://pairdrop.net/) - File Sharing
|
* ⭐ **[Snapdrop Android](https://github.com/fm-sys/snapdrop-android)** or [pairdrop](https://pairdrop.net/) - File Sharing
|
||||||
* ⭐ **[Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer)**, [Total Commander](https://www.ghisler.com/ce.htm), [FileNavigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator), [File Explorer Compose](https://github.com/Raival-e/File-Explorer-Compose), [Xplore](https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore) or [AmazeFileManager](https://github.com/TeamAmaze/AmazeFileManager) / [Utilities](https://github.com/TeamAmaze/AmazeFileUtilities) - File Managers / Explorers
|
* ⭐ **[Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer)**, [Total Commander](https://www.ghisler.com/ce.htm), [FileNavigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator), [File Explorer Compose](https://github.com/Raival-e/File-Explorer-Compose), [Xplore](https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore) or [AmazeFileManager](https://github.com/TeamAmaze/AmazeFileManager) / [Utilities](https://github.com/TeamAmaze/AmazeFileUtilities) - File Managers / Explorers
|
||||||
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) / [Extra Features](https://rentry.co/FMHYBase64#1dm) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers
|
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) / [Extra Features](https://rentry.co/FMHYBase64#1dm), [ADM](https://rentry.co/FMHYBase64#adm) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers
|
||||||
* [Aria2App](https://github.com/devgianlu/Aria2App) - Download Manager Controller
|
* [Aria2App](https://github.com/devgianlu/Aria2App) - Download Manager Controller
|
||||||
* [Round Sync](https://github.com/newhinton/Round-Sync) or [MetaCTRL](https://metactrl.com/) - Multi-Site Cloud Storage File Managers
|
* [Round Sync](https://github.com/newhinton/Round-Sync) or [MetaCTRL](https://metactrl.com/) - Multi-Site Cloud Storage File Managers
|
||||||
* [AdbFileManager](https://github.com/T0biasCZe/AdbFileManager) - Manage Android File via Windows
|
* [AdbFileManager](https://github.com/T0biasCZe/AdbFileManager) - Manage Android File via Windows
|
||||||
* [dropbox](https://www.dropbox.com/) / [Sync](https://play.google.com/store/apps/details?id=com.ttxapps.dropsync) - Cloud Storage
|
* [dropbox](https://www.dropbox.com/) / [Sync](https://play.google.com/store/apps/details?id=com.ttxapps.dropsync) - Cloud Storage
|
||||||
|
* [RSAF](https://github.com/chenxiaolong/RSAF) - Add RClone Remotes to Android Storage Framework
|
||||||
* [aQRoss](https://aqross.app/) - QR Code File Sharing
|
* [aQRoss](https://aqross.app/) - QR Code File Sharing
|
||||||
* [iyox-Wormhole](https://github.com/iyox-studios/iyox-Wormhole) or [Wormhole](https://gitlab.com/lukas-heiligenbrunner/wormhole) - File Sync / Sharing
|
* [iyox-Wormhole](https://github.com/iyox-studios/iyox-Wormhole) or [Wormhole](https://gitlab.com/lukas-heiligenbrunner/wormhole) - File Sync / Sharing
|
||||||
* [CrocGUI](https://github.com/howeyc/crocgui) - File Sync / Sharing
|
* [CrocGUI](https://github.com/howeyc/crocgui) - File Sync / Sharing
|
||||||
|
@ -560,8 +557,9 @@
|
||||||
* ↪️ **[Text Editors / To-Do](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_android_text_editors)**
|
* ↪️ **[Text Editors / To-Do](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_android_text_editors)**
|
||||||
* [StayFree](https://stayfreeapps.com/) - Digital Productivity Tracker / App Blocker
|
* [StayFree](https://stayfreeapps.com/) - Digital Productivity Tracker / App Blocker
|
||||||
* [Folksable](https://folksable.com/) - Social Habit Tracker
|
* [Folksable](https://folksable.com/) - Social Habit Tracker
|
||||||
* [unhabits](https://github.com/iSoron/uhabits) - Habit Tracker
|
* [Loop Habit Tracker](https://github.com/iSoron/uhabits) - Habit Tracker
|
||||||
* [HabitBuilder](https://github.com/ofalvai/HabitBuilder) - Habit Tracker
|
* [HabitBuilder](https://github.com/ofalvai/HabitBuilder) - Habit Tracker
|
||||||
|
* [Grit](https://github.com/shub39/Grit) - Habit Tracker
|
||||||
* [MoreDays](https://gitlab.com/wuapps/moredays) - Habit Tracker
|
* [MoreDays](https://gitlab.com/wuapps/moredays) - Habit Tracker
|
||||||
* [TheFor](https://thefor.xyz/) - Habit Tracker
|
* [TheFor](https://thefor.xyz/) - Habit Tracker
|
||||||
* [Unlock Master](https://github.com/sweakpl/unlock-master) - Digital Habit Tracker
|
* [Unlock Master](https://github.com/sweakpl/unlock-master) - Digital Habit Tracker
|
||||||
|
@ -703,7 +701,7 @@
|
||||||
* [Readwise](https://play.google.com/store/apps/details?id=com.readwise) - Ebook Reader
|
* [Readwise](https://play.google.com/store/apps/details?id=com.readwise) - Ebook Reader
|
||||||
* [Sav PDF Viewer Pro](https://www.savpdfviewer.com) - PDF Reader / [GitHub](https://github.com/Sav22999/sav-pdf-viewer-pro)
|
* [Sav PDF Viewer Pro](https://www.savpdfviewer.com) - PDF Reader / [GitHub](https://github.com/Sav22999/sav-pdf-viewer-pro)
|
||||||
* [MJ PDF](https://github.com/mudlej/mj_pdf) - PDF Reader
|
* [MJ PDF](https://github.com/mudlej/mj_pdf) - PDF Reader
|
||||||
* [LibGen Mobile](https://github.com/manuelvargastapia/libgen_mobile_app) or [Aurora](https://github.com/FunkyMuse/Aurora) - Free Books / LibGen
|
* [Aurora](https://github.com/FunkyMuse/Aurora) - Free Books / LibGen
|
||||||
* [Fable](https://fable.co/) - Join / Create Bookclubs
|
* [Fable](https://fable.co/) - Join / Create Bookclubs
|
||||||
* [Project Gutenberg](https://github.com/Pool-Of-Tears/Myne) - Free Books
|
* [Project Gutenberg](https://github.com/Pool-Of-Tears/Myne) - Free Books
|
||||||
* [Openreads](https://github.com/mateusz-bak/openreads), [NeverTooManyBooks](https://github.com/tfonteyn/NeverTooManyBooks) or [Basmo](https://basmo.app/) - Book Managers / Trackers
|
* [Openreads](https://github.com/mateusz-bak/openreads), [NeverTooManyBooks](https://github.com/tfonteyn/NeverTooManyBooks) or [Basmo](https://basmo.app/) - Book Managers / Trackers
|
||||||
|
@ -733,7 +731,7 @@
|
||||||
# ► Android Audio
|
# ► Android Audio
|
||||||
|
|
||||||
* ↪️ **[Song Identification Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_song_identification)**
|
* ↪️ **[Song Identification Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_song_identification)**
|
||||||
* ⭐ **[xManager](https://www.xmanagerapp.com/)** / [Discord](https://discord.com/invite/dnpKn5Wufm), [ReVanced Manager](https://revanced.app/) / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager) or [Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk) - Ad-Free Spotify
|
* ⭐ **[ReVanced Manager](https://revanced.app/)** / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager), [xManager](https://www.xmanagerapp.com/) / [Discord](https://discord.com/invite/dnpKn5Wufm) or [Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk) - Ad-Free Spotify
|
||||||
* ⭐ **Spotify Tools** - [Friend Activity](https://spotivity.me/) / [Mute Ads](https://play.google.com/store/apps/details?id=live.teekamsuthar.mutify), [2](https://github.com/aghontpi/ad-silence) / [Stats](https://stats.fm/)
|
* ⭐ **Spotify Tools** - [Friend Activity](https://spotivity.me/) / [Mute Ads](https://play.google.com/store/apps/details?id=live.teekamsuthar.mutify), [2](https://github.com/aghontpi/ad-silence) / [Stats](https://stats.fm/)
|
||||||
* ⭐ **[Seeker](https://github.com/jackBonadies/SeekerAndroid)** - Audio Downloader / Soulseek Frontend
|
* ⭐ **[Seeker](https://github.com/jackBonadies/SeekerAndroid)** - Audio Downloader / Soulseek Frontend
|
||||||
* ⭐ **[AutomaTag](http://automatag.com/)** - Metadata Organizer
|
* ⭐ **[AutomaTag](http://automatag.com/)** - Metadata Organizer
|
||||||
|
@ -813,7 +811,6 @@
|
||||||
|
|
||||||
* ⭐ **[OuterTune](https://github.com/OuterTune/OuterTune)**, [2](https://github.com/mostafaalagamy/metrolist), [3](https://github.com/Malopieds/InnerTune), [4](https://github.com/z-huang/InnerTune) - YouTube Music Player
|
* ⭐ **[OuterTune](https://github.com/OuterTune/OuterTune)**, [2](https://github.com/mostafaalagamy/metrolist), [3](https://github.com/Malopieds/InnerTune), [4](https://github.com/z-huang/InnerTune) - YouTube Music Player
|
||||||
* [Musify](https://gokadzev.github.io/Musify/) - YouTube Music Player / [GitHub](https://github.com/gokadzev/Musify)
|
* [Musify](https://gokadzev.github.io/Musify/) - YouTube Music Player / [GitHub](https://github.com/gokadzev/Musify)
|
||||||
* [RiMusic](https://rimusic.xyz/) - YouTube Music Player / [GitHub](https://github.com/fast4x/RiMusic)
|
|
||||||
* [Harmony Music](https://github.com/anandnet/Harmony-Music) - YouTube Music Player
|
* [Harmony Music](https://github.com/anandnet/Harmony-Music) - YouTube Music Player
|
||||||
* [SimpMusic](https://simpmusic.org/) - YouTube Music Player / [GitHub](https://github.com/maxrave-dev/SimpMusic)
|
* [SimpMusic](https://simpmusic.org/) - YouTube Music Player / [GitHub](https://github.com/maxrave-dev/SimpMusic)
|
||||||
* [spmp](https://github.com/toasterofbread/spmp) - YouTube Music Player
|
* [spmp](https://github.com/toasterofbread/spmp) - YouTube Music Player
|
||||||
|
@ -871,7 +868,7 @@
|
||||||
* ↪️ **[Android TV](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_android_tv)**
|
* ↪️ **[Android TV](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_android_tv)**
|
||||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools)
|
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools)
|
||||||
* ⭐ **[CloudStream](https://github.com/recloudstream/cloudstream)** - Movies / TV / Anime
|
* ⭐ **[CloudStream](https://github.com/recloudstream/cloudstream)** - Movies / TV / Anime
|
||||||
* ⭐ **CloudStream Resources** - [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](https://rentry.org/cs3-repos) / [Discord](https://discord.com/invite/5Hus6fM) / [Docs](https://recloudstream.github.io/csdocs/), [2](https://cloudstream.miraheze.org/wiki/Main_Page)
|
* ⭐ **CloudStream Resources** - [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](https://rentry.org/cs3-repos), [3](https://cloudstream.miraheze.org/wiki/List_of_extensions) / [Discord](https://discord.com/invite/5Hus6fM) / [Docs](https://recloudstream.github.io/csdocs/), [2](https://cloudstream.miraheze.org/wiki/Main_Page)
|
||||||
* ⭐ **[HDO Box](https://rentry.co/FMHYBase64#hdo-box)** - Movies / TV / [Discord](https://discord.gg/VPRJVExUVD) / [Telegram](https://t.me/+Ywz5HnhvFHA3Zjk1) / [Warning](https://i.ibb.co/ZBy93sr/image.png)
|
* ⭐ **[HDO Box](https://rentry.co/FMHYBase64#hdo-box)** - Movies / TV / [Discord](https://discord.gg/VPRJVExUVD) / [Telegram](https://t.me/+Ywz5HnhvFHA3Zjk1) / [Warning](https://i.ibb.co/ZBy93sr/image.png)
|
||||||
* ⭐ **[Kodi](https://kodi.tv/)** - [/r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart)
|
* ⭐ **[Kodi](https://kodi.tv/)** - [/r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart)
|
||||||
* ⭐ **[Syncler](https://syncler.net/)** - Movies / TV / [Providers](https://www.reddit.com/r/providers4syncler/)
|
* ⭐ **[Syncler](https://syncler.net/)** - Movies / TV / [Providers](https://www.reddit.com/r/providers4syncler/)
|
||||||
|
@ -983,9 +980,10 @@
|
||||||
* [Toolbox](https://github.com/Koizeay/Toolbox) - Multi-Tool App
|
* [Toolbox](https://github.com/Koizeay/Toolbox) - Multi-Tool App
|
||||||
* [iOS Settings URLs](https://github.com/FifiTheBulldog/ios-settings-urls) - iOS Settings URL List
|
* [iOS Settings URLs](https://github.com/FifiTheBulldog/ios-settings-urls) - iOS Settings URL List
|
||||||
* [FreshWalls](https://apps.apple.com/app/id1627085956) or [iOS Wallpapers](https://goo.gl/photos/ZVpabTtcezd35XBa9/) - iPhone Wallpapers
|
* [FreshWalls](https://apps.apple.com/app/id1627085956) or [iOS Wallpapers](https://goo.gl/photos/ZVpabTtcezd35XBa9/) - iPhone Wallpapers
|
||||||
* [ChatGPT](https://apps.apple.com/app/id6448311069), [DeepSeek](https://download.deepseek.com/app/), [Mollama](https://apps.apple.com/app/mollama/id6736948278), [ChatBox](https://github.com/Bin-Huang/chatbox) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - AI Chatbots
|
* [ChatGPT](https://apps.apple.com/app/id6448311069), [DeepSeek](https://download.deepseek.com/app/), [Mollama](https://apps.apple.com/app/mollama/id6736948278), [ChatBox](https://github.com/Bin-Huang/chatbox), [FullMoon](https://fullmoon.app/) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - AI Chatbots
|
||||||
* [Santander](https://github.com/NSAntoine/Santander) or [Documents](https://apps.apple.com/app/documents-file-manager-docs/id364901807) - File Managers
|
* [Santander](https://github.com/NSAntoine/Santander) or [Documents](https://apps.apple.com/app/documents-file-manager-docs/id364901807) - File Managers
|
||||||
* [ZArchiver](https://apps.apple.com/app/id6504976055) or [Keka](https://testflight.apple.com/join/gPYINGCJ) - File Archiver
|
* [ZArchiver](https://apps.apple.com/app/id6504976055) or [Keka](https://testflight.apple.com/join/gPYINGCJ) - File Archiver
|
||||||
|
* [Blip](https://apps.apple.com/in/app/blip-send-files-in-a-click/id6463305181) - File Transfer
|
||||||
* [fGet](https://apps.apple.com/app/fget-file-manager-browser/id1582654012) - Download Manager
|
* [fGet](https://apps.apple.com/app/fget-file-manager-browser/id1582654012) - Download Manager
|
||||||
* [iTorrent](https://github.com/XITRIX/iTorrent) - Torrent Client / [AltStore](https://therealfoxster.github.io/altsource-viewer/view/?source=https://xitrix.github.io/iTorrent/AltStore.json)
|
* [iTorrent](https://github.com/XITRIX/iTorrent) - Torrent Client / [AltStore](https://therealfoxster.github.io/altsource-viewer/view/?source=https://xitrix.github.io/iTorrent/AltStore.json)
|
||||||
* [The National Do Not Call Registry](https://www.donotcall.gov/) - Opt Out of Telemarketing Calls
|
* [The National Do Not Call Registry](https://www.donotcall.gov/) - Opt Out of Telemarketing Calls
|
||||||
|
@ -1148,11 +1146,10 @@
|
||||||
* 🌐 **[iOS Console Emulators](https://www.reddit.com/r/EmulationOniOS/wiki/emulators)** - Gaming Emulator Index
|
* 🌐 **[iOS Console Emulators](https://www.reddit.com/r/EmulationOniOS/wiki/emulators)** - Gaming Emulator Index
|
||||||
* ⭐ **PDALife** - [Games](https://pdalife.com/ios/games) / [Apps](https://pdalife.com/ios/programmy/) / [Telegram](https://t.me/pdalife_official)
|
* ⭐ **PDALife** - [Games](https://pdalife.com/ios/games) / [Apps](https://pdalife.com/ios/programmy/) / [Telegram](https://t.me/pdalife_official)
|
||||||
* ⭐ **[CodeVN](https://ios.codevn.net/)** / [Telegram](https://t.me/+1qK9KUZlfGs3ZDg1) or [IPALibrary](https://ipalibrary.me/) - Tweaked Apps / Use Orion to Translate
|
* ⭐ **[CodeVN](https://ios.codevn.net/)** / [Telegram](https://t.me/+1qK9KUZlfGs3ZDg1) or [IPALibrary](https://ipalibrary.me/) - Tweaked Apps / Use Orion to Translate
|
||||||
* [4PDA](https://4pda.to/forum/) - Tweaked Apps / Use Orion to Translate / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
* [4PDA](https://4pda.to/forum/) - Tweaked Apps / Use Orion to Translate / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||||
* [AppDB](https://appdb.to) - App Library
|
* [AppDB](https://appdb.to) - App Library
|
||||||
* [iOSVizor](https://iosvizor.com/) - Tweaked Apps / [Telegram](https://t.me/iosvizor)
|
* [iOSVizor](https://iosvizor.com/) - Tweaked Apps / [Telegram](https://t.me/iosvizor)
|
||||||
* [DriftyWinds](https://raw.githubusercontent.com/driftywinds/driftywinds.github.io/master/AltStore/apps.json) - AltStore App Source
|
* [DriftyWinds](https://raw.githubusercontent.com/driftywinds/driftywinds.github.io/master/AltStore/apps.json) - AltStore App Source
|
||||||
* [UsearcticSigner](https://usearcticsigner.github.io/) - Artic's Repo
|
|
||||||
* [fnd](https://fnd.io/) - App Store Search
|
* [fnd](https://fnd.io/) - App Store Search
|
||||||
* [Mobilism iOS Apps](https://forum.mobilism.org/viewforum.php?f=312) - App Library / Signup Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
* [Mobilism iOS Apps](https://forum.mobilism.org/viewforum.php?f=312) - App Library / Signup Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||||
* [StarFiles](https://starfiles.co/) - App Library
|
* [StarFiles](https://starfiles.co/) - App Library
|
||||||
|
@ -1185,7 +1182,7 @@
|
||||||
|
|
||||||
## ▷ Social Media Apps
|
## ▷ Social Media Apps
|
||||||
|
|
||||||
* ⭐ **[BunnyTweak](https://github.com/bunny-mod/BunnyTweak)** - Discord Clients / [Plugins](https://purple-eyez.github.io/Plugins-List/) / [Extension](https://github.com/BillyCurtis/OpenDiscordSafariExtension)
|
* ⭐ **[BunnyTweak](https://github.com/bunny-mod/BunnyTweak)** - Discord Client / [Plugins](https://purple-eyez.github.io/Plugins-List/) / [Extension](https://github.com/BillyCurtis/OpenDiscordSafariExtension) / [Fonts](https://github.com/Rairof/Theme-Fonts), [2](https://github.com/Purple-EyeZ/Bunny-Fonts)
|
||||||
* ⭐ **[Acorn](https://acorn.blue/)** / [Discord](https://discord.gg/sWzw5GU5RV), [Reddit Deluxe](https://t.me/ethMods), [RedditFilter](https://github.com/level3tjg/RedditFilter) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#redditfilter-note), [Winston](https://winston.cafe/), [Apollo](https://github.com/Balackburn/Apollo) / [Tweak](https://github.com/JeffreyCA/Apollo-ImprovedCustomApi), [Lurker](https://apps.apple.com/app/lurkur-for-reddit/id6470203216), [RDX](https://apps.apple.com/app/rdx-for-reddit/id6503479190) or [OpenArtemis](https://apps.apple.com/app/id6473462587) - Reddit Clients
|
* ⭐ **[Acorn](https://acorn.blue/)** / [Discord](https://discord.gg/sWzw5GU5RV), [Reddit Deluxe](https://t.me/ethMods), [RedditFilter](https://github.com/level3tjg/RedditFilter) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#redditfilter-note), [Winston](https://winston.cafe/), [Apollo](https://github.com/Balackburn/Apollo) / [Tweak](https://github.com/JeffreyCA/Apollo-ImprovedCustomApi), [Lurker](https://apps.apple.com/app/lurkur-for-reddit/id6470203216), [RDX](https://apps.apple.com/app/rdx-for-reddit/id6503479190) or [OpenArtemis](https://apps.apple.com/app/id6473462587) - Reddit Clients
|
||||||
* ⭐ **[Arctic](https://getarctic.app/)**, [Voyager](https://apps.apple.com/app/id6451429762) / [GitHub](https://github.com/aeharding/voyager), [Mlem](https://apps.apple.com/app/id6450543782) / [GitHub](https://github.com/mlemgroup/mlem) or [Thunder](https://thunderapp.dev/) / [GitHub](https://github.com/thunder-app/thunder) - Lemmy Clients
|
* ⭐ **[Arctic](https://getarctic.app/)**, [Voyager](https://apps.apple.com/app/id6451429762) / [GitHub](https://github.com/aeharding/voyager), [Mlem](https://apps.apple.com/app/id6450543782) / [GitHub](https://github.com/mlemgroup/mlem) or [Thunder](https://thunderapp.dev/) / [GitHub](https://github.com/thunder-app/thunder) - Lemmy Clients
|
||||||
* ⭐ **[Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884)**, [Gazzetta](https://apps.apple.com/app/id6738706671) or [Mastodon](https://apps.apple.com/app/id1571998974) - Mastodon Clients
|
* ⭐ **[Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884)**, [Gazzetta](https://apps.apple.com/app/id6738706671) or [Mastodon](https://apps.apple.com/app/id1571998974) - Mastodon Clients
|
||||||
|
@ -1200,7 +1197,7 @@
|
||||||
* [Chan](https://github.com/moffatman/chan) - 4chan App
|
* [Chan](https://github.com/moffatman/chan) - 4chan App
|
||||||
* [SCInsta](https://github.com/SoCuul/SCInsta) or [BHInstagram](https://github.com/BandarHL/BHInstagram) - Instagram Tweaks / [Extension](https://github.com/BillyCurtis/OpenInstagramSafariExtension)
|
* [SCInsta](https://github.com/SoCuul/SCInsta) or [BHInstagram](https://github.com/BandarHL/BHInstagram) - Instagram Tweaks / [Extension](https://github.com/BillyCurtis/OpenInstagramSafariExtension)
|
||||||
* [Swiftgram](https://swiftgram.app/) / [GitHub](https://github.com/Swiftgram/Telegram-iOS) - Telegram Apps
|
* [Swiftgram](https://swiftgram.app/) / [GitHub](https://github.com/Swiftgram/Telegram-iOS) - Telegram Apps
|
||||||
* [Watusi](https://watusi.fouadraheb.com/) / [GitHub](https://github.com/FouadRaheb/Watusi-for-WhatsApp) or [WaEnhancer](https://github.com/Dev4Mod/WaEnhancer) - WhatsApp Patchers
|
* [Watusi](https://watusi.fouadraheb.com/) - WhatsApp Patchers / [GitHub](https://github.com/FouadRaheb/Watusi-for-WhatsApp)
|
||||||
* [Whatsapp Backup Reader](https://whatsappbr.netlify.app/) - Read Exported Whatsapp Chats
|
* [Whatsapp Backup Reader](https://whatsappbr.netlify.app/) - Read Exported Whatsapp Chats
|
||||||
* [FakeWhats](https://www.fakewhats.com/) or [FakeInfo](https://fakeinfo.net/fake-whatsapp-chat-generator) - Fake WhatsApp Messages
|
* [FakeWhats](https://www.fakewhats.com/) or [FakeInfo](https://fakeinfo.net/fake-whatsapp-chat-generator) - Fake WhatsApp Messages
|
||||||
|
|
||||||
|
|
|
@ -14,29 +14,30 @@
|
||||||
* ⭐ **[Custom YouTube Music](https://th-ch.github.io/youtube-music/)** - YouTube Music Client / [Themes](https://github.com/kerichdev/themes-for-ytmdesktop-player/)
|
* ⭐ **[Custom YouTube Music](https://th-ch.github.io/youtube-music/)** - YouTube Music Client / [Themes](https://github.com/kerichdev/themes-for-ytmdesktop-player/)
|
||||||
* ⭐ **[SpoTube](https://spotube.krtirtho.dev/)** - Spotify Client / [GitHub](https://github.com/KRTirtho/spotube)
|
* ⭐ **[SpoTube](https://spotube.krtirtho.dev/)** - Spotify Client / [GitHub](https://github.com/KRTirtho/spotube)
|
||||||
* [Deezer](https://www.deezer.com/) - Streaming / [Extra Features](https://rentry.co/FMHYBase64#dzunlock)
|
* [Deezer](https://www.deezer.com/) - Streaming / [Extra Features](https://rentry.co/FMHYBase64#dzunlock)
|
||||||
|
* [Moosync](https://moosync.app/) - YouTube Music Client / [Discord](https://discord.gg/HsbqbRune3) / [GitHub](https://github.com/Moosync/Moosync)
|
||||||
* [yewtube](https://github.com/mps-youtube/yewtube) - YouTube Music Client
|
* [yewtube](https://github.com/mps-youtube/yewtube) - YouTube Music Client
|
||||||
* [spmp](https://github.com/toasterofbread/spmp) - YouTube Music Client
|
* [spmp](https://github.com/toasterofbread/spmp) - YouTube Music Client
|
||||||
* [BetterSoundcloud](https://alirezakj.com/bsc/) - Soundcloud Client / Ad-Free / [GitHub](https://github.com/AlirezaKJ/BetterSoundCloud)
|
* [BetterSoundcloud](https://alirezakj.com/bsc/) - Soundcloud Client / Ad-Free / [GitHub](https://github.com/AlirezaKJ/BetterSoundCloud)
|
||||||
* [nuclear](https://nuclearplayer.com/) - Streaming / [GitHub](https://github.com/nukeop/nuclear) / [Discord](https://discord.com/invite/JqPjKxE)
|
* [nuclear](https://nuclearplayer.com/) - Streaming / [GitHub](https://github.com/nukeop/nuclear) / [Discord](https://discord.com/invite/JqPjKxE)
|
||||||
* [FunkWhale](https://funkwhale.audio/) - Streaming
|
* [FunkWhale](https://funkwhale.audio/) - Streaming
|
||||||
* [DAB Music Player](https://dabplayer.vercel.app/download) - Streaming
|
* [DAB Music Player](https://dabplayer.vercel.app/download) - Streaming / Uses Qobuz
|
||||||
* [MP3Jam](https://www.mp3jam.org/) - Streaming
|
* [MP3Jam](https://www.mp3jam.org/) - Streaming
|
||||||
* [Muffon](https://muffon.netlify.app/) - Streaming
|
* [Muffon](https://muffon.netlify.app/) - Streaming
|
||||||
* [MusicBucket](https://musicbucket.net/) - Track / Share Music / Telegram
|
* [MusicBucket](https://musicbucket.net/) - Track / Share Music / Telegram
|
||||||
* [Mixtape Garden](https://mixtapegarden.com/) - Create / Share Mixtapes
|
* [Mixtape Garden](https://mixtapegarden.com/) - Create / Share Mixtapes
|
||||||
* [JukeboxStar](https://jukeboxstar.com/) or [JukeboxToday](https://jukebox.today/) - Collaborative Streaming / Listening Parties
|
* [pulse](https://473999.net/pulse), [JukeboxStar](https://jukeboxstar.com/) or [JukeboxToday](https://jukebox.today/) - Listen Together / Listening Parties
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Streaming Sites
|
## ▷ Streaming Sites
|
||||||
|
|
||||||
* ⭐ **[YouTube Music](https://music.youtube.com/)**, [Hyperpipe](https://hyperpipe.surge.sh), [Nonoki](https://nonoki.com/music/), [ytify](https://ytify.netlify.app/) or [Spotify One](https://spotfy.one/) - YouTube Music WebUIs
|
* ⭐ **[YouTube Music](https://music.youtube.com/)**, [Hyperpipe](https://hyperpipe.surge.sh), [Nonoki](https://nonoki.com/music/), [ytify](https://ytify.netlify.app/) or [Spotify One](https://spotfy.one/) - YouTube Music WebUIs
|
||||||
* ⭐ **YouTube Music Tools** - [Enhancements](https://themesong.app/), [2](https://github.com/Sv443/BetterYTM) / [Library Delete](https://github.com/apastel/ytmusic-deleter) / [Upload Delete](https://rentry.co/tv4uo) / [Spotify Playlist Import](https://github.com/sigma67/spotify_to_ytmusic), [2](https://github.com/linsomniac/spotify_to_ytmusic), [3](https://www.tunemymusic.com/) / [Better Lyrics](https://chromewebstore.google.com/detail/better-lyrics-lyrics-for/effdbpeggelllpfkjppbokhmmiinhlmg)
|
* ⭐ **YouTube Music Tools** - [Enhancements](https://themesong.app/), [2](https://github.com/Sv443/BetterYTM) / [Library Delete](https://github.com/apastel/ytmusic-deleter) / [Upload Delete](https://rentry.co/tv4uo) / [Spotify Playlist Import](https://github.com/sigma67/spotify_to_ytmusic), [2](https://github.com/linsomniac/spotify_to_ytmusic), [3](https://www.tunemymusic.com/) / [Better Lyrics](https://better-lyrics.boidu.dev/) / [Discord](https://discord.gg/UsHE3d5fWF) / [GitHub](https://github.com/boidushya/better-lyrics)
|
||||||
* ⭐ **[Reddit Music Player](https://reddit.musicplayer.io/)** - Subreddit Music Player
|
* ⭐ **[Reddit Music Player](https://reddit.musicplayer.io/)** - Subreddit Music Player
|
||||||
* ⭐ **[SoundCloud](https://soundcloud.com/)** - User Made Songs / [Spotify Theme](https://userstyles.world/style/16767/) / [Dark Theme](https://github.com/huds0nx/soundcloud-luna)
|
* ⭐ **[SoundCloud](https://soundcloud.com/)** - User Made Songs
|
||||||
* [Spotify Web Client](https://open.spotify.com/) - Browser Music
|
* [Spotify Web Client](https://open.spotify.com/) - Browser Music
|
||||||
* [ArtistGrid](https://artistgrid.netlify.app/) - Browser Music
|
* [ArtistGrid](https://artistgrid.netlify.app/) - Browser Music
|
||||||
* [DAB Music Player](https://dab-music.vercel.app/) - Browser Music
|
* [DAB Music Player](https://dabplayer.vercel.app/) - Browser Music / Uses Qobuz
|
||||||
* [Groovesharks](https://groovesharks.org/) - Browser Music
|
* [Groovesharks](https://groovesharks.org/) - Browser Music
|
||||||
* [Last.fm](https://www.last.fm/) - Browser Music / [Tools](https://fmhy.net/audiopiracyguide#last-fm-tools)
|
* [Last.fm](https://www.last.fm/) - Browser Music / [Tools](https://fmhy.net/audiopiracyguide#last-fm-tools)
|
||||||
* [FreeListenOnline](https://freelistenonline.com/) - Browser Music
|
* [FreeListenOnline](https://freelistenonline.com/) - Browser Music
|
||||||
|
@ -48,6 +49,7 @@
|
||||||
* [Mixupload](https://mixupload.com/) - Browser Music
|
* [Mixupload](https://mixupload.com/) - Browser Music
|
||||||
* [zvu4no](https://zvu4no.org/) - Browser Music
|
* [zvu4no](https://zvu4no.org/) - Browser Music
|
||||||
* [Tancpol](https://tancpol.net/) - Browser Music
|
* [Tancpol](https://tancpol.net/) - Browser Music
|
||||||
|
* [Saavn Web](https://saavn-web-ui.vercel.app/) - Browser Music / [GitHub](https://github.com/wiz64/saavn-web-ui)
|
||||||
* [musify](https://musify.club/) - Browser Music
|
* [musify](https://musify.club/) - Browser Music
|
||||||
* [DMO](https://dance-music.org/) - Electronic
|
* [DMO](https://dance-music.org/) - Electronic
|
||||||
* [Vapor Archive](https://vaporarchive.neocities.org/) - Vaporwave
|
* [Vapor Archive](https://vaporarchive.neocities.org/) - Vaporwave
|
||||||
|
@ -71,6 +73,7 @@
|
||||||
* [Musicmap](https://musicmap.info/) - Genealogy / History of Music Genres
|
* [Musicmap](https://musicmap.info/) - Genealogy / History of Music Genres
|
||||||
* [Map of Metal](https://mapofmetal.com/) - Interactive Map of Metal History
|
* [Map of Metal](https://mapofmetal.com/) - Interactive Map of Metal History
|
||||||
* [LostMyspace](http://lostmyspace.com/) - Lost Myspace Songs
|
* [LostMyspace](http://lostmyspace.com/) - Lost Myspace Songs
|
||||||
|
* [Y'EDITS](https://yedits.net/) - Ye Remixes / [Discord](https://discord.com/invite/yedits)
|
||||||
* [Mideastunes](https://mideastunes.com/) - Underground Music
|
* [Mideastunes](https://mideastunes.com/) - Underground Music
|
||||||
* [Musico](https://www.musi-co.com/listen/) - AI Generated Songs
|
* [Musico](https://www.musi-co.com/listen/) - AI Generated Songs
|
||||||
* [BitMidi](https://bitmidi.com/) - Stream / Download MIDI Files
|
* [BitMidi](https://bitmidi.com/) - Stream / Download MIDI Files
|
||||||
|
@ -121,7 +124,7 @@
|
||||||
* ⭐ **[Drive n Listen](https://drivenlisten.com/)** - Radio Driving Simulators
|
* ⭐ **[Drive n Listen](https://drivenlisten.com/)** - Radio Driving Simulators
|
||||||
* [iHeartRadio](https://www.iheart.com/), [Mixcloud](https://www.mixcloud.com/), [myTuner](https://mytuner-radio.com/), [TuneIn](https://tunein.com/) or [Zeno](https://zeno.fm/) - Podcasts / Radio
|
* [iHeartRadio](https://www.iheart.com/), [Mixcloud](https://www.mixcloud.com/), [myTuner](https://mytuner-radio.com/), [TuneIn](https://tunein.com/) or [Zeno](https://zeno.fm/) - Podcasts / Radio
|
||||||
* [Archive.org](https://archive.org/details/audio?&sort=-downloads&page=1) - News / Classic Radio / Podcasts
|
* [Archive.org](https://archive.org/details/audio?&sort=-downloads&page=1) - News / Classic Radio / Podcasts
|
||||||
* [Dumb Old Time Radio](https://www.dumb.com/oldtimeradio/), [Relic Radio](https://www.relicradio.com/) or [Old Time Radio](https://oldtime.radio/) - Classic Radio
|
* [Relic Radio](https://www.relicradio.com/) or [Old Time Radio](https://oldtime.radio/) - Classic Radio
|
||||||
* [Old Time Radio Downloads](https://www.oldtimeradiodownloads.com/) - Classic Radio Downloads
|
* [Old Time Radio Downloads](https://www.oldtimeradiodownloads.com/) - Classic Radio Downloads
|
||||||
* [Braggoscope](https://www.braggoscope.com/) - BBC In Our Time Archive
|
* [Braggoscope](https://www.braggoscope.com/) - BBC In Our Time Archive
|
||||||
* [AudioFilesDrive](https://t.me/AudioFilesDrive) - Radio Drama Downloads
|
* [AudioFilesDrive](https://t.me/AudioFilesDrive) - Radio Drama Downloads
|
||||||
|
@ -178,7 +181,7 @@
|
||||||
* [castero](https://github.com/xgi/castero) - TUI Terminal Podcast Client
|
* [castero](https://github.com/xgi/castero) - TUI Terminal Podcast Client
|
||||||
* [Grover](https://www.microsoft.com/store/productId/9NBLGGH6C4BC) or [GPodder](https://gpodder.github.io/) - Podcast Client
|
* [Grover](https://www.microsoft.com/store/productId/9NBLGGH6C4BC) or [GPodder](https://gpodder.github.io/) - Podcast Client
|
||||||
* [EchoWalk](https://www.echowalk.com/) - Turn Articles / Webpages into Podcasts
|
* [EchoWalk](https://www.echowalk.com/) - Turn Articles / Webpages into Podcasts
|
||||||
* [ListenBox](https://listenbox.app/) or [PodSync](https://github.com/mxpv/podsync) - Turn YouTube Video into Podcasts
|
* [PodSync](https://github.com/mxpv/podsync) - Turn YouTube Video into Podcasts
|
||||||
* [JRE Missing](https://www.jremissing.com/) - Tracks Missing JRE Podcasts
|
* [JRE Missing](https://www.jremissing.com/) - Tracks Missing JRE Podcasts
|
||||||
* [Podcatalysts](https://podcatalysts.substack.com/) - Podcast Recommendation Newsletter
|
* [Podcatalysts](https://podcatalysts.substack.com/) - Podcast Recommendation Newsletter
|
||||||
|
|
||||||
|
@ -191,7 +194,6 @@
|
||||||
* ⭐ **[Drone Zone](https://somafm.com/player/#/now-playing/dronezone)** or **[Music For Programming](https://musicforprogramming.net/latest/)** - Ambient Playlists
|
* ⭐ **[Drone Zone](https://somafm.com/player/#/now-playing/dronezone)** or **[Music For Programming](https://musicforprogramming.net/latest/)** - Ambient Playlists
|
||||||
* ⭐ **[CityHop](https://www.cityhop.cafe/)** or [Japan Walkaround](https://thatguyedd.github.io/) - Lofi Radio / City Walks
|
* ⭐ **[CityHop](https://www.cityhop.cafe/)** or [Japan Walkaround](https://thatguyedd.github.io/) - Lofi Radio / City Walks
|
||||||
* ⭐ **[Coding Cat](https://hostrider.com/)** - Lofi Radio / Nyan Cat's Cousin
|
* ⭐ **[Coding Cat](https://hostrider.com/)** - Lofi Radio / Nyan Cat's Cousin
|
||||||
* ⭐ **[HaloMe](https://halome.nu/)** - Halo Menu Screens
|
|
||||||
* ⭐ **[Chillhop](https://chillhop.com/)** - Lofi Radio
|
* ⭐ **[Chillhop](https://chillhop.com/)** - Lofi Radio
|
||||||
* ⭐ **[Rainy Mood](https://www.rainymood.com/)** - Ambient Rain
|
* ⭐ **[Rainy Mood](https://www.rainymood.com/)** - Ambient Rain
|
||||||
* [Lofi and Games](https://lofiandgames.com/) - Lofi Radio + Simple Games
|
* [Lofi and Games](https://lofiandgames.com/) - Lofi Radio + Simple Games
|
||||||
|
@ -220,6 +222,7 @@
|
||||||
* [Ambie](https://ambieapp.com/) - Ambient Sound Desktop App
|
* [Ambie](https://ambieapp.com/) - Ambient Sound Desktop App
|
||||||
* [Generative.fm](https://generative.fm/) or [Lofi Generator](https://lofigenerator.com/) - Generative Ambient Music
|
* [Generative.fm](https://generative.fm/) or [Lofi Generator](https://lofigenerator.com/) - Generative Ambient Music
|
||||||
* [Earth.fm](https://earth.fm/), [tree.fm](https://www.tree.fm/) or [Sounds of Maine](https://soundsofmaine.life/) - Field Recordings
|
* [Earth.fm](https://earth.fm/), [tree.fm](https://www.tree.fm/) or [Sounds of Maine](https://soundsofmaine.life/) - Field Recordings
|
||||||
|
* [HaloMe](https://halome.nu/) - Halo Menu Screens
|
||||||
* [CanvasCycle](http://www.effectgames.com/demos/canvascycle/) - 8-bit Scenes with Ambient Sounds
|
* [CanvasCycle](http://www.effectgames.com/demos/canvascycle/) - 8-bit Scenes with Ambient Sounds
|
||||||
* [Ambient Mixer](https://www.ambient-mixer.com/) - User-Made Soundscapes
|
* [Ambient Mixer](https://www.ambient-mixer.com/) - User-Made Soundscapes
|
||||||
* [ChillOuts](http://www.chillouts.com/) - Meditation Aid
|
* [ChillOuts](http://www.chillouts.com/) - Meditation Aid
|
||||||
|
@ -313,12 +316,11 @@
|
||||||
* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Download App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch DDL](https://github.com/fiso64/slsk-batchdl)
|
* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Download App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch DDL](https://github.com/fiso64/slsk-batchdl)
|
||||||
* ⭐ **[Soggfy](https://github.com/Rafiuth/Soggfy)** - Spotify / 160kb Free / 320kb Premium
|
* ⭐ **[Soggfy](https://github.com/Rafiuth/Soggfy)** - Spotify / 160kb Free / 320kb Premium
|
||||||
* ⭐ **[OnTheSpot](https://github.com/justin025/onthespot)** - Multi-Site / [Discord](https://discord.com/invite/hz4mAwSujH)
|
* ⭐ **[OnTheSpot](https://github.com/justin025/onthespot)** - Multi-Site / [Discord](https://discord.com/invite/hz4mAwSujH)
|
||||||
* [Firehawk52](https://rentry.co/FMHYBase64#firehawk) - Deezer / Qobuz / Tidal / [Discord](https://discord.gg/uqfQbzHj6K) / [Telegram](https://t.me/firehawk52official)
|
* [Firehawk52](https://rentry.co/FMHYBase64#firehawk) - Qobuz / Tidal / [Discord](https://discord.gg/uqfQbzHj6K) / [Telegram](https://t.me/firehawk52official)
|
||||||
* [Votify](https://github.com/glomatico/votify) - Spotify / 160kb Free / 320kb Premium / Requires WVD Keys / [Discord](https://discord.gg/aBjMEZ9tnq)
|
* [Votify](https://github.com/glomatico/votify) - Spotify / 160kb Free / 320kb Premium / Requires WVD Keys / [Discord](https://discord.gg/aBjMEZ9tnq)
|
||||||
* [streamrip](https://github.com/nathom/streamrip) - Deezer / Tidal / Qobuz / SoundCloud / 128kb Free / FLAC / Use Firehawk52 / [Colab](https://github.com/privateersclub/rip)
|
* [streamrip](https://github.com/nathom/streamrip) - Deezer / Tidal / Qobuz / SoundCloud / 128kb Free / FLAC / Use Firehawk52 / [Colab](https://github.com/privateersclub/rip)
|
||||||
* [OrpheusDL](https://github.com/OrfiTeam/OrpheusDL) - Deezer / Qobuz / 128kb Free / FLAC / Use Firehawk52 / [Deezer Module](https://github.com/uhwot/orpheusdl-deezer) / [Qobuz Module](https://github.com/OrfiDev/orpheusdl-qobuz)
|
* [OrpheusDL](https://github.com/OrfiTeam/OrpheusDL) - Deezer / Qobuz / 128kb Free / FLAC / Use Firehawk52 / [Deezer Module](https://github.com/uhwot/orpheusdl-deezer) / [Qobuz Module](https://github.com/OrfiDev/orpheusdl-qobuz)
|
||||||
* [SaturnMusic](https://github.com/SaturnMusic/) - Deezer / FLAC / Use Firehawk52
|
* [DeemixFix](https://gitlab.com/deeplydrumming/DeemixFix), [Deemix Revival](https://github.com/bambanah/deemix) or [SaturnMusic](https://github.com/SaturnMusic/) - Deezer / FLAC
|
||||||
* [DeemixFix](https://gitlab.com/deeplydrumming/DeemixFix) or [Deemix Revival](https://github.com/bambanah/deemix) - Deezer / FLAC / Use Firehawk52
|
|
||||||
* [Murglar](https://murglar.app/) - Deezer / SoundCloud / VK / 320kb MP3
|
* [Murglar](https://murglar.app/) - Deezer / SoundCloud / VK / 320kb MP3
|
||||||
* [Shira](https://github.com/KraXen72/shira) - YouTube / SoundCloud / Bandcamp / 128kb AAC
|
* [Shira](https://github.com/KraXen72/shira) - YouTube / SoundCloud / Bandcamp / 128kb AAC
|
||||||
* [QobuzDownloaderX-MOD](https://github.com/DJDoubleD/QobuzDownloaderX-MOD) - Qobuz / 128kb Free / FLAC / Use Firehawk52
|
* [QobuzDownloaderX-MOD](https://github.com/DJDoubleD/QobuzDownloaderX-MOD) - Qobuz / 128kb Free / FLAC / Use Firehawk52
|
||||||
|
@ -336,8 +338,10 @@
|
||||||
|
|
||||||
* [BeatSpotBot](https://t.me/BeatSpotBot) - Spotify / Deezer / Tidal / Yandex / VK / FLAC / 25 Daily
|
* [BeatSpotBot](https://t.me/BeatSpotBot) - Spotify / Deezer / Tidal / Yandex / VK / FLAC / 25 Daily
|
||||||
* [JioDLBot](https://t.me/JioDLBot) - JioSaavn / Gaana / FLAC
|
* [JioDLBot](https://t.me/JioDLBot) - JioSaavn / Gaana / FLAC
|
||||||
* [Spotify_download_bot](https://t.me/Spotify_downloa_bot) - YouTube / JioSaavn / 320kb MP3
|
* [Spotify_download_bot](https://t.me/Spotify_downloa2_bot) - YouTube / JioSaavn / 320kb MP3 / Get MP3s via Settings
|
||||||
* [Music_Downloader_Bot_Spotify](https://t.me/Music_Downloader_Bot_Spotify) - YouTube / M4A / ACC / 128kb MP3
|
* [Music_Downloader_Bot_Spotify](https://t.me/Music_Downloader_Bot_Spotify) - YouTube / M4A / ACC / 128kb MP3
|
||||||
|
* [GlomaticoBlueMusicBot](https://t.me/GlomaticoBlueMusicBot) - Amazon Music Downloader / [Discord](https://discord.gg/aBjMEZ9tnq) / [Telegram](https://t.me/GlomaticoBotSupport)
|
||||||
|
* [GlomaticoPinkMusicBot](https://t.me/GlomaticoPinkMusicBot) - Apple Music Downloader / [Discord](https://discord.gg/aBjMEZ9tnq) / [Telegram](https://t.me/GlomaticoBotSupport)
|
||||||
* [DeezerMusicBot](https://t.me/DeezerMusicBot) - Deezer / 320kb MP3 / FLAC
|
* [DeezerMusicBot](https://t.me/DeezerMusicBot) - Deezer / 320kb MP3 / FLAC
|
||||||
* [deezload2bot](https://t.me/deezload2bot) - Deezer / 320kb MP3
|
* [deezload2bot](https://t.me/deezload2bot) - Deezer / 320kb MP3
|
||||||
* [Music_Hunters](https://t.me/MusicsHuntersbot) - Deezer / 320kb MP3
|
* [Music_Hunters](https://t.me/MusicsHuntersbot) - Deezer / 320kb MP3
|
||||||
|
@ -362,7 +366,7 @@
|
||||||
* ↪️ **[Royalty Free Music](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_royalty_free_music)**
|
* ↪️ **[Royalty Free Music](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_royalty_free_music)**
|
||||||
* ⭐ **[TrackerHub](https://rentry.co/FMHYBase64#trackerhub)** - Artists Spreadsheet / [Frontend](https://artistgrid.netlify.app/) / [Discord](https://discord.gg/trackerhub)
|
* ⭐ **[TrackerHub](https://rentry.co/FMHYBase64#trackerhub)** - Artists Spreadsheet / [Frontend](https://artistgrid.netlify.app/) / [Discord](https://discord.gg/trackerhub)
|
||||||
* ⭐ **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [CSE 3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Multi-Site Search
|
* ⭐ **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [CSE 3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Multi-Site Search
|
||||||
* ⭐ **[DAB Music Player](https://dab-music.vercel.app/)** - FLAC / [Desktop App](https://dabplayer.vercel.app/download)
|
* ⭐ **[DAB Music Player](https://dab-music.vercel.app/)** - FLAC / Uses Qobuz / [Desktop App](https://dabplayer.vercel.app/download)
|
||||||
* [/r/xTrill](https://reddit.com/r/xTrill) - Download App / [Backup](https://reddit.com/r/xTrillBackup)
|
* [/r/xTrill](https://reddit.com/r/xTrill) - Download App / [Backup](https://reddit.com/r/xTrillBackup)
|
||||||
* [VK::MP3](https://metacpan.org/pod/VK::MP3) - VK MP3 Search Tool
|
* [VK::MP3](https://metacpan.org/pod/VK::MP3) - VK MP3 Search Tool
|
||||||
* [musify](https://musify.club/) - 320kb / MP3
|
* [musify](https://musify.club/) - 320kb / MP3
|
||||||
|
@ -381,6 +385,7 @@
|
||||||
* [New Album Releases](https://newalbumreleases.net/) - MP3
|
* [New Album Releases](https://newalbumreleases.net/) - MP3
|
||||||
* [mp3db](https://mp3db.pro/) - MP3
|
* [mp3db](https://mp3db.pro/) - MP3
|
||||||
* [DeadPulpit](https://www.deadpulpit.com/) - MP3
|
* [DeadPulpit](https://www.deadpulpit.com/) - MP3
|
||||||
|
* [Saavn Web](https://saavn-web-ui.vercel.app/) - MP3 / [GitHub](https://github.com/wiz64/saavn-web-ui)
|
||||||
* [CannaPower](https://canna-power.to) - MP3 / [Telegram](https://t.me/cannapower)
|
* [CannaPower](https://canna-power.to) - MP3 / [Telegram](https://t.me/cannapower)
|
||||||
* [GloryBeats](https://glorybeats.com/) - MP3
|
* [GloryBeats](https://glorybeats.com/) - MP3
|
||||||
* [Cliggo](https://music.cliggo.com/) - MP3
|
* [Cliggo](https://music.cliggo.com/) - MP3
|
||||||
|
@ -446,7 +451,7 @@
|
||||||
* [GlobalDJMix](https://globaldjmix.com/) - DJ Mixes / MP3
|
* [GlobalDJMix](https://globaldjmix.com/) - DJ Mixes / MP3
|
||||||
* [EDMLiveSet](https://www.edmliveset.com/) - DJ Mixes / Livesets
|
* [EDMLiveSet](https://www.edmliveset.com/) - DJ Mixes / Livesets
|
||||||
* [oVPN DJ Mixes](https://rentry.co/FMHYBase64#ovpn-dj-mixes) - DJ Mixes
|
* [oVPN DJ Mixes](https://rentry.co/FMHYBase64#ovpn-dj-mixes) - DJ Mixes
|
||||||
* [loa2k](https://loa2k.neocities.org/), [nu guide](https://nuvaporwave.neocities.org/mirrors.html) or [Vaporware.ivan](https://vaporwave.ivan.moe/list/) - Vaporwave
|
* [loa2k](https://loa2k.neocities.org/) or [nu guide](https://nuvaporwave.neocities.org/mirrors.html) - Vaporwave
|
||||||
* [inconstant sol](https://inconstantsol.blogspot.com/), [David W. Niven Collection](https://archive.org/details/davidwnivenjazz) or [JazznBlues](https://jazznblues.club/) - Jazz / MP3
|
* [inconstant sol](https://inconstantsol.blogspot.com/), [David W. Niven Collection](https://archive.org/details/davidwnivenjazz) or [JazznBlues](https://jazznblues.club/) - Jazz / MP3
|
||||||
* [EssentialHouse](https://essentialhouse.club/) - House / MP3
|
* [EssentialHouse](https://essentialhouse.club/) - House / MP3
|
||||||
* [Bluegrass Archive](https://rentry.co/FMHYBase64#bluegrass-archive) - Bluegrass / FLAC
|
* [Bluegrass Archive](https://rentry.co/FMHYBase64#bluegrass-archive) - Bluegrass / FLAC
|
||||||
|
@ -464,6 +469,7 @@
|
||||||
* [Rap War](https://rap-war-fam.blogspot.com/) - Hip Hop / MP3
|
* [Rap War](https://rap-war-fam.blogspot.com/) - Hip Hop / MP3
|
||||||
* [Dez Flight Underground](https://dezflight-underground.com/) - Underground Hip Hop
|
* [Dez Flight Underground](https://dezflight-underground.com/) - Underground Hip Hop
|
||||||
* [The Noise-Arch Archive](https://archive.org/details/noise-arch) - Underground Cassette Tapes
|
* [The Noise-Arch Archive](https://archive.org/details/noise-arch) - Underground Cassette Tapes
|
||||||
|
* [Y'EDITS](https://yedits.net/) - Ye Remixes / [Discord](https://discord.com/invite/yedits)
|
||||||
* [MusicRepublic](https://music-republic-world-traditional.blogspot.com/) - World / MP3 / FLAC
|
* [MusicRepublic](https://music-republic-world-traditional.blogspot.com/) - World / MP3 / FLAC
|
||||||
* [KPopFLAC](https://www.kpopflac.xyz/) - K-Pop / FLAC
|
* [KPopFLAC](https://www.kpopflac.xyz/) - K-Pop / FLAC
|
||||||
* [KPopMusicDownload](https://kpopdownloadscmm.blogspot.com/) - K-Pop / MP3
|
* [KPopMusicDownload](https://kpopdownloadscmm.blogspot.com/) - K-Pop / MP3
|
||||||
|
@ -494,7 +500,8 @@
|
||||||
* [TorrentTech](https://torrents.torrentech.org/) - Electronic / MP3 320kb / Signup Required / [Zip File](https://rentry.co/FMHYBase64#torrenttech-zip)
|
* [TorrentTech](https://torrents.torrentech.org/) - Electronic / MP3 320kb / Signup Required / [Zip File](https://rentry.co/FMHYBase64#torrenttech-zip)
|
||||||
* [TribalMixes](https://www.tribalmixes.com/) - Forum / DJ Mixes / MP3
|
* [TribalMixes](https://www.tribalmixes.com/) - Forum / DJ Mixes / MP3
|
||||||
* [PandaCD](https://pandacd.io/) - User-Made Music / MP3 / FLAC
|
* [PandaCD](https://pandacd.io/) - User-Made Music / MP3 / FLAC
|
||||||
* [NFO db](https://nfodb.ru/) - MP3 NFO Database
|
* [NFO DB](https://nfodb.net.ru/) - MP3 NFO Database
|
||||||
|
* [PreDB.eu](https://predb.eu) - PreDB for Music
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -539,6 +546,7 @@
|
||||||
|
|
||||||
# ► Tracking / Discovery
|
# ► Tracking / Discovery
|
||||||
|
|
||||||
|
* 🌐 **[/music discovery/](https://rentry.co/musicdiscovery)** - Music Discovery Guide
|
||||||
* ⭐ **[RateYourMusic](https://rateyourmusic.com/)** - Ratings / Reviews / [Add Features](https://rateyourmusic.com/list/CaptainMocha/betterrym-browser-extension/) / [Last.fm Stats](https://github.com/dukhevych/rym-lastfm-stats) / [Forum](https://rym.fm/)
|
* ⭐ **[RateYourMusic](https://rateyourmusic.com/)** - Ratings / Reviews / [Add Features](https://rateyourmusic.com/list/CaptainMocha/betterrym-browser-extension/) / [Last.fm Stats](https://github.com/dukhevych/rym-lastfm-stats) / [Forum](https://rym.fm/)
|
||||||
* ⭐ **[Last.fm](https://www.last.fm/home)** / [Tools](https://fmhy.net/audiopiracyguide#last-fm-tools), [ListenBrainz](https://listenbrainz.org/) or [Music Board](https://musicboard.app/) - Track Listening Habits / Songs
|
* ⭐ **[Last.fm](https://www.last.fm/home)** / [Tools](https://fmhy.net/audiopiracyguide#last-fm-tools), [ListenBrainz](https://listenbrainz.org/) or [Music Board](https://musicboard.app/) - Track Listening Habits / Songs
|
||||||
* ⭐ **[Muspy](https://muspy.com/)**, [Drop Watch](https://drop-watch.ghost.io/), [MusicButler](https://www.musicbutler.io/) or [Brew.fm](https://www.brew.fm/) - Get Album Release Updates
|
* ⭐ **[Muspy](https://muspy.com/)**, [Drop Watch](https://drop-watch.ghost.io/), [MusicButler](https://www.musicbutler.io/) or [Brew.fm](https://www.brew.fm/) - Get Album Release Updates
|
||||||
|
@ -556,15 +564,17 @@
|
||||||
* [AlbumOfTheYear](https://www.albumoftheyear.org/) - Ratings / Reviews
|
* [AlbumOfTheYear](https://www.albumoftheyear.org/) - Ratings / Reviews
|
||||||
* [AllMusic](https://www.allmusic.com/) - Ratings / Reviews
|
* [AllMusic](https://www.allmusic.com/) - Ratings / Reviews
|
||||||
* [MusicBrainz](https://musicbrainz.org/) - Ratings / Reviews
|
* [MusicBrainz](https://musicbrainz.org/) - Ratings / Reviews
|
||||||
|
* [MyPitchFork](https://mypitchfork.fun/) - Individual Song Rating / Tracking
|
||||||
* [Odesli](https://odesli.co/) - Song / Podcast Platform Search / [Telegram Bot](https://t.me/odesli_bot)
|
* [Odesli](https://odesli.co/) - Song / Podcast Platform Search / [Telegram Bot](https://t.me/odesli_bot)
|
||||||
* [Kworb](https://kworb.net/) - Music Top Charts
|
* [Kworb](https://kworb.net/) or [Spotify Charts](https://spotifycharts.com/) - Music Top Charts
|
||||||
* [ClassicRockHistory](https://www.classicrockhistory.com/classic-rock-bands-list-and-directory/) - Classic Rock Band Archive
|
* [ClassicRockHistory](https://www.classicrockhistory.com/classic-rock-bands-list-and-directory/) - Classic Rock Band Archive
|
||||||
* [TheIndieRockPlaylist](https://www.theindierockplaylist.com/) - Indie Rock Archive
|
* [TheIndieRockPlaylist](https://www.theindierockplaylist.com/) - Indie Rock Archive
|
||||||
* [Metal Archives](https://www.metal-archives.com/) - Metal Band Archive
|
* [Metal Archives](https://www.metal-archives.com/) - Metal Band Archive
|
||||||
* [DAHR](https://adp.library.ucsb.edu/index.php) - American Historical Recordings Database
|
* [DAHR](https://adp.library.ucsb.edu/index.php) - American Historical Recordings Database
|
||||||
* [IDM Discovery](https://www.idmdiscovery.com/) - IDM Artist Archive
|
* [IDM Discovery](https://www.idmdiscovery.com/) - IDM Artist Archive
|
||||||
* [TrackID](https://trackid.net/) - Tracklist Database
|
* [TrackID](https://trackid.net/) or [1001Tracklists](https://www.1001tracklists.com/) - Live Set Tracklist Databases
|
||||||
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Music Recommendation Guides
|
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Music Recommendation Guides
|
||||||
|
* [Shfl](https://theshfl.com/) - Album Recommendations
|
||||||
* [45Cat](https://www.45cat.com/) - Vinyl Ratings / Reviews
|
* [45Cat](https://www.45cat.com/) - Vinyl Ratings / Reviews
|
||||||
* [Spoqify](https://spoqify.com/) - Anonymous Playlist Generator
|
* [Spoqify](https://spoqify.com/) - Anonymous Playlist Generator
|
||||||
* [MusicTo](https://www.musicto.com/) - Musician Curated Playlists
|
* [MusicTo](https://www.musicto.com/) - Musician Curated Playlists
|
||||||
|
@ -577,7 +587,7 @@
|
||||||
* [Acclaimed Music](https://www.acclaimedmusic.net/) - Discover Acclaimed Music of the Times
|
* [Acclaimed Music](https://www.acclaimedmusic.net/) - Discover Acclaimed Music of the Times
|
||||||
* [Best Ever Albums](https://www.besteveralbums.com/index.php) - Discover Albums
|
* [Best Ever Albums](https://www.besteveralbums.com/index.php) - Discover Albums
|
||||||
* [MusicGenreTree](https://www.musicgenretree.org/chart.html) - Discover New Music by Genre
|
* [MusicGenreTree](https://www.musicgenretree.org/chart.html) - Discover New Music by Genre
|
||||||
* [SecondHandSongs](https://secondhandsongs.com/) or [WhoSampled](https://www.whosampled.com/) - Cover / Remix Databases
|
* [SecondHandSongs](https://secondhandsongs.com/), [RemixSearch](https://remixsearch.net/) or [WhoSampled](https://www.whosampled.com/) - Cover / Remix Databases
|
||||||
* [SoundtrackTracklist](https://soundtracktracklist.com/) or [FilmMusicSite](https://www.filmmusicsite.com/en/) - Soundtrack Databases
|
* [SoundtrackTracklist](https://soundtracktracklist.com/) or [FilmMusicSite](https://www.filmmusicsite.com/en/) - Soundtrack Databases
|
||||||
* [generasia](https://www.generasia.com/) - Asian Music Wiki
|
* [generasia](https://www.generasia.com/) - Asian Music Wiki
|
||||||
* [dbkpop](https://dbkpop.com/), [KPop Fandom](https://kpop.fandom.com/wiki/) or [KPopping](https://kpopping.com/) - K-Pop Databases
|
* [dbkpop](https://dbkpop.com/), [KPop Fandom](https://kpop.fandom.com/wiki/) or [KPopping](https://kpopping.com/) - K-Pop Databases
|
||||||
|
@ -620,6 +630,7 @@
|
||||||
* ⭐ **[FFmpeg](https://ffmpeg.org/)**, [fre:ac](https://www.freac.org/) / [GitHub](https://github.com/enzo1982/freac), [FlicFlac](https://github.com/DannyBen/FlicFlac), [LameXP](https://sourceforge.net/projects/lamexp/) or [Sox](https://sourceforge.net/projects/sox/) - Audio Converters
|
* ⭐ **[FFmpeg](https://ffmpeg.org/)**, [fre:ac](https://www.freac.org/) / [GitHub](https://github.com/enzo1982/freac), [FlicFlac](https://github.com/DannyBen/FlicFlac), [LameXP](https://sourceforge.net/projects/lamexp/) or [Sox](https://sourceforge.net/projects/sox/) - Audio Converters
|
||||||
* [Hydrogenaudio](https://wiki.hydrogenaud.io/) - Audio Technology Wiki
|
* [Hydrogenaudio](https://wiki.hydrogenaud.io/) - Audio Technology Wiki
|
||||||
* [Phiola](https://github.com/stsaz/phiola), [AudioToolSet](https://audiotoolset.com/) or [Safeaudiokit](https://safeaudiokit.com/) - Audio Multi-Tool Apps / Sites
|
* [Phiola](https://github.com/stsaz/phiola), [AudioToolSet](https://audiotoolset.com/) or [Safeaudiokit](https://safeaudiokit.com/) - Audio Multi-Tool Apps / Sites
|
||||||
|
* [Vocaroo](https://vocaroo.com/) - Online Voice Recorder
|
||||||
* [Tunebat](https://tunebat.com/) - Music Key / BPM Database
|
* [Tunebat](https://tunebat.com/) - Music Key / BPM Database
|
||||||
* [Karaoke Mugen](https://mugen.karaokes.moe/en/) - Karaoke App
|
* [Karaoke Mugen](https://mugen.karaokes.moe/en/) - Karaoke App
|
||||||
* [X-Minus](https://x-minus.pro/) or [LRC Maker](https://lrcmaker.com/) - Create Karaoke Songs
|
* [X-Minus](https://x-minus.pro/) or [LRC Maker](https://lrcmaker.com/) - Create Karaoke Songs
|
||||||
|
@ -719,7 +730,6 @@
|
||||||
* [AZLyrics](https://www.azlyrics.com/), [Lyricsify](https://www.lyricsify.com/), [FindMusicByLyrics](https://findmusicbylyrics.com/) or [Lyrics.com](https://www.lyrics.com/) - Lyric Search
|
* [AZLyrics](https://www.azlyrics.com/), [Lyricsify](https://www.lyricsify.com/), [FindMusicByLyrics](https://findmusicbylyrics.com/) or [Lyrics.com](https://www.lyrics.com/) - Lyric Search
|
||||||
* [Lyricify](https://github.com/WXRIW/Lyricify-App) - Lyrics Desktop App
|
* [Lyricify](https://github.com/WXRIW/Lyricify-App) - Lyrics Desktop App
|
||||||
* [Versefy](https://versefy.app/) or [Lyrics-In-Terminal](https://github.com/Jugran/lyrics-in-terminal) - Lyric Finder for Spotify / Tidal / VLC
|
* [Versefy](https://versefy.app/) or [Lyrics-In-Terminal](https://github.com/Jugran/lyrics-in-terminal) - Lyric Finder for Spotify / Tidal / VLC
|
||||||
* [Lyrist](https://lyrist.app) - Write Lyrics with Beats
|
|
||||||
* [LyricsTranslate](https://lyricstranslate.com/) - Lyric Translator
|
* [LyricsTranslate](https://lyricstranslate.com/) - Lyric Translator
|
||||||
* [LRCGET](https://github.com/tranxuanthang/lrcget) - Download Synced Lyrics
|
* [LRCGET](https://github.com/tranxuanthang/lrcget) - Download Synced Lyrics
|
||||||
* [LRCLIB](https://lrclib.net/) - Synced Lyrics Search
|
* [LRCLIB](https://lrclib.net/) - Synced Lyrics Search
|
||||||
|
@ -763,6 +773,14 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
* [Linux Audio Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_video)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
* [Mac Audio Tools](https://old.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_audio)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# ► Audio Editing
|
# ► Audio Editing
|
||||||
|
|
||||||
* 🌐 **[Awesome Music Production](https://github.com/ad-si/awesome-music-production)** or [AFreeStudio](https://www.afreestudio.com/) - Music Production Indexes
|
* 🌐 **[Awesome Music Production](https://github.com/ad-si/awesome-music-production)** or [AFreeStudio](https://www.afreestudio.com/) - Music Production Indexes
|
||||||
|
@ -787,14 +805,14 @@
|
||||||
## ▷ Audio Editors
|
## ▷ Audio Editors
|
||||||
|
|
||||||
* ⭐ **[G-MEH](https://g-meh.com/)** - Audio Editors / [Discord](https://discord.com/invite/xqPBaXUg7p)
|
* ⭐ **[G-MEH](https://g-meh.com/)** - Audio Editors / [Discord](https://discord.com/invite/xqPBaXUg7p)
|
||||||
* ⭐ **[Tenacity](https://tenacityaudio.org/)**, [Sneedacity](https://github.com/Sneeds-Feed-and-Seed/sneedacity) or [Audacity](https://www.audacityteam.org/) - Audio Editors
|
* ⭐ **[Tenacity](https://tenacityaudio.org/)** or [Audacity](https://www.audacityteam.org/) - Audio Editors
|
||||||
* ⭐ **[FL Studio](https://rentry.co/FMHYBase64#fl-studio)** - Digital Audio Workstation
|
* ⭐ **[FL Studio](https://rentry.co/FMHYBase64#fl-studio)** - Digital Audio Workstation
|
||||||
* ⭐ **[Reaper](https://www.reaper.fm/)** - Digital Audio Workstation / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#reaper-note)
|
* ⭐ **[Reaper](https://www.reaper.fm/)** - Digital Audio Workstation / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#reaper-note)
|
||||||
* ⭐ **[Team V.R releases](https://rentry.co/FMHYBase64#team-vr)** or [AudioZ](https://audioz.download/) / [Forum](https://audiosex.pro/) - Audio Editors, Adobe Software, Plugins, etc.
|
* ⭐ **[Team V.R releases](https://rentry.co/FMHYBase64#team-vr)** or [AudioZ](https://audioz.download/) / [Forum](https://audiosex.pro/) - Audio Editors, Adobe Software, Plugins, etc.
|
||||||
* ⭐ **[Moises](https://moises.ai/)** - Live Music Mixer
|
* ⭐ **[Moises](https://moises.ai/)** - Live Music Mixer
|
||||||
* ⭐ **[OpenMPT](https://openmpt.org/)**, [Schism Tracker](https://schismtracker.org/) or [MilkyTracker](https://milkytracker.org/) - Music Trackers
|
* ⭐ **[OpenMPT](https://openmpt.org/)**, [Schism Tracker](https://schismtracker.org/) or [MilkyTracker](https://milkytracker.org/) - Music Trackers
|
||||||
* [Zrythm](https://www.zrythm.org/en/index.html) - Digital Audio Workstation
|
* [Zrythm](https://www.zrythm.org/en/index.html) - Digital Audio Workstation
|
||||||
* [LMMS](https://lmms.io/) - Digital Audio Workstation
|
* [LMMS](https://lmms.io/) - Digital Audio Workstation / [Discord](https://discord.com/invite/PruNxpG)
|
||||||
* [Ossia](https://ossia.io/) - Intermedia Sequencer
|
* [Ossia](https://ossia.io/) - Intermedia Sequencer
|
||||||
* [Mixxx](https://mixxx.org/) or [Serato](https://serato.com/) - DJ Software
|
* [Mixxx](https://mixxx.org/) or [Serato](https://serato.com/) - DJ Software
|
||||||
* [plugdata](https://plugdata.org/) - Visual Audio Editor / [Discord](https://discord.com/invite/eT2RxdF9Nq)
|
* [plugdata](https://plugdata.org/) - Visual Audio Editor / [Discord](https://discord.com/invite/eT2RxdF9Nq)
|
||||||
|
@ -818,12 +836,12 @@
|
||||||
* ⭐ **[WavaCity](https://wavacity.com/)** - Online Editor
|
* ⭐ **[WavaCity](https://wavacity.com/)** - Online Editor
|
||||||
* ⭐ **[BandLab](https://www.bandlab.com/)** - Digtal Audio Workstation
|
* ⭐ **[BandLab](https://www.bandlab.com/)** - Digtal Audio Workstation
|
||||||
* ⭐ **[Drumha](https://www.drumha.us/)**, [iO-808](https://io808.com/), [Sequencer64](https://www.sequencer64.com/), [Drummy](https://drummy.io/), [Hammmerhead](http://www.threechords.com/hammerhead/), [DrumBit](https://drumbit.app/), [orDrumbox](https://www.ordrumbox.com/), [Peel](https://peel.fm/) or [Hydrogen](http://hydrogen-music.org/) - Virtual Drum Machines
|
* ⭐ **[Drumha](https://www.drumha.us/)**, [iO-808](https://io808.com/), [Sequencer64](https://www.sequencer64.com/), [Drummy](https://drummy.io/), [Hammmerhead](http://www.threechords.com/hammerhead/), [DrumBit](https://drumbit.app/), [orDrumbox](https://www.ordrumbox.com/), [Peel](https://peel.fm/) or [Hydrogen](http://hydrogen-music.org/) - Virtual Drum Machines
|
||||||
* [UltraBox](https://ultraabox.github.io/), [Furnace](https://tildearrow.org/furnace/), [JummBox](https://jummbus.bitbucket.io/) or [BeepBox](https://www.beepbox.co/) - Chiptune Sequencers / Trackers
|
* [UltraBox](https://ultraabox.github.io/), [Furnace](https://tildearrow.org/furnace/), [JummBox](https://jummb.us/) / [GitHub](https://github.com/jummbus/jummbox) or [BeepBox](https://www.beepbox.co/) - Chiptune Sequencers / Trackers
|
||||||
* [Pro-54](https://cmajor.dev/docs/Examples/Pro54/) - Pro-53 Browser Port
|
* [Pro-54](https://cmajor.dev/docs/Examples/Pro54/) - Pro-53 Browser Port
|
||||||
* [Roland50.studio](https://roland50.studio/) or [Acid Machine 2](https://errozero.co.uk/acid-machine/) - Drum Machine / TB-303 Bass Synth
|
* [Roland50.studio](https://roland50.studio/) or [Acid Machine 2](https://errozero.co.uk/acid-machine/) - Drum Machine / TB-303 Bass Synth
|
||||||
* [Efflux](https://www.igorski.nl/application/efflux/), [OnlineSequencer](https://onlinesequencer.net/) or [Chrome Song Maker](https://musiclab.chromeexperiments.com/Song-Maker/) - Online Sequencers
|
* [Efflux](https://www.igorski.nl/application/efflux/), [OnlineSequencer](https://onlinesequencer.net/) or [Chrome Song Maker](https://musiclab.chromeexperiments.com/Song-Maker/) - Online Sequencers
|
||||||
* [Sequencer](https://sequencer.henryfellerhoff.com/), [Draw Audio](https://draw.audio/) or [DrawBeats](https://drawbeats.com/) - Scale Sequencers
|
* [Sequencer](https://sequencer.henryfellerhoff.com/), [Draw Audio](https://draw.audio/) or [DrawBeats](https://drawbeats.com/) - Scale Sequencers
|
||||||
* [Petaporon](https://pixwlk.itch.io/petaporon) - Piano Sequencer / [Instrument Editor](https://pixwlk.itch.io/petaporon-editor)
|
* [Petaporon](https://pixwlk.itch.io/petaporon) or [Pianoboi](https://pianoboi.site/) - Piano Sequencers / [Instrument Editor](https://pixwlk.itch.io/petaporon-editor)
|
||||||
* [AudioMass](https://audiomass.co/) - Online Editor
|
* [AudioMass](https://audiomass.co/) - Online Editor
|
||||||
* [editor.audio](https://editor.audio/) - Online Editor
|
* [editor.audio](https://editor.audio/) - Online Editor
|
||||||
* [TwistedWave](https://twistedwave.com/online) - Online Editor
|
* [TwistedWave](https://twistedwave.com/online) - Online Editor
|
||||||
|
|
|
@ -14,7 +14,7 @@ Piracy sites usually contain ads, some of which can be harmful, often leading to
|
||||||
|
|
||||||
For browsers we recommend **[uBO](https://github.com/gorhill/uBlock)**, and you can also use a **[Redirect Skipper](https://fmhy.net/internet-tools#redirect-bypass)** to skip annoying countdowns.
|
For browsers we recommend **[uBO](https://github.com/gorhill/uBlock)**, and you can also use a **[Redirect Skipper](https://fmhy.net/internet-tools#redirect-bypass)** to skip annoying countdowns.
|
||||||
|
|
||||||
For mobile **[AdGuard Premium](https://fmhy.net/android-iosguide#android-adblocking)** / [iOS](https://adguard.com/en/adguard-ios/overview.html) / [Guide](https://ios.cfw.guide/sideloading-apps/) or **[Rethink DNS](https://rethinkdns.com/app)**, and you can block YouTube, Reddit, and X.com ads with **[ReVanced Manager](https://github.com/revanced/revanced-manager)** / [Easy Setup](https://rentry.co/revanced-auto-update).
|
For mobile **[AdGuard Premium](https://fmhy.net/android-iosguide#android-adblocking)** / [iOS](https://adguard.com/en/adguard-ios/overview.html) / [Guide](https://ios.cfw.guide/sideloading-apps/) or **[Rethink DNS](https://rethinkdns.com/app)**, and you can block YouTube, Reddit, and X.com ads with **[ReVanced Manager](https://github.com/revanced/revanced-manager)** / [Easy Setup](https://gist.github.com/VVispy/50172b4ab77940b2d1ec09d5af70c8a7).
|
||||||
|
|
||||||
!!!note Using several ad blockers, like uBO and Adguard at the same time can [mess things up](https://x.com/gorhill/status/1033706103782170625). This only happens with regular ad blockers, so it's perfectly okay to use uBO alongside something like SponsorBlock.
|
!!!note Using several ad blockers, like uBO and Adguard at the same time can [mess things up](https://x.com/gorhill/status/1033706103782170625). This only happens with regular ad blockers, so it's perfectly okay to use uBO alongside something like SponsorBlock.
|
||||||
|
|
||||||
|
@ -26,7 +26,9 @@ For mobile **[AdGuard Premium](https://fmhy.net/android-iosguide#android-adblock
|
||||||
|
|
||||||
We recommend **[Firefox](https://www.mozilla.org/en-US/firefox/new/)**, but you can also try **[Privacy-Focused Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy)**, or **[Brave](https://brave.com/)** if you prefer Chromium.
|
We recommend **[Firefox](https://www.mozilla.org/en-US/firefox/new/)**, but you can also try **[Privacy-Focused Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy)**, or **[Brave](https://brave.com/)** if you prefer Chromium.
|
||||||
|
|
||||||
For mobile we recommend **[Brave](https://brave.com/)**, **[Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/)**, **[Cromite](https://github.com/uazo/cromite)** or **[Orion](https://kagi.com/orion/)** for iOS.
|
For Android we recommend **[Brave](https://brave.com/)**, **[Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/)** or **[Cromite](https://github.com/uazo/cromite)**.
|
||||||
|
|
||||||
|
For iOS **[Orion](https://kagi.com/orion/)**, [Brave](https://brave.com/) or Safari + [Adguard](https://adguard.com/en/adguard-ios/overview.html).
|
||||||
|
|
||||||
!!!note We recommend looking through our [Extension](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_browser_extensions) / [Userscript](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_userscripts) sections to find ways to enhance your browser.
|
!!!note We recommend looking through our [Extension](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_browser_extensions) / [Userscript](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_userscripts) sections to find ways to enhance your browser.
|
||||||
|
|
||||||
|
@ -34,7 +36,7 @@ For mobile we recommend **[Brave](https://brave.com/)**, **[Firefox](https://www
|
||||||
|
|
||||||
### Movies / Shows
|
### Movies / Shows
|
||||||
|
|
||||||
* **Streaming: [XPrime](https://xprime.tv/) / [Vidbox](https://vidbox.to/) / [Rive](https://rivestream.org/)**
|
* **Streaming: [XPrime](https://xprime.tv/) / [Rive](https://rivestream.org/) / [Hexa](https://hexa.watch/)**
|
||||||
* **Torrenting: [1337x](https://1337x.to/movie-library/1/)**
|
* **Torrenting: [1337x](https://1337x.to/movie-library/1/)**
|
||||||
* **Sports Streaming: [Streamed](https://streamed.su/) / [Sportsurge](https://v2.sportsurge.net/home4/)**
|
* **Sports Streaming: [Streamed](https://streamed.su/) / [Sportsurge](https://v2.sportsurge.net/home4/)**
|
||||||
* **Drama Streaming: [KissAsian](https://kissasian.video/)**
|
* **Drama Streaming: [KissAsian](https://kissasian.video/)**
|
||||||
|
@ -44,7 +46,7 @@ For mobile we recommend **[Brave](https://brave.com/)**, **[Firefox](https://www
|
||||||
|
|
||||||
### Anime
|
### Anime
|
||||||
|
|
||||||
* **Streaming: [HiAnime](https://hianime.to/) / [Miruro](https://www.miruro.com/) / [AnimePahe](https://animepahe.ru/) / [Kuroiru](https://kuroiru.co/)**
|
* **Streaming: [AnimeKai](https://animekai.to/home) / [Miruro](https://www.miruro.com/) / [HiAnime](https://hianime.to/)**
|
||||||
* **Downloading: [Tokyo Insider](https://www.tokyoinsider.com/) / [Hi10Anime](https://hi10anime.com/)**
|
* **Downloading: [Tokyo Insider](https://www.tokyoinsider.com/) / [Hi10Anime](https://hi10anime.com/)**
|
||||||
* **Torrenting: [Nyaa](https://nyaa.si/) / [Miru](https://miru.watch/)**
|
* **Torrenting: [Nyaa](https://nyaa.si/) / [Miru](https://miru.watch/)**
|
||||||
* **Track / Discover: [MyAnimeList](https://myanimelist.net/) / [AniList](https://anilist.co/)**
|
* **Track / Discover: [MyAnimeList](https://myanimelist.net/) / [AniList](https://anilist.co/)**
|
||||||
|
@ -55,7 +57,7 @@ For mobile we recommend **[Brave](https://brave.com/)**, **[Firefox](https://www
|
||||||
|
|
||||||
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [Custom YouTube Music](https://th-ch.github.io/youtube-music/)**
|
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [Custom YouTube Music](https://th-ch.github.io/youtube-music/)**
|
||||||
* **Downloading: [lucida](https://lucida.to/) / [Soulseek](https://slsknet.org/)**
|
* **Downloading: [lucida](https://lucida.to/) / [Soulseek](https://slsknet.org/)**
|
||||||
* **Mobile: [xManager](https://www.xmanagerapp.com/) / [OuterTune](https://github.com/OuterTune/OuterTune) / [EeveeSpotify](https://github.com/whoeevee/EeveeSpotify) (iOS)**
|
* **Mobile: [ReVanced Manager](https://revanced.app/) (Android) / [OuterTune](https://github.com/OuterTune/OuterTune) (Android) / [EeveeSpotify](https://github.com/whoeevee/EeveeSpotify) (iOS)**
|
||||||
* **Track / Discover: [Last.fm](https://www.last.fm/home) / [RateYourMusic](https://rateyourmusic.com/)**
|
* **Track / Discover: [Last.fm](https://www.last.fm/home) / [RateYourMusic](https://rateyourmusic.com/)**
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -71,7 +73,7 @@ For mobile we recommend **[Brave](https://brave.com/)**, **[Firefox](https://www
|
||||||
|
|
||||||
### Reading
|
### Reading
|
||||||
|
|
||||||
* **Downloading: [Anna's Archive](https://annas-archive.org/) / [Bookracy](https://bookracy.ru) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://z-lib.gs/) / [Mobilism](https://forum.mobilism.org)**
|
* **Downloading: [Anna's Archive](https://annas-archive.org/) / [Bookracy](https://bookracy.ru) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://z-lib.gd/) / [Mobilism](https://forum.mobilism.org)**
|
||||||
* **Audiobooks: [AudiobookBay](https://audiobookbay.lu/) / [Mobilism Audiobooks](https://forum.mobilism.org/viewforum.php?f=124) / [Tokybook](https://tokybook.com/)**
|
* **Audiobooks: [AudiobookBay](https://audiobookbay.lu/) / [Mobilism Audiobooks](https://forum.mobilism.org/viewforum.php?f=124) / [Tokybook](https://tokybook.com/)**
|
||||||
* **Manga: [ComicK](https://comick.io/) / [Weeb Central](https://weebcentral.com/) / [MangaDex](https://mangadex.org/)**
|
* **Manga: [ComicK](https://comick.io/) / [Weeb Central](https://weebcentral.com/) / [MangaDex](https://mangadex.org/)**
|
||||||
* **Comics: [ReadComicsOnline](https://readcomiconline.li/) / [GetComics](https://getcomics.org/)**
|
* **Comics: [ReadComicsOnline](https://readcomiconline.li/) / [GetComics](https://getcomics.org/)**
|
||||||
|
@ -99,7 +101,7 @@ Privacy is about controlling your personal information, not just keeping things
|
||||||
|
|
||||||
For email privacy, we recommend **[Proton](https://proton.me/mail)** and for search **[SearX](https://searx.nixnet.services/)**. It's also good to check sites like **[HaveIBeenPwned](https://haveibeenpwned.com/Passwords)** to make sure your info hasn't been part of any recent data breaches.
|
For email privacy, we recommend **[Proton](https://proton.me/mail)** and for search **[SearX](https://searx.nixnet.services/)**. It's also good to check sites like **[HaveIBeenPwned](https://haveibeenpwned.com/Passwords)** to make sure your info hasn't been part of any recent data breaches.
|
||||||
|
|
||||||
!!!note It's best *not* to use your main email or password when you sign up for piracy sites. It's good to use a different password on every site you register for, that way if a breach happens, only the password for that one site is compromised.
|
!!!note It's best *not* to use your main email or password when you sign up for piracy sites. It's good to use a different password on every site you register for, that way if a breach happens, only the password for that one site is compromised. You can also use email [aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing).
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* [IndieHackers](https://www.indiehackers.com/) - Developer Forum
|
* [IndieHackers](https://www.indiehackers.com/) - Developer Forum
|
||||||
* [CyberArsenal](https://cyberarsenal.org/) - Cybersecurity Forums
|
* [CyberArsenal](https://cyberarsenal.org/) - Cybersecurity Forums
|
||||||
* [TheSecMaster](https://x.com/TheSecMaster1) - Cybersecurity Blog
|
* [TheSecMaster](https://x.com/TheSecMaster1) - Cybersecurity Blog
|
||||||
* [Tech-Blogs](https://tech-blogs.dev/) - Blogs for Developers
|
* [Tech-Blogs](https://tech-blogs.dev/) or [HN Popularity](https://refactoringenglish.com/tools/hn-popularity/) - Blogs for Developers
|
||||||
* [The Devs Network](https://thedevs.network/) - Developer Chat
|
* [The Devs Network](https://thedevs.network/) - Developer Chat
|
||||||
* [DevBuddies](https://buddies.dev/) - Search for Programming Partners
|
* [DevBuddies](https://buddies.dev/) - Search for Programming Partners
|
||||||
* [StackShare](https://stackshare.io/) - Tech Stack Collaboration
|
* [StackShare](https://stackshare.io/) - Tech Stack Collaboration
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
* [Dev Emoji List](https://gist.github.com/oliveratgithub/0bf11a9aff0d6da7b46f1490f86a71eb) - Emoji-List with Names, Shortcodes, Unicode & HTML Entities
|
* [Dev Emoji List](https://gist.github.com/oliveratgithub/0bf11a9aff0d6da7b46f1490f86a71eb) - Emoji-List with Names, Shortcodes, Unicode & HTML Entities
|
||||||
* [Student Developer Pack](https://education.github.com/pack) - Free Developer Tools for Students
|
* [Student Developer Pack](https://education.github.com/pack) - Free Developer Tools for Students
|
||||||
* [choose-a-license](https://writefreesoftware.org/learn/participate/choose-a-license/) or [ChooseALicense](https://choosealicense.com/) - How to pick a license
|
* [choose-a-license](https://writefreesoftware.org/learn/participate/choose-a-license/) or [ChooseALicense](https://choosealicense.com/) - How to pick a license
|
||||||
* [PrivacyPolicyTemplate](https://www.privacypolicytemplate.net/), [PrivacyBoard](https://www.privacyboard.co/) - Generate Privacy Policies
|
* [PrivacyPolicyTemplate](https://www.privacypolicytemplate.net/) - Generate Privacy Policies
|
||||||
* [Eternal Terminal](https://eternalterminal.dev/) or [NxShell](https://nxshell.github.io/) - SSH Clients / Servers
|
* [Eternal Terminal](https://eternalterminal.dev/) or [NxShell](https://nxshell.github.io/) - SSH Clients / Servers
|
||||||
* [PuTTY](https://www.chiark.greenend.org.uk/~sgtatham/putty/) - SSH & Telnet Client / [Multi-Tab](https://ttyplus.com/) / [Fork](https://www.9bis.net/kitty/#!index.md) / [GitHub](https://github.com/cyd01/KiTTY/)
|
* [PuTTY](https://www.chiark.greenend.org.uk/~sgtatham/putty/) - SSH & Telnet Client / [Multi-Tab](https://ttyplus.com/) / [Fork](https://www.9bis.net/kitty/#!index.md) / [GitHub](https://github.com/cyd01/KiTTY/)
|
||||||
* [Penpot](https://penpot.app/) - Cross Domain Design & Prototyping Platform
|
* [Penpot](https://penpot.app/) - Cross Domain Design & Prototyping Platform
|
||||||
|
@ -77,19 +77,13 @@
|
||||||
* [Commands.dev](https://www.commands.dev/) - Terminal Commands
|
* [Commands.dev](https://www.commands.dev/) - Terminal Commands
|
||||||
* [Linear](https://linear.app/), [AirBroke](https://airbroke.icorete.ch/) or [Glitchtip](https://glitchtip.com) - Error Tracking Platforms
|
* [Linear](https://linear.app/), [AirBroke](https://airbroke.icorete.ch/) or [Glitchtip](https://glitchtip.com) - Error Tracking Platforms
|
||||||
* [UMLet](https://www.umlet.com/) or [JDL Studio](https://start.jhipster.tech/jdl-studio/) - Create UML Diagrams
|
* [UMLet](https://www.umlet.com/) or [JDL Studio](https://start.jhipster.tech/jdl-studio/) - Create UML Diagrams
|
||||||
* [Wasmer](https://wasmer.io/) - WebAssembly Runtime
|
|
||||||
* [A-Frame](https://aframe.io/) - WebVR Framework / [GitHub](https://github.com/aframevr/aframe/)
|
|
||||||
* [Mockaroo](https://mockaroo.com/) - Generate Mock Data
|
* [Mockaroo](https://mockaroo.com/) - Generate Mock Data
|
||||||
* [Mockium](https://softwium.com/mockium/) - Generate Test Data
|
* [Mockium](https://softwium.com/mockium/) - Generate Test Data
|
||||||
* [Globster](https://globster.xyz/) - Test Glob Patterns
|
* [Globster](https://globster.xyz/) - Test Glob Patterns
|
||||||
* [Big List of Naughty Strings](https://github.com/minimaxir/big-list-of-naughty-strings) - Check for Edge Case Inputs
|
* [Big List of Naughty Strings](https://github.com/minimaxir/big-list-of-naughty-strings) - Check for Edge Case Inputs
|
||||||
* [overmind](https://github.com/DarthSim/overmind) or [foreman](https://github.com/ddollar/foreman) - Process Managers
|
* [overmind](https://github.com/DarthSim/overmind) - Process Managers
|
||||||
* [PKL](https://pkl-lang.org/) - Generate Static Configurations
|
|
||||||
* [sed.js](https://sed.js.org/) - GNU sed Live Editor
|
* [sed.js](https://sed.js.org/) - GNU sed Live Editor
|
||||||
* [asdf](https://asdf-vm.com/) - Multi-Runtime Management CLI
|
|
||||||
* [ASTExplorer](https://astexplorer.net/) - AST Viewer
|
|
||||||
* [PlantText](https://www.planttext.com/) - UML Editor
|
* [PlantText](https://www.planttext.com/) - UML Editor
|
||||||
* [Log Parser Lizard](https://lizard-labs.com/log_parser_lizard.aspx) - Log Analyzation Utilities
|
|
||||||
* [Code::Stats](https://codestats.net/) or [Wakatime](https://wakatime.com/) - Programmer Stat Tracking
|
* [Code::Stats](https://codestats.net/) or [Wakatime](https://wakatime.com/) - Programmer Stat Tracking
|
||||||
* [WiredJS](https://wiredjs.github.io/designer/) - Wireframe Designer
|
* [WiredJS](https://wiredjs.github.io/designer/) - Wireframe Designer
|
||||||
* [KeyCheck](https://keycheck.dev/) - Dev Tool Hotkeys
|
* [KeyCheck](https://keycheck.dev/) - Dev Tool Hotkeys
|
||||||
|
@ -120,6 +114,7 @@
|
||||||
* [tl;drLegal](https://www.tldrlegal.com/) - Software License Summaries
|
* [tl;drLegal](https://www.tldrlegal.com/) - Software License Summaries
|
||||||
* [minisign](https://jedisct1.github.io/minisign/) - Sign Files / Verify Digital Signatures / [GitHub](https://github.com/jedisct1/minisign)
|
* [minisign](https://jedisct1.github.io/minisign/) - Sign Files / Verify Digital Signatures / [GitHub](https://github.com/jedisct1/minisign)
|
||||||
* [VirtualBuddy](https://github.com/insidegui/VirtualBuddy) - Virtualize macOS 12 and later on Apple Silicon
|
* [VirtualBuddy](https://github.com/insidegui/VirtualBuddy) - Virtualize macOS 12 and later on Apple Silicon
|
||||||
|
* [Sentinel](https://github.com/alienator88/Sentinel) - SwiftUI Gatekeeper Config GUI / MacOS Only
|
||||||
* [Pencil](https://pencil.evolus.vn/) - Software Mockup Tool / [GitHub](https://github.com/evolus/pencil)
|
* [Pencil](https://pencil.evolus.vn/) - Software Mockup Tool / [GitHub](https://github.com/evolus/pencil)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -129,7 +124,6 @@
|
||||||
* 🌐 **[AndroidRepo](https://androidrepo.com/)** - Android Development Resources
|
* 🌐 **[AndroidRepo](https://androidrepo.com/)** - Android Development Resources
|
||||||
* 🌐 **[Awesome iOS](https://github.com/vsouza/awesome-ios)** - iOS Development Resources
|
* 🌐 **[Awesome iOS](https://github.com/vsouza/awesome-ios)** - iOS Development Resources
|
||||||
* 🌐 **[UXArchive](https://uxarchive.com/)**, [Mobbin](https://mobbin.com/) or [UISources](https://www.uisources.com/) - Mobile UI Resources
|
* 🌐 **[UXArchive](https://uxarchive.com/)**, [Mobbin](https://mobbin.com/) or [UISources](https://www.uisources.com/) - Mobile UI Resources
|
||||||
* 🌐 **[Heroku-Alt](https://rentry.co/Heroku-Alt)** or [heroku-free-alternatives](https://github.com/meanands/heroku-free-alternatives) - Heroku Alternatives
|
|
||||||
* ↪️ **[App Mockups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_app_.2F_site_mockups)**
|
* ↪️ **[App Mockups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_app_.2F_site_mockups)**
|
||||||
* ⭐ **[Android Developer Roadmap](https://github.com/skydoves/android-developer-roadmap)**
|
* ⭐ **[Android Developer Roadmap](https://github.com/skydoves/android-developer-roadmap)**
|
||||||
* [App ideas](https://github.com/florinpop17/app-ideas) - Collection of App Ideas
|
* [App ideas](https://github.com/florinpop17/app-ideas) - Collection of App Ideas
|
||||||
|
@ -182,7 +176,8 @@
|
||||||
* 🌐 **[Forge Comparison](https://git.sdf.org/humanacollaborator/humanacollabora/src/branch/master/forge_comparison.md)**, [Forgejo](https://forgejo.org/compare/#only-develops-free-software) or [Forgeperf.org](https://forgeperf.org/) - Git Collab Tool Comparison
|
* 🌐 **[Forge Comparison](https://git.sdf.org/humanacollaborator/humanacollabora/src/branch/master/forge_comparison.md)**, [Forgejo](https://forgejo.org/compare/#only-develops-free-software) or [Forgeperf.org](https://forgeperf.org/) - Git Collab Tool Comparison
|
||||||
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
||||||
* ⭐ **[Git-Fork](https://git-fork.com/)**, [GitButler](https://github.com/gitbutlerapp/gitbutler) or [GitQlient](https://github.com/francescmm/GitQlient) - Git Desktop Clients
|
* ⭐ **[Git-Fork](https://git-fork.com/)**, [GitButler](https://github.com/gitbutlerapp/gitbutler) or [GitQlient](https://github.com/francescmm/GitQlient) - Git Desktop Clients
|
||||||
* ⭐ **[Codeberg](https://codeberg.org/)**, [Drift](https://drift.lol/), [Gitea](https://about.gitea.com/), [GitLab.com](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alternatives
|
* ⭐ **[Codeberg](https://codeberg.org/)**, [Drift](https://drift.lol/), [Gitea](https://about.gitea.com/), [GitLab.com](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alts / Version Control Systems
|
||||||
|
* [Git](https://git-scm.com/) - Version Control System
|
||||||
* [searchcode](https://searchcode.com/) or [PublicWWW](https://publicwww.com/) - Source Code Search
|
* [searchcode](https://searchcode.com/) or [PublicWWW](https://publicwww.com/) - Source Code Search
|
||||||
* [git-sim](https://github.com/initialcommit-com/git-sim) - Visually Simulate Git Operations Before Running
|
* [git-sim](https://github.com/initialcommit-com/git-sim) - Visually Simulate Git Operations Before Running
|
||||||
* [Gittea.dev](https://gittea.dev/), [Savannah](https://savannah.gnu.org/), [FSFE](https://git.fsfe.org/), [git.sr.ht](https://git.sr.ht/), [GitGud](https://gitgud.io/) or [Notabug](https://notabug.org/) - Git Hosting / Software Forge
|
* [Gittea.dev](https://gittea.dev/), [Savannah](https://savannah.gnu.org/), [FSFE](https://git.fsfe.org/), [git.sr.ht](https://git.sr.ht/), [GitGud](https://gitgud.io/) or [Notabug](https://notabug.org/) - Git Hosting / Software Forge
|
||||||
|
@ -290,7 +285,6 @@
|
||||||
* [Docker Desktop](https://www.docker.com/products/docker-desktop/) - Docker Desktop App
|
* [Docker Desktop](https://www.docker.com/products/docker-desktop/) - Docker Desktop App
|
||||||
* [LazyDocker](https://github.com/jesseduffield/lazydocker), [oxker](https://github.com/mrjackwills/oxker) or [Isaiah](https://github.com/will-moss/isaiah) - Docker Managers / TUIs
|
* [LazyDocker](https://github.com/jesseduffield/lazydocker), [oxker](https://github.com/mrjackwills/oxker) or [Isaiah](https://github.com/will-moss/isaiah) - Docker Managers / TUIs
|
||||||
* [Dockerized](https://github.com/datastack-net/dockerized) - Docker Command-Line
|
* [Dockerized](https://github.com/datastack-net/dockerized) - Docker Command-Line
|
||||||
* [Docker Disk Space](https://docker-disk.space/) - Disk Usage Manager
|
|
||||||
* [Dockle](https://github.com/goodwithtech/dockle) - Image Linter
|
* [Dockle](https://github.com/goodwithtech/dockle) - Image Linter
|
||||||
* [Dive](https://github.com/wagoodman/dive) - Analyze Images
|
* [Dive](https://github.com/wagoodman/dive) - Analyze Images
|
||||||
* [WatchTower](https://containrrr.dev/watchtower/) - Container Automation
|
* [WatchTower](https://containrrr.dev/watchtower/) - Container Automation
|
||||||
|
@ -340,7 +334,7 @@
|
||||||
* [Beeceptor](https://beeceptor.com/) - Mock REST APIs
|
* [Beeceptor](https://beeceptor.com/) - Mock REST APIs
|
||||||
* [Pipedream](https://pipedream.com/) - Connect APIs / [Tutorial](https://gist.github.com/ItsRauf/48f252c931ac394b1395312b61b8e35b)
|
* [Pipedream](https://pipedream.com/) - Connect APIs / [Tutorial](https://gist.github.com/ItsRauf/48f252c931ac394b1395312b61b8e35b)
|
||||||
* [FastAPI](https://fastapi.tiangolo.com/) - API Framework
|
* [FastAPI](https://fastapi.tiangolo.com/) - API Framework
|
||||||
* [Insomnia](https://insomnia.rest/) or [Yaak](https://yaak.app/) - API Clients
|
* [Posting](https://posting.sh/) / [GitHub](https://github.com/darrenburns/posting), [Insomnia](https://insomnia.rest/) or [Yaak](https://yaak.app/) - API Clients
|
||||||
* [Bruno](https://www.usebruno.com/) - API Testing Client
|
* [Bruno](https://www.usebruno.com/) - API Testing Client
|
||||||
* [ReDoc](https://redocly.github.io/redoc/) - Generate API Documentation
|
* [ReDoc](https://redocly.github.io/redoc/) - Generate API Documentation
|
||||||
* [Mockable](https://www.mockable.io/), [{JSON} Placeholder](https://jsonplaceholder.typicode.com/), [jsoning](https://jsoning.com/api/), [Mocky](https://designer.mocky.io/) or [MockLab](https://www.wiremock.io/) - Mock APIs
|
* [Mockable](https://www.mockable.io/), [{JSON} Placeholder](https://jsonplaceholder.typicode.com/), [jsoning](https://jsoning.com/api/), [Mocky](https://designer.mocky.io/) or [MockLab](https://www.wiremock.io/) - Mock APIs
|
||||||
|
@ -400,6 +394,7 @@
|
||||||
* ↪️ **[3D Models / Modeling Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_3d_models)**
|
* ↪️ **[3D Models / Modeling Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_3d_models)**
|
||||||
* ↪️ **[Design Tools / Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/)**
|
* ↪️ **[Design Tools / Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/)**
|
||||||
* ↪️ **[Art Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_art_.2F_editing)**
|
* ↪️ **[Art Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_art_.2F_editing)**
|
||||||
|
* ↪️ **[Animation Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools/#wiki_.25B7_animation_tools)**
|
||||||
* ↪️ **[Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_writing_tools)**
|
* ↪️ **[Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_writing_tools)**
|
||||||
* [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) - Game GUI Creator
|
* [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) - Game GUI Creator
|
||||||
* [HUDSxGUIS](https://www.hudsandguis.com/) - UI Design Concepts
|
* [HUDSxGUIS](https://www.hudsandguis.com/) - UI Design Concepts
|
||||||
|
@ -457,6 +452,7 @@
|
||||||
* [Lapce](https://lapce.dev/) - Code Editor
|
* [Lapce](https://lapce.dev/) - Code Editor
|
||||||
* [ecode](https://github.com/SpartanJ/ecode) - Code Editor
|
* [ecode](https://github.com/SpartanJ/ecode) - Code Editor
|
||||||
* [Competitive Editor](https://cpeditor.org/) - Competitive Programming Editor
|
* [Competitive Editor](https://cpeditor.org/) - Competitive Programming Editor
|
||||||
|
* [JSON Hero](https://jsonhero.io/) - JSON Viewer / Editor
|
||||||
* [Apache NetBeans](https://netbeans.apache.org/), [KDevelop](https://www.kdevelop.org/), [Mitosis](https://mitosis.builder.io/), [Lazarus](https://www.lazarus-ide.org/) or [OpenShift](https://developers.redhat.com/products/openshift-dev-spaces/overview) - Cross Platform IDEs
|
* [Apache NetBeans](https://netbeans.apache.org/), [KDevelop](https://www.kdevelop.org/), [Mitosis](https://mitosis.builder.io/), [Lazarus](https://www.lazarus-ide.org/) or [OpenShift](https://developers.redhat.com/products/openshift-dev-spaces/overview) - Cross Platform IDEs
|
||||||
* [TidalCycles](https://tidalcycles.org/) - Live Algorithmic Coding Environment / [Discord](https://discord.com/invite/ugFq7KfGnB)
|
* [TidalCycles](https://tidalcycles.org/) - Live Algorithmic Coding Environment / [Discord](https://discord.com/invite/ugFq7KfGnB)
|
||||||
* [SciTE](https://www.scintilla.org/SciTE.html) - Source Code Editor for Win32 and X
|
* [SciTE](https://www.scintilla.org/SciTE.html) - Source Code Editor for Win32 and X
|
||||||
|
@ -466,6 +462,7 @@
|
||||||
## ▷ Cloud IDEs / Collab
|
## ▷ Cloud IDEs / Collab
|
||||||
|
|
||||||
* 🌐 **[cloud](https://gist.github.com/imba-tjd/d73258f0817255dbe77d64d40d985e76#file-cloud-md)** - Cloud Platform Index
|
* 🌐 **[cloud](https://gist.github.com/imba-tjd/d73258f0817255dbe77d64d40d985e76#file-cloud-md)** - Cloud Platform Index
|
||||||
|
* 🌐 **[Heroku-Alt](https://rentry.co/Heroku-Alt)** or [heroku-free-alternatives](https://github.com/meanands/heroku-free-alternatives) - Heroku Alternatives
|
||||||
* ↪️ **[Code Collaboration Platforms](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_.2F_code_collaboration)**
|
* ↪️ **[Code Collaboration Platforms](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_.2F_code_collaboration)**
|
||||||
* ⭐ **[goormIDE](https://ide.goorm.io/)** - Cloud IDE
|
* ⭐ **[goormIDE](https://ide.goorm.io/)** - Cloud IDE
|
||||||
* ⭐ **[Google Colaboratory](https://colab.research.google.com/)** - Cloud IDE
|
* ⭐ **[Google Colaboratory](https://colab.research.google.com/)** - Cloud IDE
|
||||||
|
@ -706,7 +703,7 @@
|
||||||
|
|
||||||
* ⭐ **[React](https://react.dev/)** - JS Library
|
* ⭐ **[React](https://react.dev/)** - JS Library
|
||||||
* [OpenChakra](https://openchakra.app/) or [Plate](https://platejs.org/) - React Code Editors
|
* [OpenChakra](https://openchakra.app/) or [Plate](https://platejs.org/) - React Code Editors
|
||||||
* [React Suite](https://rsuitejs.com/) / [GitHub](https://github.com/rsuite/rsuite), [21st](https://21st.dev/) / [GitHub](https://github.com/serafimcloud/21st) or [Radix UI](https://www.radix-ui.com/) / [GitHub](https://github.com/radix-ui) - React Components
|
* [ReactBits](https://www.reactbits.dev/), React Suite](https://rsuitejs.com/) / [GitHub](https://github.com/rsuite/rsuite), [21st](https://21st.dev/) / [GitHub](https://github.com/serafimcloud/21st) or [Radix UI](https://www.radix-ui.com/) / [GitHub](https://github.com/radix-ui) - React Components
|
||||||
* [Mantine](https://mantine.dev/) - Components and Templates / [GitHub](https://github.com/lucianomlima/react-ui-kits)
|
* [Mantine](https://mantine.dev/) - Components and Templates / [GitHub](https://github.com/lucianomlima/react-ui-kits)
|
||||||
* [Bulletproof React](https://github.com/alan2207/bulletproof-react) - React App Architecture
|
* [Bulletproof React](https://github.com/alan2207/bulletproof-react) - React App Architecture
|
||||||
* [React Native Apps](https://github.com/ReactNativeNews/React-Native-Apps/) - React App Examples
|
* [React Native Apps](https://github.com/ReactNativeNews/React-Native-Apps/) - React App Examples
|
||||||
|
@ -767,7 +764,6 @@
|
||||||
* [http-server](https://github.com/http-party/http-server) - No Config HTTP Server
|
* [http-server](https://github.com/http-party/http-server) - No Config HTTP Server
|
||||||
* [Apache](https://httpd.apache.org/) - HTTP Server
|
* [Apache](https://httpd.apache.org/) - HTTP Server
|
||||||
* [Observatory](https://developer.mozilla.org/en-US/observatory) - HTTP Header Security Test
|
* [Observatory](https://developer.mozilla.org/en-US/observatory) - HTTP Header Security Test
|
||||||
* [HITS](https://hits.seeyoufarm.com/) - Website Traffic Badges
|
|
||||||
* [Transform](https://transform.tools/) - Polyglot Web Converter
|
* [Transform](https://transform.tools/) - Polyglot Web Converter
|
||||||
* [ProjectVisBug](https://visbug.web.app) - Webpage Editor
|
* [ProjectVisBug](https://visbug.web.app) - Webpage Editor
|
||||||
* [BuiltWith](https://builtwith.com/) - Find Out What Sites are Built With
|
* [BuiltWith](https://builtwith.com/) - Find Out What Sites are Built With
|
||||||
|
@ -886,7 +882,7 @@
|
||||||
* 🌐 **[VPS Comparison Chart](https://lowendstock.com/deals/)** or [Bitcoin VPS](https://bitcoin-vps.com/) - VPS Comparisons
|
* 🌐 **[VPS Comparison Chart](https://lowendstock.com/deals/)** or [Bitcoin VPS](https://bitcoin-vps.com/) - VPS Comparisons
|
||||||
* ↪️ **[Free Webhosting Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_webhosting_sites)**
|
* ↪️ **[Free Webhosting Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_webhosting_sites)**
|
||||||
* ↪️ **[Domain Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_domain_.2F_dns)**
|
* ↪️ **[Domain Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_domain_.2F_dns)**
|
||||||
* ⭐ **[Check-Host](https://check-host.net/)**, [StatPing](https://github.com/statping/statping), [Uptime](https://betterstack.com/uptime), [server-uptime](https://server-uptime.pw/), [Uptime Kuma](https://github.com/louislam/uptime-kuma), [Highlight](https://www.highlight.io/), [AreWeDown?](https://github.com/shukriadams/arewedown), [UptimeRobot](https://uptimerobot.com/) or [24x7](https://www.site24x7.com/tools.html) - Site / Server Uptime Monitors
|
* ⭐ **[Check-Host](https://check-host.net/)**, [StatPing](https://github.com/statping/statping), [Uptime](https://betterstack.com/uptime), [Uptime Kuma](https://github.com/louislam/uptime-kuma), [Highlight](https://www.highlight.io/), [AreWeDown?](https://github.com/shukriadams/arewedown), [UptimeRobot](https://uptimerobot.com/) or [24x7](https://www.site24x7.com/tools.html) - Site / Server Uptime Monitors
|
||||||
* ⭐ **[TLD-List](https://tld-list.com/)**, [TLDES](https://tldes.com/) or [SitePriace](https://www.siteprice.org/) - Domain Price Comparisons
|
* ⭐ **[TLD-List](https://tld-list.com/)**, [TLDES](https://tldes.com/) or [SitePriace](https://www.siteprice.org/) - Domain Price Comparisons
|
||||||
* [GoodBadISPs](https://gitlab.torproject.org/legacy/trac/-/wikis/doc/GoodBadISPs) - Best ISPs for Tor Hosting
|
* [GoodBadISPs](https://gitlab.torproject.org/legacy/trac/-/wikis/doc/GoodBadISPs) - Best ISPs for Tor Hosting
|
||||||
* [Server Hunter](https://www.serverhunter.com/) - Search / Compare Servers
|
* [Server Hunter](https://www.serverhunter.com/) - Search / Compare Servers
|
||||||
|
@ -994,7 +990,6 @@
|
||||||
|
|
||||||
* ⭐ **[pyWhat](https://github.com/bee-san/pyWhat)** - File Analyzer
|
* ⭐ **[pyWhat](https://github.com/bee-san/pyWhat)** - File Analyzer
|
||||||
* [Open Source Security Software](https://open-source-security-software.net/) - Cybersecurity Software
|
* [Open Source Security Software](https://open-source-security-software.net/) - Cybersecurity Software
|
||||||
* [Shisho](https://shisho.dev/) - Infrastructure Code Security Patcher
|
|
||||||
* [osquery](https://osquery.io) or [Nmap](https://nmap.org/) / [Results](https://nmap.org/ndiff/) - Security Monitors
|
* [osquery](https://osquery.io) or [Nmap](https://nmap.org/) / [Results](https://nmap.org/ndiff/) - Security Monitors
|
||||||
* [Canarytokens](https://canarytokens.org/generate) - Network Breach Check
|
* [Canarytokens](https://canarytokens.org/generate) - Network Breach Check
|
||||||
* [Nuclei](https://docs.projectdiscovery.io/tools/nuclei) / [GitHub](https://github.com/projectdiscovery/nuclei), [Synk](https://security.snyk.io/) or [NVD](https://nvd.nist.gov/) - Vulnerability Tracking / Scanning
|
* [Nuclei](https://docs.projectdiscovery.io/tools/nuclei) / [GitHub](https://github.com/projectdiscovery/nuclei), [Synk](https://security.snyk.io/) or [NVD](https://nvd.nist.gov/) - Vulnerability Tracking / Scanning
|
||||||
|
@ -1145,15 +1140,3 @@
|
||||||
* [MarkdownLivePreview](https://markdownlivepreview.com/)
|
* [MarkdownLivePreview](https://markdownlivepreview.com/)
|
||||||
* [Vrite](https://editor.vrite.io/)
|
* [Vrite](https://editor.vrite.io/)
|
||||||
* [MindForger](https://www.mindforger.com/)
|
* [MindForger](https://www.mindforger.com/)
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ JSON
|
|
||||||
|
|
||||||
* ⭐ **[JSON Hero](https://jsonhero.io/)**, [Jayson](https://apps.apple.com/app/jayson/id1447750768) (iOS) or [JSONView](https://jsonview.com/) - JSON Viewers / Editors
|
|
||||||
* [jq](https://jqlang.org/) - CLI JSON Processor / [GitHub](https://github.com/jqlang/jq)
|
|
||||||
* [oq](https://blacksmoke16.github.io/oq/) - Portable jq Wrapper / [GitHub](https://github.com/Blacksmoke16/oq)
|
|
||||||
* [JMESPath](https://jmespath.org/) - Query Language for JSON / [Tutorial](https://jmespath.org/tutorial.html)
|
|
||||||
* [zio-json](https://zio.dev/zio-json) - JSON Library
|
|
||||||
* [Mock Turtle](https://mockturtle.net/) - Generate Mock JSON Data
|
|
||||||
* [JSON Bin](https://jsonbin.io/) - JSON Host
|
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
* ⭐ **[/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
|
* ⭐ **[/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)
|
* [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end)
|
||||||
* [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics
|
* [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics
|
||||||
* [rlsbb](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://rlsbb.cc/), [4](http://rlsbb.in/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker)
|
* [rlsbb](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://rlsbb.cc/), [4](http://rlsbb.in/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker) / [PreDB](https://log.rlsbb.ru/)
|
||||||
* [Adit-HD](https://www.adit-hd.com/) - Video / Audio / Books
|
* [Adit-HD](https://www.adit-hd.com/) - Video / Audio / Books
|
||||||
* [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses
|
* [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses
|
||||||
* [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW
|
* [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW
|
||||||
|
@ -196,7 +196,7 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ [Mac Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites2)
|
## ▷ [Mac Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_adblock_.2F_privacy)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -204,8 +204,8 @@
|
||||||
|
|
||||||
* 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources
|
* 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources
|
||||||
* 🌐 **[IRC Client Comparisons](https://en.wikipedia.org/wiki/Comparison_of_IRC_clients)**
|
* 🌐 **[IRC Client Comparisons](https://en.wikipedia.org/wiki/Comparison_of_IRC_clients)**
|
||||||
* [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
|
* [IRC Guide](https://rentry.org/ircfmhyguide), [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/), [KVIrc](https://github.com/kvirc/KVIrc), [Konversation](https://konversation.kde.org/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html), [Halloy](https://github.com/squidowl/halloy) or [Bitchx](https://bitchx.sourceforge.net/) - IRC Clients
|
* [AdiIRC](https://adiirc.com/), [KVIrc](https://github.com/kvirc/KVIrc), [Konversation](https://konversation.kde.org/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html) or [Halloy](https://github.com/squidowl/halloy) - IRC Clients
|
||||||
* [TheLounge](https://thelounge.chat/) - WebIRC Client
|
* [TheLounge](https://thelounge.chat/) - WebIRC Client
|
||||||
* [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks
|
* [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks
|
||||||
* [Mibbit](https://search.mibbit.com/) - IRC Channel Search
|
* [Mibbit](https://search.mibbit.com/) - IRC Channel Search
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
* 🌐 **[Limnology](https://limnology.co/)** - Educational YouTube Channels
|
* 🌐 **[Limnology](https://limnology.co/)** - Educational YouTube Channels
|
||||||
* ↪️ **[Udemy Tools / Coupons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_udemy_coupons)**
|
* ↪️ **[Udemy Tools / Coupons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_udemy_coupons)**
|
||||||
* ↪️ **[Chemistry Lessons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_chemistry_lessons)**
|
* ↪️ **[Chemistry Lessons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_chemistry_lessons)**
|
||||||
* ⭐ **[Coursera](https://www.coursera.org/)** - Courses / [Financial Aid](https://github.com/EminentPhoton/financial-aid-on-coursera) / [Download](https://github.com/raffaem/cs-dlp)
|
* ⭐ **[Coursera](https://www.coursera.org/)** - Courses / [Financial Aid](https://github.com/EminentPhoton/financial-aid-on-coursera) / [Downloader](https://github.com/coursera-dl/coursera-dl)
|
||||||
* ⭐ **[edX](https://www.edx.org/)** - Courses / [Downloader](https://github.com/rehmatworks/edx-downloader)
|
* ⭐ **[edX](https://www.edx.org/)** - Courses / [Downloader](https://github.com/rehmatworks/edx-downloader)
|
||||||
* ⭐ **[MitOpenCourseWare](https://ocw.mit.edu/)** - Courses
|
* ⭐ **[MitOpenCourseWare](https://ocw.mit.edu/)** - Courses
|
||||||
* ⭐ **[Khan Academy](https://www.khanacademy.org/)** - Courses / [Downloader](https://github.com/rand-net/khan-dl) / [Solver](https://greasyfork.org/en/scripts/427964)
|
* ⭐ **[Khan Academy](https://www.khanacademy.org/)** - Courses / [Downloader](https://github.com/rand-net/khan-dl) / [Solver](https://greasyfork.org/en/scripts/427964)
|
||||||
|
@ -82,7 +82,6 @@
|
||||||
* [learningDL](https://learningdl.net/) - Courses / Leech Required
|
* [learningDL](https://learningdl.net/) - Courses / Leech Required
|
||||||
* [LinkedIn_Learning](https://t.me/linkedin_learning) - LinkedIn Courses
|
* [LinkedIn_Learning](https://t.me/linkedin_learning) - LinkedIn Courses
|
||||||
* [CertCommunity](https://www.certcommunity.org/forum/) - IT Cert Courses
|
* [CertCommunity](https://www.certcommunity.org/forum/) - IT Cert Courses
|
||||||
* [Coursera-dl](https://github.com/coursera-dl/coursera-dl) - Download videos from Coursera
|
|
||||||
* [firerip](https://rentry.co/FMHYBase64#firerip) - Fireship.io Course Downloader
|
* [firerip](https://rentry.co/FMHYBase64#firerip) - Fireship.io Course Downloader
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -171,7 +170,7 @@
|
||||||
* [Imperial War Museums](https://www.iwm.org.uk/) - Historic War Footage
|
* [Imperial War Museums](https://www.iwm.org.uk/) - Historic War Footage
|
||||||
* [Museo](https://museo.app/) - Museum Search
|
* [Museo](https://museo.app/) - Museum Search
|
||||||
* [Wonderous](https://play.google.com/store/apps/details?id=com.gskinner.flutter.wonders) - Learn About Ancient Structures
|
* [Wonderous](https://play.google.com/store/apps/details?id=com.gskinner.flutter.wonders) - Learn About Ancient Structures
|
||||||
* [Shorpy](https://shorpy.com/) or [Old World](https://oldworld.cloud/) - Historical Photos
|
* [Shorpy](https://shorpy.com/) - Historical Photos
|
||||||
* [EyewitnesstoHistory](http://www.eyewitnesstohistory.com/index.html) - Historical Eyewitness Testimonies
|
* [EyewitnesstoHistory](http://www.eyewitnesstohistory.com/index.html) - Historical Eyewitness Testimonies
|
||||||
* [ManuscriptMiniatures](https://manuscriptminiatures.com/) - Medieval Manuscript Images
|
* [ManuscriptMiniatures](https://manuscriptminiatures.com/) - Medieval Manuscript Images
|
||||||
* [BlackPast](https://www.blackpast.org/) - African History Encyclopedia
|
* [BlackPast](https://www.blackpast.org/) - African History Encyclopedia
|
||||||
|
@ -317,7 +316,7 @@
|
||||||
* ⭐ **[The Atlas of Economic Complexity](https://atlas.cid.harvard.edu/)** - Global Economic Growth Data
|
* ⭐ **[The Atlas of Economic Complexity](https://atlas.cid.harvard.edu/)** - Global Economic Growth Data
|
||||||
* ⭐ **[Soar](https://soar.earth/)** - Digital Atlas
|
* ⭐ **[Soar](https://soar.earth/)** - Digital Atlas
|
||||||
* [Maps.com](https://www.maps.com/) - Interesting / Educational Maps
|
* [Maps.com](https://www.maps.com/) - Interesting / Educational Maps
|
||||||
* [LizardPoint](https://lizardpoint.com/), [Learn World Map](https://map.koljapluemer.com/), [Seterra](https://www.seterra.com/#quizzes) or [Teuteuf](https://teuteuf.fr/) - Geography Guessing / Quizzes
|
* [LizardPoint](https://lizardpoint.com/), [Worldle](https://worldle.teuteuf.fr/), [Learn World Map](https://map.koljapluemer.com/), [Seterra](https://www.seterra.com/#quizzes) or [Teuteuf](https://teuteuf.fr/) - Geography Guessing / Quizzes
|
||||||
* [AntipodesMap](https://www.antipodesmap.com/) - Find Antipodes
|
* [AntipodesMap](https://www.antipodesmap.com/) - Find Antipodes
|
||||||
* [The True Size](https://thetruesize.com/) or [True Size of Countries](https://truesizeofcountries.com/) - Compare Country Size
|
* [The True Size](https://thetruesize.com/) or [True Size of Countries](https://truesizeofcountries.com/) - Compare Country Size
|
||||||
* [NationsEncyclopedia](https://www.nationsencyclopedia.com/) - Location / Population Data
|
* [NationsEncyclopedia](https://www.nationsencyclopedia.com/) - Location / Population Data
|
||||||
|
@ -410,6 +409,7 @@
|
||||||
* [Virtual Vist Tours](https://www.virtualvisittours.com/) - Ireland Virtual Tours
|
* [Virtual Vist Tours](https://www.virtualvisittours.com/) - Ireland Virtual Tours
|
||||||
* [Matterport](https://matterport.com/discover) - Explore Real Places Digitally
|
* [Matterport](https://matterport.com/discover) - Explore Real Places Digitally
|
||||||
* [Hashima Island](https://www.hashima-island.co.uk/) - Hashima Island Virtual Tour
|
* [Hashima Island](https://www.hashima-island.co.uk/) - Hashima Island Virtual Tour
|
||||||
|
* [Basilica Viewer](https://virtual.basilicasanpietro.va/en/basilica-viewer/) - St. Peter’s Basilica Tour
|
||||||
* [360Cities](https://www.360cities.net/) or [Airpano](https://www.airpano.com/) - 360 Images / Videos
|
* [360Cities](https://www.360cities.net/) or [Airpano](https://www.airpano.com/) - 360 Images / Videos
|
||||||
* [Smithsonian 3D](https://3d.si.edu/) - Smithsonian 3D Digitization Museum
|
* [Smithsonian 3D](https://3d.si.edu/) - Smithsonian 3D Digitization Museum
|
||||||
* [The Bayeux Tapestry](https://www.bayeuxmuseum.com/en/the-bayeux-tapestry/discover-the-bayeux-tapestry/explore-online/) - Bayeux Tapestry 3D Digitization
|
* [The Bayeux Tapestry](https://www.bayeuxmuseum.com/en/the-bayeux-tapestry/discover-the-bayeux-tapestry/explore-online/) - Bayeux Tapestry 3D Digitization
|
||||||
|
@ -571,9 +571,8 @@
|
||||||
* ⭐ **[/r/AskEngineers](https://www.reddit.com/r/AskEngineers/)** / [Wiki](https://www.reddit.com/r/AskEngineers/wiki/), **[/r/engineering](https://www.reddit.com/r/engineering/)** or [/r/AutomotiveEngineering](https://www.reddit.com/r/AutomotiveEngineering/) - Engineering Subreddits
|
* ⭐ **[/r/AskEngineers](https://www.reddit.com/r/AskEngineers/)** / [Wiki](https://www.reddit.com/r/AskEngineers/wiki/), **[/r/engineering](https://www.reddit.com/r/engineering/)** or [/r/AutomotiveEngineering](https://www.reddit.com/r/AutomotiveEngineering/) - Engineering Subreddits
|
||||||
* ⭐ **[NPTEL](https://nptel.ac.in/course.html)** or [Sabin](https://www.youtube.com/@SabinCivil) - Engineering Courses
|
* ⭐ **[NPTEL](https://nptel.ac.in/course.html)** or [Sabin](https://www.youtube.com/@SabinCivil) - Engineering Courses
|
||||||
* [Formulia](https://play.google.com/store/apps/details?id=m4.enginary) - Engineering Formulas / Tools
|
* [Formulia](https://play.google.com/store/apps/details?id=m4.enginary) - Engineering Formulas / Tools
|
||||||
* [MatWeb](https://www.matweb.com/) - Materials Info Databse
|
|
||||||
* [Sanfoundry](https://www.sanfoundry.com/) - Engineering Questions & Answers
|
* [Sanfoundry](https://www.sanfoundry.com/) - Engineering Questions & Answers
|
||||||
* [Lavteam](https://lavteam.org/) or [CESDB](https://www.cesdb.com/) - Engineering Software
|
* [CESDB](https://www.cesdb.com/) - Engineering Software
|
||||||
* [How a Car Works](https://www.howacarworks.com/) - Car Mechanics / Automotive Engineering Guides
|
* [How a Car Works](https://www.howacarworks.com/) - Car Mechanics / Automotive Engineering Guides
|
||||||
* [Robot Shop](https://community.robotshop.com/) - Robotics Forum
|
* [Robot Shop](https://community.robotshop.com/) - Robotics Forum
|
||||||
* [VisRo Robotics](https://vis-ro.web.app) - Robotics Learning / [Discord](https://discord.com/invite/TfwZ3hH2D2)
|
* [VisRo Robotics](https://vis-ro.web.app) - Robotics Learning / [Discord](https://discord.com/invite/TfwZ3hH2D2)
|
||||||
|
@ -654,6 +653,7 @@
|
||||||
* [DinosaurPictures](https://dinosaurpictures.org/) - Dinosaur Info / Images
|
* [DinosaurPictures](https://dinosaurpictures.org/) - Dinosaur Info / Images
|
||||||
* [Pteros](https://www.pteros.com/) - Pterosaur Database
|
* [Pteros](https://www.pteros.com/) - Pterosaur Database
|
||||||
* [WFO](https://www.worldfloraonline.org/) - Plant Database
|
* [WFO](https://www.worldfloraonline.org/) - Plant Database
|
||||||
|
* [The Ferns](https://tropical.theferns.info/) - Tropical Plant Database
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -667,7 +667,7 @@
|
||||||
* [Geeky Medics](https://geekymedics.com/), [UC San Diego CG](https://meded.ucsd.edu/clinicalmed/introduction.html) or [Easy Auscultation](https://www.easyauscultation.com/) - Clinical Guides
|
* [Geeky Medics](https://geekymedics.com/), [UC San Diego CG](https://meded.ucsd.edu/clinicalmed/introduction.html) or [Easy Auscultation](https://www.easyauscultation.com/) - Clinical Guides
|
||||||
* [Glass AI](https://glass.health/ai) - Medical Diagnoses' Training AI
|
* [Glass AI](https://glass.health/ai) - Medical Diagnoses' Training AI
|
||||||
* [Get Body Smart](https://www.getbodysmart.com/) or [University of Michigan Anatomy](https://sites.google.com/a/umich.edu/bluelink/curricula) - Anatomy Guides
|
* [Get Body Smart](https://www.getbodysmart.com/) or [University of Michigan Anatomy](https://sites.google.com/a/umich.edu/bluelink/curricula) - Anatomy Guides
|
||||||
* [Zygote Body](https://www.zygotebody.com/) or [Biodigital](https://human.biodigital.com/index.html) - 3D Human Anatomical Models
|
* [Zygote Body](https://www.zygotebody.com/), [AnatomyLearning](https://anatomylearning.com/) or [Biodigital](https://human.biodigital.com/index.html) - 3D Human Anatomical Models
|
||||||
* [Inner Body](https://www.innerbody.com/htm/body.html) - Anatomy Atlas (2D&3D)
|
* [Inner Body](https://www.innerbody.com/htm/body.html) - Anatomy Atlas (2D&3D)
|
||||||
* [NIH Print](https://3d.nih.gov/) - Biomedical Science 3D Models
|
* [NIH Print](https://3d.nih.gov/) - Biomedical Science 3D Models
|
||||||
* [Sectional Anatomy](https://www.sectional-anatomy.org/) - Cross Sectional Educational MRI / CT Scans
|
* [Sectional Anatomy](https://www.sectional-anatomy.org/) - Cross Sectional Educational MRI / CT Scans
|
||||||
|
@ -741,7 +741,7 @@
|
||||||
* [MORT](https://github.com/killkimno/MORT) or [Textractor](https://github.com/Artikash/Textractor) - Learn Languages via Games
|
* [MORT](https://github.com/killkimno/MORT) or [Textractor](https://github.com/Artikash/Textractor) - Learn Languages via Games
|
||||||
* [Language Roadmap](https://languageroadmap.com/) - Foreign Language Media Difficulty Guide
|
* [Language Roadmap](https://languageroadmap.com/) - Foreign Language Media Difficulty Guide
|
||||||
* [Hey! Lingo](https://www.okydoky.app/) or [LearnWithOliver](https://www.learnwitholiver.com/) - Language Learning Flashcards
|
* [Hey! Lingo](https://www.okydoky.app/) or [LearnWithOliver](https://www.learnwitholiver.com/) - Language Learning Flashcards
|
||||||
* [MyLanguages](https://mylanguages.org/), [My Little Word Land](https://mylittlewordland.com/) or [50Languages](https://www.50languages.com/) - Grammar / Vocabulary Language Learning
|
* [MyLanguages](https://mylanguages.org/), [VocabTest](https://www.vocabtest.com/), [My Little Word Land](https://mylittlewordland.com/) or [50Languages](https://www.50languages.com/) - Grammar / Vocabulary Language Learning
|
||||||
* [Vocatra](https://esite.ch/vocatra/) or [QuizFlow](https://apt.izzysoft.de/fdroid/index/apk/jdm.apps.quizflow/) - Vocabulary Trainers
|
* [Vocatra](https://esite.ch/vocatra/) or [QuizFlow](https://apt.izzysoft.de/fdroid/index/apk/jdm.apps.quizflow/) - Vocabulary Trainers
|
||||||
* [Verbix](https://www.verbix.com/) - Verb Conjugator
|
* [Verbix](https://www.verbix.com/) - Verb Conjugator
|
||||||
* [ListLang](https://www.listlang.com/) - Most Used Words in Any Language
|
* [ListLang](https://www.listlang.com/) - Most Used Words in Any Language
|
||||||
|
@ -881,6 +881,7 @@
|
||||||
* 🌐 **[Learn Sanskrit](https://www.learnsanskrit.org/) or [Sanskrit Studio](https://sanskritstudio.wordpress.com/)** - Sanskrit Lessons and Tools
|
* 🌐 **[Learn Sanskrit](https://www.learnsanskrit.org/) or [Sanskrit Studio](https://sanskritstudio.wordpress.com/)** - Sanskrit Lessons and Tools
|
||||||
* [South Asian Languages](https://discord.gg/TrdqTDdMba) - South Asian Language Learning
|
* [South Asian Languages](https://discord.gg/TrdqTDdMba) - South Asian Language Learning
|
||||||
* [Urdupod101](https://www.urdupod101.com/blog/2021/03/18/urdu-grammar-overview/) - Urdu Grammar Overview / [Video](https://youtu.be/X5J_kXigPWE)
|
* [Urdupod101](https://www.urdupod101.com/blog/2021/03/18/urdu-grammar-overview/) - Urdu Grammar Overview / [Video](https://youtu.be/X5J_kXigPWE)
|
||||||
|
* [Rekhta Dictionary](https://www.rekhtadictionary.com/) - Urdu Dictionary
|
||||||
* [UBC Sanskrit Learning Tools](https://ubcsanskrit.ca/) - UBC Sanskrit Lessons
|
* [UBC Sanskrit Learning Tools](https://ubcsanskrit.ca/) - UBC Sanskrit Lessons
|
||||||
* [Sanskrit Subreddit](https://www.reddit.com/r/sanskrit/) / [Resources](https://www.reddit.com/r/sanskrit/comments/kx3xyu/sanskrit_resources_compilation_post/) - Sanskrit Resources / Discussion
|
* [Sanskrit Subreddit](https://www.reddit.com/r/sanskrit/) / [Resources](https://www.reddit.com/r/sanskrit/comments/kx3xyu/sanskrit_resources_compilation_post/) - Sanskrit Resources / Discussion
|
||||||
* [Ambuda](https://ambuda.org/texts/) - Sanskrit Dictionaries / Texts
|
* [Ambuda](https://ambuda.org/texts/) - Sanskrit Dictionaries / Texts
|
||||||
|
@ -909,7 +910,7 @@
|
||||||
* 🌐 **[Awesome Certificates](https://panx.io/awesome-certificates/)** - Dev Course Indexes
|
* 🌐 **[Awesome Certificates](https://panx.io/awesome-certificates/)** - Dev Course Indexes
|
||||||
* 🌐 **[Awesome Podcasts](https://github.com/rShetty/awesome-podcasts)** - Podcasts for Software Engineers
|
* 🌐 **[Awesome Podcasts](https://github.com/rShetty/awesome-podcasts)** - Podcasts for Software Engineers
|
||||||
* 🌐 **[Awesome YouTubers](https://github.com/JoseDeFreitas/awesome-youtubers)** - YouTube Dev Channels Indexes
|
* 🌐 **[Awesome YouTubers](https://github.com/JoseDeFreitas/awesome-youtubers)** - YouTube Dev Channels Indexes
|
||||||
* 🌐 **[ProgrammingLearningResources](https://rentry.co/ProgrammingLearningResources)**, [/r/LearnProgramming Wiki](https://www.reddit.com/r/learnprogramming/wiki/faq#wiki_getting_started, [Programming Learning Index](https://github.com/bobeff/programming-math-science) or [A-to-Z-Resources-for-Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Programming Learning Resources
|
* 🌐 **[ProgrammingLearningResources](https://rentry.co/ProgrammingLearningResources)**, [/r/LearnProgramming Wiki](https://www.reddit.com/r/learnprogramming/wiki/faq#wiki_getting_started), [Programming Learning Index](https://github.com/bobeff/programming-math-science) or [A-to-Z-Resources-for-Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Programming Learning Resources
|
||||||
* 🌐 **[Python Discord](https://pythondiscord.com/resources/)**, [Python Programming Hub](https://github.com/Tanu-N-Prabhu/Python) or [Python Reference](https://github.com/rasbt/python_reference) - Python Learning Resources
|
* 🌐 **[Python Discord](https://pythondiscord.com/resources/)**, [Python Programming Hub](https://github.com/Tanu-N-Prabhu/Python) or [Python Reference](https://github.com/rasbt/python_reference) - Python Learning Resources
|
||||||
* 🌐 **[Path to Senior Engineer](https://github.com/jordan-cutler/path-to-senior-engineer-handbook)** or [Professional Programming](https://github.com/charlax/professional-programming) - Software Engineer Resources
|
* 🌐 **[Path to Senior Engineer](https://github.com/jordan-cutler/path-to-senior-engineer-handbook)** or [Professional Programming](https://github.com/charlax/professional-programming) - Software Engineer Resources
|
||||||
* ↪️ **[Programming Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_programming_books)** - Read / Download Programming Books
|
* ↪️ **[Programming Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_programming_books)** - Read / Download Programming Books
|
||||||
|
@ -942,7 +943,7 @@
|
||||||
* [CloudSkillsBoost](https://www.cloudskillsboost.google/paths) - Programming Courses
|
* [CloudSkillsBoost](https://www.cloudskillsboost.google/paths) - Programming Courses
|
||||||
* [Hyperskill](https://hyperskill.org/) - Programming Courses
|
* [Hyperskill](https://hyperskill.org/) - Programming Courses
|
||||||
* [EggHead](https://egghead.io/) - Programming Courses
|
* [EggHead](https://egghead.io/) - Programming Courses
|
||||||
* [InfiniteCourses](https://www.infinitecourses.org/) - Programming Courses
|
* [InfiniteCourses](https://www.infinitecourses.org/) - Programming Courses
|
||||||
* [TechSchool](https://techschool.dev/en) - Programming Courses / [Discord](https://discord.com/invite/C4abRX5skH)
|
* [TechSchool](https://techschool.dev/en) - Programming Courses / [Discord](https://discord.com/invite/C4abRX5skH)
|
||||||
* [Refactoring.Guru](https://refactoring.guru/) - Interactive Code Refactoring Guide
|
* [Refactoring.Guru](https://refactoring.guru/) - Interactive Code Refactoring Guide
|
||||||
* [USACO Guide](https://usaco.guide/) - Competitive Programming Lessons
|
* [USACO Guide](https://usaco.guide/) - Competitive Programming Lessons
|
||||||
|
@ -996,7 +997,7 @@
|
||||||
* [Python4Everyone](https://py4e.com/), [A Byte of Python](https://python.swaroopch.com/), [Hypermodern Python](https://cjolowicz.github.io/posts/hypermodern-python-01-setup/), [DataCamp](https://www.datacamp.com/), [Learn Python](https://www.learnpython.org/), [Learn-Python](https://github.com/trekhleb/learn-python) or [Magical Universe](https://github.com/zotroneneis/magical_universe) - Learn Python
|
* [Python4Everyone](https://py4e.com/), [A Byte of Python](https://python.swaroopch.com/), [Hypermodern Python](https://cjolowicz.github.io/posts/hypermodern-python-01-setup/), [DataCamp](https://www.datacamp.com/), [Learn Python](https://www.learnpython.org/), [Learn-Python](https://github.com/trekhleb/learn-python) or [Magical Universe](https://github.com/zotroneneis/magical_universe) - Learn Python
|
||||||
* [AmigosCode](https://www.youtube.com/@amigoscode) - Python Tutorials
|
* [AmigosCode](https://www.youtube.com/@amigoscode) - Python Tutorials
|
||||||
* [High Performance Python: The Code](https://github.com/mynameisfiber/high_performance_python) - Python Lessons
|
* [High Performance Python: The Code](https://github.com/mynameisfiber/high_performance_python) - Python Lessons
|
||||||
* [Real Python](https://realpython.com/), [Reeborg](https://reeborg.ca/docs/en/) or [AskPython](https://www.askpython.com/) - Python Tutorials
|
* [Real Python](https://realpython.com/) or [AskPython](https://www.askpython.com/) - Python Tutorials
|
||||||
* [FutureCoder](https://futurecoder.io/), [CS50](https://cs50.harvard.edu/python/), [python-mastery](https://github.com/dabeaz-course/python-mastery), [Python Full Course](https://youtu.be/XKHEtdqhLK8) or [A Practical Introduction to Python](https://www.brianheinold.net/python/python_book.html) - Python Courses
|
* [FutureCoder](https://futurecoder.io/), [CS50](https://cs50.harvard.edu/python/), [python-mastery](https://github.com/dabeaz-course/python-mastery), [Python Full Course](https://youtu.be/XKHEtdqhLK8) or [A Practical Introduction to Python](https://www.brianheinold.net/python/python_book.html) - Python Courses
|
||||||
* [Modern Python 3 Bootcamp Courses](https://rentry.co/FMHYBase64#modern-python-3-bootcamp-courses)
|
* [Modern Python 3 Bootcamp Courses](https://rentry.co/FMHYBase64#modern-python-3-bootcamp-courses)
|
||||||
* [Tea Press](https://greenteapress.com/wp) - Python Learning Book
|
* [Tea Press](https://greenteapress.com/wp) - Python Learning Book
|
||||||
|
@ -1062,6 +1063,7 @@
|
||||||
* [Untrusted](https://untrustedgame.com/) - JavaScript Learning Game
|
* [Untrusted](https://untrustedgame.com/) - JavaScript Learning Game
|
||||||
* [HTML DOM](https://phuoc.ng/collection/html-dom/) - Learn DOM Manipulation
|
* [HTML DOM](https://phuoc.ng/collection/html-dom/) - Learn DOM Manipulation
|
||||||
* [HTMLDog](https://htmldog.com/) - HTML/CSS and JavaScript Tutorials
|
* [HTMLDog](https://htmldog.com/) - HTML/CSS and JavaScript Tutorials
|
||||||
|
* [Pixactly](https://pixact.ly/) - Test Pixel Dimension Orientation
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -1283,7 +1285,7 @@
|
||||||
* [StudyStream](https://www.studystream.live/) or [StudyTogether](https://www.studytogether.com/) - Online Study Groups
|
* [StudyStream](https://www.studystream.live/) or [StudyTogether](https://www.studytogether.com/) - Online Study Groups
|
||||||
* [Space Finder](https://spacefinder.lib.cam.ac.uk/) - UK Study Space Search
|
* [Space Finder](https://spacefinder.lib.cam.ac.uk/) - UK Study Space Search
|
||||||
* [Papers.Xtreme](https://papers.xtremepape.rs/) - Test Revision Notes & Answers
|
* [Papers.Xtreme](https://papers.xtremepape.rs/) - Test Revision Notes & Answers
|
||||||
* [The SAT: Practice Tests](https://satsuite.collegeboard.org/sat/practice-preparation/practice-tests) - SAT Practice Exams
|
* [OnePrep](https://oneprep.xyz/) or [The SAT: Practice Tests](https://satsuite.collegeboard.org/sat/practice-preparation/practice-tests) - SAT Practice Exams / Questions
|
||||||
* [SATArchive](https://www.satarchive.com/) - Previous SAT Test Archive
|
* [SATArchive](https://www.satarchive.com/) - Previous SAT Test Archive
|
||||||
* [SAT Reading](https://rentry.co/satreading) - Suggested SAT Reading
|
* [SAT Reading](https://rentry.co/satreading) - Suggested SAT Reading
|
||||||
* [SAT_Files_discussion](https://t.me/SAT_Files_discussion) - SAT Exam Discussion
|
* [SAT_Files_discussion](https://t.me/SAT_Files_discussion) - SAT Exam Discussion
|
||||||
|
@ -1292,6 +1294,7 @@
|
||||||
* [CrackAP](https://www.crackap.com/) - Practice AP Exams
|
* [CrackAP](https://www.crackap.com/) - Practice AP Exams
|
||||||
* [AllFreeDumps](https://www.allfreedumps.com/) - Exam Dumps
|
* [AllFreeDumps](https://www.allfreedumps.com/) - Exam Dumps
|
||||||
* [IndiaBIX](https://www.indiabix.com/) - Aptitude Tests
|
* [IndiaBIX](https://www.indiabix.com/) - Aptitude Tests
|
||||||
|
* [IBResources](https://ibresources.in/) - International Baccalaureate Resources
|
||||||
* [/r/ApStudents Resources](https://rentry.co/FMHYBase64#rapstudents-resources) - Former AP Exams
|
* [/r/ApStudents Resources](https://rentry.co/FMHYBase64#rapstudents-resources) - Former AP Exams
|
||||||
* [/r/APStudents Course Survey](https://docs.google.com/spreadsheets/u/6/d/1s-YM81RvD11h9UOTba_XsBKEy-NW8PEXim2UxSLwdRE/edit#gid=1924688511) - AP Exam Comparison Spreadsheet
|
* [/r/APStudents Course Survey](https://docs.google.com/spreadsheets/u/6/d/1s-YM81RvD11h9UOTba_XsBKEy-NW8PEXim2UxSLwdRE/edit#gid=1924688511) - AP Exam Comparison Spreadsheet
|
||||||
* [/r/CATpreparation](https://www.reddit.com/r/CATpreparation/) - CAT Test Prep / [Discord](https://discord.gg/CAvHUZY6rH)
|
* [/r/CATpreparation](https://www.reddit.com/r/CATpreparation/) - CAT Test Prep / [Discord](https://discord.gg/CAvHUZY6rH)
|
||||||
|
@ -1313,7 +1316,8 @@
|
||||||
|
|
||||||
* 🌐 **[/r/JEENEETards Index](https://www.reddit.com/r/JEENEETards/wiki/index)** - Guides / Study Material
|
* 🌐 **[/r/JEENEETards Index](https://www.reddit.com/r/JEENEETards/wiki/index)** - Guides / Study Material
|
||||||
* ⭐ **[PirateHive](https://phantomcodex9.github.io/piratehive/)** - Guides / Study Material
|
* ⭐ **[PirateHive](https://phantomcodex9.github.io/piratehive/)** - Guides / Study Material
|
||||||
* ⭐ **[JEE Hub](https://jeehub.vercel.app/)** or [NovaTrain](https://novatra.in/) - JEE / NEET PYQs
|
* ⭐ **[ExamSide](https://questions.examside.com/)** - Practice / Study Material
|
||||||
|
* ⭐ **[JEE Hub](https://jeehub.vercel.app/)** - JEE / NEET PYQs
|
||||||
* [JEE Books](https://t.me/+iHmGydsEO343ODk1) - JEE Books Archive
|
* [JEE Books](https://t.me/+iHmGydsEO343ODk1) - JEE Books Archive
|
||||||
* [Genetry](https://genetry.carrd.co/) or [Lec.Branch](https://t.me/addlist/pgaJblpaVWIwYjFl) - JEE Lectures
|
* [Genetry](https://genetry.carrd.co/) or [Lec.Branch](https://t.me/addlist/pgaJblpaVWIwYjFl) - JEE Lectures
|
||||||
* [YouTube Lengths](https://redd.it/1614jn5), [Fastlane Lengths](https://redd.it/17d1qt3) or [Normal Lane Lengths](https://redd.it/183er1y) - Lecture Lengths / Data
|
* [YouTube Lengths](https://redd.it/1614jn5), [Fastlane Lengths](https://redd.it/17d1qt3) or [Normal Lane Lengths](https://redd.it/183er1y) - Lecture Lengths / Data
|
||||||
|
@ -1327,9 +1331,9 @@
|
||||||
|
|
||||||
* ⭐ **[Wolfram|Alpha](https://www.wolframalpha.com/examples/mathematics)** - Calculators
|
* ⭐ **[Wolfram|Alpha](https://www.wolframalpha.com/examples/mathematics)** - Calculators
|
||||||
* ⭐ **[Omni Calculator](https://www.omnicalculator.com/)** - Calculators
|
* ⭐ **[Omni Calculator](https://www.omnicalculator.com/)** - Calculators
|
||||||
* ⭐ **[OpenCalc](https://github.com/Darkempire78/OpenCalc)**, [yetCalc](https://github.com/Yet-Zio/yetCalc), [microMathematics](https://github.com/mkulesh/microMathematics), [Unitto](https://github.com/sadellie/unitto), [Calculator++](https://play.google.com/store/apps/details?id=org.solovyev.android.calculator), [Calc 991](https://play.google.com/store/apps/details?id=advanced.scientific.calculator.calc991.plus) or [Graph89](https://github.com/eanema/graph89) - Android Calculators
|
* ⭐ **[OpenCalc](https://github.com/Darkempire78/OpenCalc)**, [yetCalc](https://github.com/Yet-Zio/yetCalc), [microMathematics](https://github.com/mkulesh/microMathematics), [Calculator++](https://play.google.com/store/apps/details?id=org.solovyev.android.calculator), [Calc 991](https://play.google.com/store/apps/details?id=advanced.scientific.calculator.calc991.plus) or [Graph89](https://github.com/eanema/graph89) - Android Calculators
|
||||||
* ⭐ **[Microsoft Math Solver](https://math.microsoft.com/)**, [SpeedCrunch](https://speedcrunch.org/) or [MathPapa](https://www.mathpapa.com/algebra-calculator.html) - Advanced Calculator
|
* ⭐ **[Microsoft Math Solver](https://math.microsoft.com/)**, [SpeedCrunch](https://speedcrunch.org/) or [MathPapa](https://www.mathpapa.com/algebra-calculator.html) - Advanced Calculator
|
||||||
* ⭐ **[SageCalc](https://sagecalc.com/)**, **[ti84calc.online](https://ti84calc.online/)**, [CEmu](https://github.com/CE-Programming/CEmu), [ti-84calculatoronline](https://ti-84calculatoronline.com), [TI 84 Calculator](https://ti84calculator.co/en-US), [TI-84 Plus](https://ti84.pages.dev/) or [ti84calc](https://ti84calc.com/) - TI-84 Calculators
|
* ⭐ **[SageCalc](https://sagecalc.com/)**, **[ti84calc.online](https://ti84calc.online/)**, [CEmu](https://github.com/CE-Programming/CEmu), [ti-84calculatoronline](https://ti-84calculatoronline.com), [TI 84 Calculator](https://ti84calculator.co/en-US), [TI-84 Plus](https://ti84.pages.dev/) / [Shell](https://github.com/RoccoLoxPrograms/CEaShell) or [ti84calc](https://ti84calc.com/) - TI-84 Calculators
|
||||||
* ⭐ **[GeoGebra](https://www.geogebra.org/)**, [Grapes](https://www.criced.tsukuba.ac.jp/grapes/) or [Desmos](https://www.desmos.com/) - Graphing Calculators
|
* ⭐ **[GeoGebra](https://www.geogebra.org/)**, [Grapes](https://www.criced.tsukuba.ac.jp/grapes/) or [Desmos](https://www.desmos.com/) - Graphing Calculators
|
||||||
* ⭐ **[Cymath](https://www.cymath.com/)**, [PhotoMath](https://rentry.co/FMHYBase64#photomath), [Mathway](https://www.mathway.com/), [MathDF](https://mathdf.com/), [Math Solver](https://mathsolver.microsoft.com/en), [Tiger Algebra](https://www.tiger-algebra.com/) or [Symbolab](https://www.symbolab.com/) - Math Problem Solvers
|
* ⭐ **[Cymath](https://www.cymath.com/)**, [PhotoMath](https://rentry.co/FMHYBase64#photomath), [Mathway](https://www.mathway.com/), [MathDF](https://mathdf.com/), [Math Solver](https://mathsolver.microsoft.com/en), [Tiger Algebra](https://www.tiger-algebra.com/) or [Symbolab](https://www.symbolab.com/) - Math Problem Solvers
|
||||||
* [Omnimaga](https://www.omnimaga.org/index.php) - Calculator Community / Forums
|
* [Omnimaga](https://www.omnimaga.org/index.php) - Calculator Community / Forums
|
||||||
|
@ -1423,8 +1427,8 @@
|
||||||
* 🌐 **[List of Encyclopedias](https://en.wikipedia.org/wiki/List_of_online_encyclopedias)** - Online Encyclopedia Index
|
* 🌐 **[List of Encyclopedias](https://en.wikipedia.org/wiki/List_of_online_encyclopedias)** - Online Encyclopedia Index
|
||||||
* ⭐ **[Wikipedia](https://www.wikipedia.org/)** - Encyclopedia / [Content List](https://en.wikipedia.org/wiki/Wikipedia:Contents/Lists)
|
* ⭐ **[Wikipedia](https://www.wikipedia.org/)** - Encyclopedia / [Content List](https://en.wikipedia.org/wiki/Wikipedia:Contents/Lists)
|
||||||
* ⭐ **Wikipedia Frontends** - [WikiWand](https://www.wikiwand.com/) or [ModernWiki](https://www.modernwiki.app/)
|
* ⭐ **Wikipedia Frontends** - [WikiWand](https://www.wikiwand.com/) or [ModernWiki](https://www.modernwiki.app/)
|
||||||
|
* ⭐ **[EncycloSearch](https://encyclosearch.org/)** or [EncycloReader](https://encycloreader.org/) - Encyclopedia Search Engines
|
||||||
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledgebase
|
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledgebase
|
||||||
* [EncycloReader](https://encycloreader.org/) - Encyclopedia Search
|
|
||||||
* [Omniglot](https://www.omniglot.com/index.htm) - Writing Systems & Languages Encyclopedia
|
* [Omniglot](https://www.omniglot.com/index.htm) - Writing Systems & Languages Encyclopedia
|
||||||
* [Archivy](https://github.com/archivy/archivy/) - Self-Hosted Wiki
|
* [Archivy](https://github.com/archivy/archivy/) - Self-Hosted Wiki
|
||||||
* [Simple Wiki](https://simple.wikipedia.org/wiki/Main_Page) - Simplified Wikipedia / [Auto-Redirect](https://rentry.co/simplewikifirefox)
|
* [Simple Wiki](https://simple.wikipedia.org/wiki/Main_Page) - Simplified Wikipedia / [Auto-Redirect](https://rentry.co/simplewikifirefox)
|
||||||
|
|
|
@ -25,6 +25,8 @@ These are all anonymous comments taken from Reddit, Discord, X.com and our feedb
|
||||||
|
|
||||||
* *"You have saved me in so many ways that it could not fit here in terms of the amount of text. I'm from a poor "third world" country and a portal like this allows me endless things that I simply can't afford! Keep up the good spirit and I wish you all the best from the bottom of my heart!"*
|
* *"You have saved me in so many ways that it could not fit here in terms of the amount of text. I'm from a poor "third world" country and a portal like this allows me endless things that I simply can't afford! Keep up the good spirit and I wish you all the best from the bottom of my heart!"*
|
||||||
|
|
||||||
|
* *"I love this website so much. I'm a current college student and the resources offered on this page have eased my stress in terms of finding textbooks and readings - thank you!"*
|
||||||
|
|
||||||
* *"Y'all have helped not only me but my friends through college and the pandemic in ways you all probably don't even realize."*
|
* *"Y'all have helped not only me but my friends through college and the pandemic in ways you all probably don't even realize."*
|
||||||
|
|
||||||
* *"Thank you so much for this effort, guys, you are amazing, I stopped searching on google for stuff and got addicted to your website, keep going :)"*
|
* *"Thank you so much for this effort, guys, you are amazing, I stopped searching on google for stuff and got addicted to your website, keep going :)"*
|
||||||
|
@ -35,6 +37,8 @@ These are all anonymous comments taken from Reddit, Discord, X.com and our feedb
|
||||||
|
|
||||||
* *"Me and my friends call your site the keys to the internet, its kinda amazing."*
|
* *"Me and my friends call your site the keys to the internet, its kinda amazing."*
|
||||||
|
|
||||||
|
* *"A really great and detailed job of putting everything together. I hope you hear this a lot, but thanks for all the work you put in this, people appreciate it more than you think <3."*
|
||||||
|
|
||||||
* *"Thanks to FMHY, I was able to find a piece of software that upped my efficiency at work three-fold. Literal life-saver. Thank you!"*
|
* *"Thanks to FMHY, I was able to find a piece of software that upped my efficiency at work three-fold. Literal life-saver. Thank you!"*
|
||||||
|
|
||||||
* *"Great site! It's so useful, I now know about a lot more apps and such. Definitely made my life easier!"*
|
* *"Great site! It's so useful, I now know about a lot more apps and such. Definitely made my life easier!"*
|
||||||
|
@ -49,6 +53,8 @@ These are all anonymous comments taken from Reddit, Discord, X.com and our feedb
|
||||||
|
|
||||||
* *"I love FMHY's wiki, to the point I can't use the internet without it."*
|
* *"I love FMHY's wiki, to the point I can't use the internet without it."*
|
||||||
|
|
||||||
|
* *"In this age of the internet, search engines are getting worse to find stuff we searching for. This site has helped me not only the when I can't find something on search engines, but also to find new stuff I didn't know existed. I go here first before I consult google. Thank you and everyone for your hard work. Don't loose this site, no matter the cost."*
|
||||||
|
|
||||||
* *"Before finding this, I've been searching google myself and have experienced viruses, fake info, and just bad advice. But the amazing guides and links on FMHY really make it so much safer and simpler to find the things I need. I'm sort of the tech person in my family, so it saves me from so much testing and work."*
|
* *"Before finding this, I've been searching google myself and have experienced viruses, fake info, and just bad advice. But the amazing guides and links on FMHY really make it so much safer and simpler to find the things I need. I'm sort of the tech person in my family, so it saves me from so much testing and work."*
|
||||||
|
|
||||||
* *"This wiki is one of the best out there, seriously. Keep up the great work!"*
|
* *"This wiki is one of the best out there, seriously. Keep up the great work!"*
|
||||||
|
|
|
@ -36,7 +36,6 @@
|
||||||
* ⭐ **[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager
|
* ⭐ **[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager
|
||||||
* [AB Download Manager](https://abdownloadmanager.com/) - Download Manager / [GitHub](https://github.com/amir1376/ab-download-manager) / [Telegram](https://t.me/abdownloadmanager_discussion)
|
* [AB Download Manager](https://abdownloadmanager.com/) - Download Manager / [GitHub](https://github.com/amir1376/ab-download-manager) / [Telegram](https://t.me/abdownloadmanager_discussion)
|
||||||
* [Go Speed](https://gopeed.com/) - Download Manager / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories) / [GitHub](https://github.com/GopeedLab/gopeed)
|
* [Go Speed](https://gopeed.com/) - Download Manager / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories) / [GitHub](https://github.com/GopeedLab/gopeed)
|
||||||
* [imFile](https://imfile.io/) - Download Manager / Updated Motrix Fork / [GitHub](https://github.com/imfile-io/imfile-desktop)
|
|
||||||
* [aria2](https://aria2.github.io/) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager / [GitHub](https://github.com/aria2/aria2) / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/)
|
* [aria2](https://aria2.github.io/) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager / [GitHub](https://github.com/aria2/aria2) / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/)
|
||||||
* [pyLoad](https://pyload.net/) - Lightweight Download Manager
|
* [pyLoad](https://pyload.net/) - Lightweight Download Manager
|
||||||
* [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site Media Download Tool
|
* [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site Media Download Tool
|
||||||
|
@ -137,6 +136,7 @@
|
||||||
|
|
||||||
## ▷ File Encryption
|
## ▷ File Encryption
|
||||||
|
|
||||||
|
* ⭐ **[Cryptomator](https://cryptomator.org/)** / [GitHub](https://github.com/cryptomator/cryptomator) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) / [GitHub](https://github.com/tahoe-lafs/tahoe-lafs) - Cloud File Encryption
|
||||||
* ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)** - Disk Encrypter
|
* ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)** - Disk Encrypter
|
||||||
* ⭐ **[age](https://github.com/FiloSottile/age)** - File Encrypter
|
* ⭐ **[age](https://github.com/FiloSottile/age)** - File Encrypter
|
||||||
* [Picocrypt](https://github.com/Picocrypt/Picocrypt) - Lightweight File Encrypter
|
* [Picocrypt](https://github.com/Picocrypt/Picocrypt) - Lightweight File Encrypter
|
||||||
|
@ -164,8 +164,8 @@
|
||||||
* ⭐ **[Kopia](https://kopia.io/)** - Encrypted File Backup / [GitHub](https://github.com/kopia/kopia/)
|
* ⭐ **[Kopia](https://kopia.io/)** - Encrypted File Backup / [GitHub](https://github.com/kopia/kopia/)
|
||||||
* ⭐ **[Rescuezilla](https://rescuezilla.com/)** or [CloneZilla](https://clonezilla.org/) - Disk Image Backup
|
* ⭐ **[Rescuezilla](https://rescuezilla.com/)** or [CloneZilla](https://clonezilla.org/) - Disk Image Backup
|
||||||
* [FolderClone](https://www.folderclone.com/) or [Echosync](https://www.luminescence-software.org/en/echosync/about/) - Folder Clone / Backup
|
* [FolderClone](https://www.folderclone.com/) or [Echosync](https://www.luminescence-software.org/en/echosync/about/) - Folder Clone / Backup
|
||||||
* [BackupPC](https://backuppc.github.io/backuppc/) - Networked File backup
|
* [BackupPC](https://backuppc.github.io/backuppc/) - Networked File Backup
|
||||||
* [TeraCopy](https://www.codesector.com/teracopy) - File Transfer / Backup
|
* [TeraCopy](https://www.codesector.com/teracopy) - File Backup
|
||||||
* [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic), [duplicity](https://duplicity.gitlab.io/) or [Duplicati](https://www.duplicati.com/) - Secure File Backup
|
* [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic), [duplicity](https://duplicity.gitlab.io/) or [Duplicati](https://www.duplicati.com/) - Secure File Backup
|
||||||
* [UrBackup](https://www.urbackup.org/) - Client / Server File Backup
|
* [UrBackup](https://www.urbackup.org/) - Client / Server File Backup
|
||||||
* [AOMEI Backupper](https://www.ubackup.com/) - Windows File Backup
|
* [AOMEI Backupper](https://www.ubackup.com/) - Windows File Backup
|
||||||
|
@ -290,7 +290,7 @@
|
||||||
***
|
***
|
||||||
|
|
||||||
* ↪️ **[Video File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_video_file_hosts)**
|
* ↪️ **[Video File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_video_file_hosts)**
|
||||||
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / Unlimited / 10 Days after last download
|
* ⭐ **[Gofile](https://gofile.io/)** - 100GB Monthly / Unlimited / 10 Days after last download
|
||||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - Unlimited / 20GB per file / 120 Days after last pageview / [Discord](https://discord.gg/TWKGvYAFvX) / [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz/) / [Bypass Script](https://greasyfork.org/en/scripts/491326)
|
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - Unlimited / 20GB per file / 120 Days after last pageview / [Discord](https://discord.gg/TWKGvYAFvX) / [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz/) / [Bypass Script](https://greasyfork.org/en/scripts/491326)
|
||||||
* ⭐ **[Files.vc](https://files.vc/)** - Unlimited / 10GB / Forever
|
* ⭐ **[Files.vc](https://files.vc/)** - Unlimited / 10GB / Forever
|
||||||
* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.co/), [3](https://fuckingfast.net/), [4](https://bzzhr.co/) - Unlimited / 15 Days, Can Extend to Forever / [File Expiry](https://buzzheavier.com/help) / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP)
|
* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.co/), [3](https://fuckingfast.net/), [4](https://bzzhr.co/) - Unlimited / 15 Days, Can Extend to Forever / [File Expiry](https://buzzheavier.com/help) / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP)
|
||||||
|
@ -325,7 +325,7 @@
|
||||||
* [Uploadev](https://uploadev.org/) - 10GB / 180 days after last download w/ account
|
* [Uploadev](https://uploadev.org/) - 10GB / 180 days after last download w/ account
|
||||||
* [Imagenetz](https://www.imagenetz.de/?setLang=en) - 5GB / 30 Days after last download
|
* [Imagenetz](https://www.imagenetz.de/?setLang=en) - 5GB / 30 Days after last download
|
||||||
* [FilePort](https://fileport.io/) - 5GB / 7 Days
|
* [FilePort](https://fileport.io/) - 5GB / 7 Days
|
||||||
* [FileDitch](https://fileditch.com/), [Oshi](https://oshi.at/) or [SendGB](https://www.sendgb.com/) - 5GB / 90 Days
|
* [FileDitch](https://fileditch.com/) or [SendGB](https://www.sendgb.com/) - 5GB / 90 Days
|
||||||
* [MegaUp](https://megaup.net/) - 5GB / 60 Days
|
* [MegaUp](https://megaup.net/) - 5GB / 60 Days
|
||||||
* [Bestfile](https://bestfile.io/) - 5GB / 80 Days after last download
|
* [Bestfile](https://bestfile.io/) - 5GB / 80 Days after last download
|
||||||
* [ufile.io](https://ufile.io/) - 5GB / 30 Days
|
* [ufile.io](https://ufile.io/) - 5GB / 30 Days
|
||||||
|
|
|
@ -24,11 +24,9 @@
|
||||||
* [MiiCharacters](https://www.miicharacters.com/) - Famous Mii Creation Guides
|
* [MiiCharacters](https://www.miicharacters.com/) - Famous Mii Creation Guides
|
||||||
* [Buzz In](https://buzzin.live/) - Online Buzzer System
|
* [Buzz In](https://buzzin.live/) - Online Buzzer System
|
||||||
* [Challonge](https://challonge.com/) or [Lorenzi's Game Boards](https://gb.hlorenzi.com/) - Tournament Creators / Managers
|
* [Challonge](https://challonge.com/) or [Lorenzi's Game Boards](https://gb.hlorenzi.com/) - Tournament Creators / Managers
|
||||||
* [Archipelago](https://archipelago.gg/) - Multi-Game Randomizer
|
|
||||||
* [Medal](https://medal.tv/) - Shadowplay for non Nvidia Cards / [Premium Bypass](https://medalbypass.vercel.app/)
|
* [Medal](https://medal.tv/) - Shadowplay for non Nvidia Cards / [Premium Bypass](https://medalbypass.vercel.app/)
|
||||||
* [RePlays](https://github.com/lulzsun/RePlays) - Game Recording Manager
|
* [RePlays](https://github.com/lulzsun/RePlays) - Game Recording Manager
|
||||||
* [Moments](https://steelseries.com/gg/moments) - Game Clip Tool
|
* [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
|
* [Keystrokes](https://www.deviantart.com/jaxoriginals/art/Keystrokes-v1-3-889349339) - Keystrokes Overlay
|
||||||
* [PSNProfiles](https://psnprofiles.com/) - Trophy Guide / PSN Profile Viewer
|
* [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://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#achievement-watcher-note)
|
* [Achievement Watcher](https://rentry.co/FMHYBase64#achievement-watcher-mod) - Achievement File Parser, Notifications & Playtime Tracker / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#achievement-watcher-note)
|
||||||
|
@ -168,12 +166,13 @@
|
||||||
|
|
||||||
## ▷ Game Mods
|
## ▷ Game Mods
|
||||||
|
|
||||||
|
* 🌐 **[Big List of Randomizers](https://randomizers.debigare.com/)** - Game Randomizer Index / [Discord](https://discord.com/invite/YREMzGQ3gd) / [GitHub](https://github.com/video-game-randomizers/rando-list)
|
||||||
* ↪️ **[Game Mods](https://rentry.co/FMHYBase64#game-mods)** - Mods for Individual Games
|
* ↪️ **[Game Mods](https://rentry.co/FMHYBase64#game-mods)** - Mods for Individual Games
|
||||||
* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Side Scrolling Modding Forum / [Games List](https://www.chronocrash.com/forum/resources/categories/openbor.2/)
|
* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Side Scrolling Modding Forum / [Games List](https://www.chronocrash.com/forum/resources/categories/openbor.2/)
|
||||||
* ⭐ **[ModDB](https://moddb.com/)** - Game Mods
|
* ⭐ **[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) / [Download Hidden](https://rentry.org/downloadingdeletednexusmods) / [Discord](https://discord.com/invite/nexusmods)
|
* ⭐ **[Nexus Mods](https://www.nexusmods.com/)** - Game Mods / [Bulk Downloader](https://greasyfork.org/en/scripts/483337) / [Redirect Skip](https://greasyfork.org/en/scripts/394039) / [Download Hidden](https://rentry.org/downloadingdeletednexusmods) / [Discord](https://discord.com/invite/nexusmods)
|
||||||
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** - Bethesda Game Modding Guides / [Discord](https://discord.com/invite/S99Ary5eba)
|
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** - Bethesda Game Modding Guides / [Discord](https://discord.com/invite/S99Ary5eba)
|
||||||
* [WeMod](https://www.wemod.com/) - Cheats / Trainer Manager / Single Player Only / [Unlocker](https://rentry.co/FMHYBase64#wemod-unlock) / [Discord](https://discord.com/invite/wemod)
|
* [WeMod](https://www.wemod.com/) - Cheats / Trainer Manager / Single Player Only / [Unlocker](https://rentry.co/FMHYBase64#wemod) / [Discord](https://discord.com/invite/wemod)
|
||||||
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) - Mod Manager
|
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) - Mod Manager
|
||||||
* [Otis_Inf Camera Mods](https://kemono.su/patreon/user/37343853) or [CinematicTools Archive](https://rentry.co/FMHYBase64#cinematictools-archive) - Game Camera Mods
|
* [Otis_Inf Camera Mods](https://kemono.su/patreon/user/37343853) or [CinematicTools Archive](https://rentry.co/FMHYBase64#cinematictools-archive) - Game Camera Mods
|
||||||
* [Mod.io](https://www.mod.io/) - Cross Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
* [Mod.io](https://www.mod.io/) - Cross Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
||||||
|
@ -190,6 +189,8 @@
|
||||||
* [ProAsm](http://www.proasm.com/) - Retro Game Mods
|
* [ProAsm](http://www.proasm.com/) - Retro Game Mods
|
||||||
* [Thunderstore](https://thunderstore.io/) - Unity Game Mods
|
* [Thunderstore](https://thunderstore.io/) - Unity Game Mods
|
||||||
* [Gale](https://github.com/Kesomannen/gale/) or [r2modman](https://github.com/ebkr/r2modmanPlus) - Thunderstore / BepInEx Unity Mod Managers
|
* [Gale](https://github.com/Kesomannen/gale/) or [r2modman](https://github.com/ebkr/r2modmanPlus) - Thunderstore / BepInEx Unity Mod Managers
|
||||||
|
* [Archipelago](https://archipelago.gg/) - Multi-Game Randomizer
|
||||||
|
* [Scanlines for Windows](https://s4windows.itch.io/scanlines-for-windows) - Add Scanlines to Games / [Discord](https://discord.gg/MqxMj8MT55)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -246,6 +247,7 @@
|
||||||
* [Tomatoanus](https://www.youtube.com/@tomatoanus/) - Speedrun Breakdowns
|
* [Tomatoanus](https://www.youtube.com/@tomatoanus/) - Speedrun Breakdowns
|
||||||
* [The Manual Project](https://vimm.net/manual), [ReplacementDocs](http://replacementdocs.com/) or [GamesDatabase](https://www.gamesdatabase.org/) - Game Manuals
|
* [The Manual Project](https://vimm.net/manual), [ReplacementDocs](http://replacementdocs.com/) or [GamesDatabase](https://www.gamesdatabase.org/) - Game Manuals
|
||||||
* [SNES Manuals](https://sites.google.com/view/snesmanuals) - SNES Game Manuals
|
* [SNES Manuals](https://sites.google.com/view/snesmanuals) - SNES Game Manuals
|
||||||
|
* [Ukikipedia](https://ukikipedia.net/) - SM64 Speedrunning Wiki
|
||||||
* [FOUR.lol](https://four.lol/) - Tetris Openers Wiki
|
* [FOUR.lol](https://four.lol/) - Tetris Openers Wiki
|
||||||
* [Underdogs Cup Lounge](https://discord.gg/QCbC9cA) - Tetris Resources & Coaching Discord
|
* [Underdogs Cup Lounge](https://discord.gg/QCbC9cA) - Tetris Resources & Coaching Discord
|
||||||
* [Fumen](https://harddrop.com/fumen/) - Tetris Field Editor
|
* [Fumen](https://harddrop.com/fumen/) - Tetris Field Editor
|
||||||
|
@ -255,9 +257,9 @@
|
||||||
## ▷ Tracking / Discovery
|
## ▷ Tracking / Discovery
|
||||||
|
|
||||||
* 🌐 **[Awesome Engineering Games](https://github.com/arcataroger/awesome-engineering-games)** - Engineering Games
|
* 🌐 **[Awesome Engineering Games](https://github.com/arcataroger/awesome-engineering-games)** - Engineering Games
|
||||||
* ⭐ **[Backloggd](https://www.backloggd.com/)**, **[Glitchwave](https://glitchwave.com/)**, [Grouvee](https://www.grouvee.com/), [RankOne](https://www.rankone.global/), [GG](https://ggapp.io/), [InfiniteBacklog](https://infinitebacklog.net/), [KeepTrackOfMyGames](https://keeptrackofmygames.com/) or [PlayTracker](https://playtracker.net/) - Game Trackers
|
* ⭐ **[Glitchwave](https://glitchwave.com/)**, **[Backloggd](https://www.backloggd.com/)**, [Grouvee](https://www.grouvee.com/), [RankOne](https://www.rankone.global/), [GG](https://ggapp.io/), [InfiniteBacklog](https://infinitebacklog.net/), [KeepTrackOfMyGames](https://keeptrackofmygames.com/) or [PlayTracker](https://playtracker.net/) - Game Trackers
|
||||||
* ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings
|
|
||||||
* ⭐ **[IGDB](https://www.igdb.com/)**, **[GiantBomb](https://www.giantbomb.com/games/)**, [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 Database
|
* ⭐ **[IGDB](https://www.igdb.com/)**, **[GiantBomb](https://www.giantbomb.com/games/)**, [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 Database
|
||||||
|
* ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings
|
||||||
* ⭐ **[TasteDive](https://tastedive.com/games)**, [Mythic Maps](https://mythicmap.com/) / [Discord](https://discord.gg/xw6cgmjDzB) or [/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations
|
* ⭐ **[TasteDive](https://tastedive.com/games)**, [Mythic Maps](https://mythicmap.com/) / [Discord](https://discord.gg/xw6cgmjDzB) or [/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations
|
||||||
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Game Recommendation Guides
|
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Game Recommendation Guides
|
||||||
* [Incendar](https://incendar.com/) - Game Release Date Tracker
|
* [Incendar](https://incendar.com/) - Game Release Date Tracker
|
||||||
|
@ -277,7 +279,7 @@
|
||||||
* [Low Spec Games](https://pastebin.com/raw/MTCXZxCN) - Low Spec Game Database
|
* [Low Spec Games](https://pastebin.com/raw/MTCXZxCN) - Low Spec Game Database
|
||||||
* [HOTU](https://www.homeoftheunderdogs.net/) - Rare Game Database
|
* [HOTU](https://www.homeoftheunderdogs.net/) - Rare Game Database
|
||||||
* [Delisted Games](https://delistedgames.com/) - Delisted Games Database
|
* [Delisted Games](https://delistedgames.com/) - Delisted Games Database
|
||||||
* [BoardGameGeek](https://boardgamegeek.com/) - Board Game Database
|
* [BoardGameGeek](https://boardgamegeek.com/) or [Kallax](https://kallax.io/) - Board Game Database
|
||||||
* [Board Game Breakdown](https://boardgamebreakdown.com/) - Board Game Reviews
|
* [Board Game Breakdown](https://boardgamebreakdown.com/) - Board Game Reviews
|
||||||
* [Can I Play That?](https://caniplaythat.com/) - Video Game Accessibility Reviews
|
* [Can I Play That?](https://caniplaythat.com/) - Video Game Accessibility Reviews
|
||||||
* [MoreGamesLike](https://www.moregameslike.com/) or [Games Like Finder](https://gameslikefinder.com/) - Find Similar Games
|
* [MoreGamesLike](https://www.moregameslike.com/) or [Games Like Finder](https://gameslikefinder.com/) - Find Similar Games
|
||||||
|
@ -371,6 +373,7 @@
|
||||||
|
|
||||||
* 🌐 **[Darthsternie](https://darthsternie.net/)** - Console Firmware / Exploit Archive
|
* 🌐 **[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
|
* 🌐 **[Emulators on Consoles](https://emulation.gametechwiki.com/index.php/Category:Emulators_on_consoles)** - List of Emulators for Consoles
|
||||||
|
* 🌐 **[Firmware / Bios Files](https://rentry.co/FMHYBase64#console-firmware)**
|
||||||
* ⭐ **[Hacks.Guide](https://hacks.guide/)** / [2](https://wiki.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/) or [Gamebrew](https://www.gamebrew.org/) - Homebrew Guides
|
* ⭐ **[Hacks.Guide](https://hacks.guide/)** / [2](https://wiki.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/) or [Gamebrew](https://www.gamebrew.org/) - Homebrew Guides
|
||||||
* ⭐ **[Nintendo Homebrew](https://discord.gg/C29hYvh)** - Nintendo Homebrew Discord
|
* ⭐ **[Nintendo Homebrew](https://discord.gg/C29hYvh)** - Nintendo Homebrew Discord
|
||||||
* ⭐ **[GBATemp](https://gbatemp.net/)** - Homebrew Forum
|
* ⭐ **[GBATemp](https://gbatemp.net/)** - Homebrew Forum
|
||||||
|
@ -381,6 +384,7 @@
|
||||||
* [ModMyClassic](https://modmyclassic.com/) - Classic Console Mods
|
* [ModMyClassic](https://modmyclassic.com/) - Classic Console Mods
|
||||||
* [N64Brew](https://n64brew.dev/wiki/Main_Page) - N64 Homebrew Wiki
|
* [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/XboxModding](https://www.reddit.com/r/XboxModding/) or [/r/XboxRetailHomebrew](https://www.reddit.com/r/XboxRetailHomebrew/) - Xbox Homebrew Subreddits
|
||||||
|
* [Team Resurgent](https://rentry.co/FMHYBase64#team-resurgent) - Xbox Homebrew Tools
|
||||||
* [/r/XboxHomebrew](https://www.reddit.com/r/XboxHomebrew/) - Xbox One/Series Homebrew Subreddit
|
* [/r/XboxHomebrew](https://www.reddit.com/r/XboxHomebrew/) - Xbox One/Series Homebrew Subreddit
|
||||||
* [/r/360Hacks Guide](https://redd.it/8y9jql) - Xbox 360 Modding Guide
|
* [/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
|
* [C-Xbox Tool](https://gbatemp.net/download/c-xbox-tool.7615/) - .XBE to ISO File Converter
|
||||||
|
@ -388,6 +392,7 @@
|
||||||
* [NASOS](https://download.digiex.net/Consoles/GameCube/Apps/NASOSbeta1.rar) - Gamecube iso.dec to ISO Converter
|
* [NASOS](https://download.digiex.net/Consoles/GameCube/Apps/NASOSbeta1.rar) - Gamecube iso.dec to ISO Converter
|
||||||
* [NESDev](https://www.nesdev.org/) - NES / SNES Dev Homebrew Guides / Forum
|
* [NESDev](https://www.nesdev.org/) - NES / SNES Dev Homebrew Guides / Forum
|
||||||
* [hakchi2 CE](https://github.com/TeamShinkansen/Hakchi2-CE) - Add More Roms to NES/SNES Classic Mini / [Discord](https://discord.gg/UUvqsAR)
|
* [hakchi2 CE](https://github.com/TeamShinkansen/Hakchi2-CE) - Add More Roms to NES/SNES Classic Mini / [Discord](https://discord.gg/UUvqsAR)
|
||||||
|
* [ROM News](http://rom-news.org/) - Console Game Release PreDB / NFO Database
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -486,7 +491,7 @@
|
||||||
* 🌐 **[MCDOC](https://openm.tech/)** - Minecraft Tools & Unlockers / [Discord](https://dc.openm.tech/)
|
* 🌐 **[MCDOC](https://openm.tech/)** - Minecraft Tools & Unlockers / [Discord](https://dc.openm.tech/)
|
||||||
* 🌐 **[Awesome Minecraft](https://github.com/bs-community/awesome-minecraft)** - Minecraft Resources
|
* 🌐 **[Awesome Minecraft](https://github.com/bs-community/awesome-minecraft)** - Minecraft Resources
|
||||||
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** - Minecraft Wikis
|
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** - Minecraft Wikis
|
||||||
* ⭐ **[Villager Trading Cheatsheet](https://i.ibb.co/sKBjbzg/e9f8d80e2376.png) or [Image Cheatsheet](https://minecraft.wiki/images/Trading_and_Bartering_Guide_for_Minecraft_Java_Edition_1.17%2B.png)
|
* ⭐ **[Villager Trading Cheatsheet](https://i.ibb.co/sKBjbzg/e9f8d80e2376.png)** or [Image Cheatsheet](https://minecraft.wiki/images/Trading_and_Bartering_Guide_for_Minecraft_Java_Edition_1.17%2B.png)
|
||||||
* ⭐ **[Minecraft Brewing Cheatsheet](https://minecraft.wiki/images/Minecraft_brewing_en.png)**
|
* ⭐ **[Minecraft Brewing Cheatsheet](https://minecraft.wiki/images/Minecraft_brewing_en.png)**
|
||||||
* [MC Utils](https://mcutils.com/) - Minecraft Web Tools
|
* [MC Utils](https://mcutils.com/) - Minecraft Web Tools
|
||||||
* [MCPEDL](https://mcpedl.com/) - Bedrock Resources
|
* [MCPEDL](https://mcpedl.com/) - Bedrock Resources
|
||||||
|
@ -508,7 +513,7 @@
|
||||||
|
|
||||||
## ▷ Hosting Tools
|
## ▷ Hosting Tools
|
||||||
|
|
||||||
* 🌐 **[FMHL](https://fmhl.devloo.xyz/)** - Free Minecraft Hosts List
|
* 🌐 **[FMHL](https://fmhl.berserk.sbs/)** - Free Minecraft Hosts List / [Mirror](https://github.com/Myuui/Free-Minecraft-Hosts)
|
||||||
* ⭐ **[auto-mcs](https://www.auto-mcs.com/)** - Easy Server Setup / [GitHub](https://github.com/macarooni-man/auto-mcs)
|
* ⭐ **[auto-mcs](https://www.auto-mcs.com/)** - Easy Server Setup / [GitHub](https://github.com/macarooni-man/auto-mcs)
|
||||||
* ⭐ **[Playit.gg](https://playit.gg/)** - Global Proxy / [Discord](https://discord.gg/AXAbujx)
|
* ⭐ **[Playit.gg](https://playit.gg/)** - Global Proxy / [Discord](https://discord.gg/AXAbujx)
|
||||||
* ⭐ **[paper-optimization](https://paper-chan.moe/paper-optimization/)** or [minecraft-optimization](https://github.com/YouHaveTrouble/minecraft-optimization) - Server Optimization Guides
|
* ⭐ **[paper-optimization](https://paper-chan.moe/paper-optimization/)** or [minecraft-optimization](https://github.com/YouHaveTrouble/minecraft-optimization) - Server Optimization Guides
|
||||||
|
@ -522,7 +527,7 @@
|
||||||
* [Minestom](https://minestom.net/) - Lightweight Minecraft Server / [Discord](https://discord.gg/pkFRvqB)
|
* [Minestom](https://minestom.net/) - Lightweight Minecraft Server / [Discord](https://discord.gg/pkFRvqB)
|
||||||
* [Cuberite](https://cuberite.org/) - Server Setup
|
* [Cuberite](https://cuberite.org/) - Server Setup
|
||||||
* [DriveBackupV2](https://modrinth.com/plugin/drivebackupv2) - Server Plugin to Create Cloud Backups of Worlds
|
* [DriveBackupV2](https://modrinth.com/plugin/drivebackupv2) - Server Plugin to Create Cloud Backups of Worlds
|
||||||
* [Pufferfish](https://github.com/pufferfish-gg/Pufferfish), [Purpur](https://purpurmc.org/) / [Discord](https://purpurmc.org/discord) or [Paper](https://papermc.io/software/paper) - Performance Enhancement Servers
|
* [Pufferfish](https://github.com/pufferfish-gg/Pufferfish), [Purpur](https://purpurmc.org/) / [Discord](https://purpurmc.org/discord) or [Paper](https://papermc.io/software/paper) / [Plugins](https://hangar.papermc.io/) - Performance Enhancement Servers
|
||||||
* [GeyserMC](https://geysermc.org/) - Join Minecraft Java Servers with Bedrock Client / [Consoles](https://wiki.geysermc.org/geyser/using-geyser-with-consoles/)
|
* [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/MrBruz/Minecraft-Server-Scanner) - Minecraft Server Info
|
* [Minecraft Server Scanner](https://github.com/MrBruz/Minecraft-Server-Scanner) - Minecraft Server Info
|
||||||
* [Minecraft Server Checker](https://moistcatawumpus.github.io/minecraft-server-checker/) - Simple Server Checker
|
* [Minecraft Server Checker](https://moistcatawumpus.github.io/minecraft-server-checker/) - Simple Server Checker
|
||||||
|
@ -533,8 +538,7 @@
|
||||||
|
|
||||||
## ▷ Launchers
|
## ▷ Launchers
|
||||||
|
|
||||||
* ⭐ **[Prism Launcher](https://prismlauncher.org/)** - Feature-Rich Launcher / [Discord](https://discord.com/invite/ArX2nafFz2) / [GitHub](https://github.com/PrismLauncher/PrismLauncher)
|
* ⭐ **[Prism Launcher](https://prismlauncher.org/)** - Feature-Rich Launcher / [Free Method](https://rentry.co/prism4free) / [Ely.by Version](https://github.com/ElyPrismLauncher/ElyPrismLauncher) / [Discord](https://discord.com/invite/ArX2nafFz2) / [GitHub](https://github.com/PrismLauncher/PrismLauncher)
|
||||||
* ⭐ **Prism Launcher Tools** - [Free Method](https://rentry.co/prism4free), [2](https://github.com/antunnitraj/Prism-Launcher-PolyMC-Offline-Bypass) / [Ely.by Version](https://github.com/ElyPrismLauncher/ElyPrismLauncher)
|
|
||||||
* ⭐ **[ATLauncher](https://atlauncher.com/)** or [Technic Launcher](https://www.technicpack.net/) - Modpack Launchers
|
* ⭐ **[ATLauncher](https://atlauncher.com/)** or [Technic Launcher](https://www.technicpack.net/) - Modpack Launchers
|
||||||
* ⭐ **[PojavLauncher](https://pojavlauncher.app/)** / [Discord](https://discord.com/invite/aenk3EUvER) / [GitHub](https://github.com/PojavLauncherTeam/PojavLauncher) or [FoldCraftLauncher](https://github.com/FCL-Team/FoldCraftLauncher) / [Discord](https://discord.gg/ffhvuXTwyV) - Java Edition for Android & iOS
|
* ⭐ **[PojavLauncher](https://pojavlauncher.app/)** / [Discord](https://discord.com/invite/aenk3EUvER) / [GitHub](https://github.com/PojavLauncherTeam/PojavLauncher) or [FoldCraftLauncher](https://github.com/FCL-Team/FoldCraftLauncher) / [Discord](https://discord.gg/ffhvuXTwyV) - Java Edition for Android & iOS
|
||||||
* ⭐ **[Bedrock Launcher](https://bedrocklauncher.github.io/)** or [MCLauncher](https://github.com/MCMrARM/mc-w10-version-launcher) - Launcher for Bedrock Edition
|
* ⭐ **[Bedrock Launcher](https://bedrocklauncher.github.io/)** or [MCLauncher](https://github.com/MCMrARM/mc-w10-version-launcher) - Launcher for Bedrock Edition
|
||||||
|
@ -643,7 +647,7 @@
|
||||||
* [Custom-MC-Render-Cweeper](https://rentry.co/custom-mc-render-cweeper) - Import Custom 3D Models into Minecraft
|
* [Custom-MC-Render-Cweeper](https://rentry.co/custom-mc-render-cweeper) - Import Custom 3D Models into Minecraft
|
||||||
* [ObjToSchematic](https://objtoschematic.com/) - Converts 3D Models into MC Formats / [Discord](https://discord.com/invite/McS2VrBZPD)
|
* [ObjToSchematic](https://objtoschematic.com/) - Converts 3D Models into MC Formats / [Discord](https://discord.com/invite/McS2VrBZPD)
|
||||||
* [NBT2Components](https://misode.github.io/nbt2components/) - NBT to Component Converter
|
* [NBT2Components](https://misode.github.io/nbt2components/) - NBT to Component Converter
|
||||||
* [Layoutit](https://voxels.layoutit.com/), [BDStudio](https://eszesbalint.github.io/bdstudio/editor) or [Minecraft Shapes](https://minecraftshapes.com/) - Minecraft Shape Tools / Voxel Editors
|
* [Layoutit](https://voxels.layoutit.com/), [VoxelSphereGenerator](https://oranj.io/blog/VoxelSphereGenerator), [BDStudio](https://eszesbalint.github.io/bdstudio/editor) or [Minecraft Shapes](https://minecraftshapes.com/) - Minecraft Shape Tools / Voxel Editors
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -710,7 +714,7 @@
|
||||||
* ⭐ **[Serebii.net](https://www.serebii.net/)**, [Pokémon Awesome](https://pokemon-awesome.vercel.app/), [Pokémon Database](https://pokemondb.net/) or [PocketMonsters.net](https://pocketmonsters.net/) - Pokémon Databases
|
* ⭐ **[Serebii.net](https://www.serebii.net/)**, [Pokémon Awesome](https://pokemon-awesome.vercel.app/), [Pokémon Database](https://pokemondb.net/) or [PocketMonsters.net](https://pocketmonsters.net/) - Pokémon Databases
|
||||||
* ⭐ **[PokeList](https://pokemonlist.netlify.app/)** or [PokeAPI](https://pokeapi.co/) - Pokédexes
|
* ⭐ **[PokeList](https://pokemonlist.netlify.app/)** or [PokeAPI](https://pokeapi.co/) - Pokédexes
|
||||||
* ⭐ **[Pokémon Typechart](https://pokemondb.net/type)** or [Type Calculator](https://www.pkmn.help/) - Pokémon Type Charts / [Image](https://img.pokemondb.net/images/typechart.png)
|
* ⭐ **[Pokémon Typechart](https://pokemondb.net/type)** or [Type Calculator](https://www.pkmn.help/) - Pokémon Type Charts / [Image](https://img.pokemondb.net/images/typechart.png)
|
||||||
* ⭐ **[PokeMMO](https://pokemmo.com/en/)**, [DelugeRPG](https://www.delugerpg.com/) or [Pokémon Revolution Online](https://pokemonrevolution.net/) - Pokémon MMOs
|
* ⭐ **[PokeMMO](https://pokemmo.com/en/)**, [DelugeRPG](https://www.delugerpg.com/), [Pokemon Blaze Online](https://pokemonblazeonline.com/) / [Discord](https://discord.com/invite/b3ZnXuf5fk) or [Pokémon Revolution Online](https://pokemonrevolution.net/) - Pokémon MMOs
|
||||||
* ⭐ **[PokéRogue](https://pokerogue.net/)** - Pokémon Dungeon Crawler / [Wiki](https://wiki.pokerogue.net/start) / [Subreddit](https://reddit.com/r/pokerogue/) / [Mobile](https://github.com/Admiral-Billy/Pokerogue-App) / [Discord](https://discord.com/invite/uWpTfdKG49)
|
* ⭐ **[PokéRogue](https://pokerogue.net/)** - Pokémon Dungeon Crawler / [Wiki](https://wiki.pokerogue.net/start) / [Subreddit](https://reddit.com/r/pokerogue/) / [Mobile](https://github.com/Admiral-Billy/Pokerogue-App) / [Discord](https://discord.com/invite/uWpTfdKG49)
|
||||||
* ⭐ **[Pokémon Showdown](https://pokemonshowdown.com/)** - Online Pokémon Battles
|
* ⭐ **[Pokémon Showdown](https://pokemonshowdown.com/)** - Online Pokémon Battles
|
||||||
* [PokeCommunity](https://www.pokecommunity.com/) - Pokémon Community
|
* [PokeCommunity](https://www.pokecommunity.com/) - Pokémon Community
|
||||||
|
@ -755,7 +759,7 @@
|
||||||
* 🌐 **[GTA5-Mods](https://www.gta5-mods.com/)** - GTAV Mods
|
* 🌐 **[GTA5-Mods](https://www.gta5-mods.com/)** - GTAV Mods
|
||||||
* 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods
|
* 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods
|
||||||
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy
|
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy
|
||||||
* ⭐ **[San Andreas: Multiplayer](https://www.sa-mp.mp/)** - Multiplayer GTA:SA / [Discord](https://discord.com/invite/samp)
|
* ⭐ **[San Andreas: Multiplayer](https://www.sa-mp.mp/)** / [Discord](https://discord.com/invite/samp) or [Multi Theft Auto](https://multitheftauto.com/) / [GitHub](https://github.com/multitheftauto/mtasa-blue) - Multiplayer GTA:SA
|
||||||
* ⭐ **[CLEO](https://cleo.li/)** - Extensible Library Plugin for GTA III, VC & SA / [Discord](https://discord.com/invite/d5dZSfgBZr)
|
* ⭐ **[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
|
* ⭐ **[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
|
* [Grand Theft Wiki](https://www.grandtheftwiki.com/Main_Page) - GTA Wiki
|
||||||
|
@ -838,7 +842,7 @@
|
||||||
* ⭐ **[Bloxstrap](https://bloxstraplabs.com/)** or [Fishstrap](https://fishstrap.app/) - Roblox Player Bootstrapper / [Discord](https://discord.com/invite/nKjV3mGq6R) / [GitHub](https://github.com/bloxstraplabs/bloxstrap)
|
* ⭐ **[Bloxstrap](https://bloxstraplabs.com/)** or [Fishstrap](https://fishstrap.app/) - Roblox Player Bootstrapper / [Discord](https://discord.com/invite/nKjV3mGq6R) / [GitHub](https://github.com/bloxstraplabs/bloxstrap)
|
||||||
* [Novetus](https://bitl.itch.io/novetus) - Self-Hosted Multi-version Roblox Client
|
* [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
|
* [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/jfbnmfgkohlfclfnplnlenbalpppohkm), [BTRoblox](https://x.com/AntiBoomz/status/1378597179556823040), [RoGold](https://rogold.live/free) or [RoSeal](https://www.roseal.live/) - Enhance Roblox Website
|
* [RoPro](https://ropro.io/), [Roblox+](https://chromewebstore.google.com/detail/roblox/jfbnmfgkohlfclfnplnlenbalpppohkm), [BTRoblox](https://github.com/AntiBoomz/BTRoblox), [RoGold](https://rogold.live/free) or [RoSeal](https://www.roseal.live/) - Enhance Roblox Website
|
||||||
* [Better Discovery](https://www.roblox.com/games/15317947079/) - Game Discovery
|
* [Better Discovery](https://www.roblox.com/games/15317947079/) - Game Discovery
|
||||||
* [RBXServers](https://rbxservers.xyz/) - Roblox VIP Servers
|
* [RBXServers](https://rbxservers.xyz/) - Roblox VIP Servers
|
||||||
* [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) - Roblox APIs
|
* [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) - Roblox APIs
|
||||||
|
@ -865,6 +869,8 @@
|
||||||
* ⭐ **[Keqingmains](https://keqingmains.com/)** - Genshin Guides
|
* ⭐ **[Keqingmains](https://keqingmains.com/)** - Genshin Guides
|
||||||
* ⭐ **[XXMI](https://github.com/SpectrumQT/XXMI-Launcher)** - Gacha Games Modding Tool / [Discord](https://discord.gg/agmg)
|
* ⭐ **[XXMI](https://github.com/SpectrumQT/XXMI-Launcher)** - Gacha Games Modding Tool / [Discord](https://discord.gg/agmg)
|
||||||
* [/r/GachaGaming](https://www.reddit.com/r/gachagaming/) - Gacha Games Subreddit
|
* [/r/GachaGaming](https://www.reddit.com/r/gachagaming/) - Gacha Games Subreddit
|
||||||
|
* [FGO GamePress](https://grandorder.gamepress.gg/) - FGO Wiki + Guides
|
||||||
|
* [Chaldea](https://chaldea.center/) - FGO Planner & Battle Simulator
|
||||||
* [LunarCore](https://github.com/Melledy/LunarCore) - Private Honkai: Star Rail Servers
|
* [LunarCore](https://github.com/Melledy/LunarCore) - Private Honkai: Star Rail Servers
|
||||||
* [Star Rail Station](https://starrailstation.com/) or [stardb.gg](https://stardb.gg/) - Honkai Star Rail Guides
|
* [Star Rail Station](https://starrailstation.com/) or [stardb.gg](https://stardb.gg/) - Honkai Star Rail Guides
|
||||||
* [Seelie.me](https://seelie.me/) - Genshin / Star Rail Planner
|
* [Seelie.me](https://seelie.me/) - Genshin / Star Rail Planner
|
||||||
|
|
|
@ -22,10 +22,11 @@
|
||||||
* ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / [Redirect Bypass Required](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_redirect_bypass)
|
* ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / [Redirect Bypass Required](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_redirect_bypass)
|
||||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Download / Forum / Account Required
|
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Download / Forum / Account Required
|
||||||
* ⭐ **[SteamGG](https://steamgg.net/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/OfficialSteamGG/) / [Discord](https://discord.gg/Rw6AT3hZZE)
|
* ⭐ **[SteamGG](https://steamgg.net/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/OfficialSteamGG/) / [Discord](https://discord.gg/Rw6AT3hZZE)
|
||||||
* ⭐ **[FreeToGame](https://www.freetogame.com/games)**, [Acid Play](https://acid-play.com/) or [/v/'s Recommended](https://vsrecommendedgames.fandom.com/wiki/Freeware_Games) - F2P Games / [Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)
|
* ⭐ **[FreeToGame](https://www.freetogame.com/games)** or [Acid Play](https://acid-play.com/) - F2P Games / [Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)
|
||||||
* ⭐ **[Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg)**, [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx), [Rezi Search](https://rezi.one/), [Rave Search](https://idleendeavor.github.io/gamesearch/) / [2](https://ravegamesearch.pages.dev/) or [/r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
* ⭐ **[Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg)**, [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx), [Rezi Search](https://rezi.one/), [Rave Search](https://idleendeavor.github.io/gamesearch/) / [2](https://ravegamesearch.pages.dev/) or [/r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||||
* [SteamUnderground](https://steamunderground.net/) - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/ZjrNBhmhPz)
|
* [SteamUnderground](https://steamunderground.net/) - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/ZjrNBhmhPz)
|
||||||
* [g4u](https://g4u.to/) - Download / PW: `404`
|
* [g4u](https://g4u.to/) - Download / PW: `404`
|
||||||
|
* [GLoad](https://gload.to/) - Download
|
||||||
* [GameBounty](https://gamebounty.world/) - Download / [Discord](https://discord.gg/6msDMndrkD)
|
* [GameBounty](https://gamebounty.world/) - Download / [Discord](https://discord.gg/6msDMndrkD)
|
||||||
* [UnionCrax](https://union-crax.xyz/) - Download / [Discord](https://discord.gg/dkVame6BQS)
|
* [UnionCrax](https://union-crax.xyz/) - Download / [Discord](https://discord.gg/dkVame6BQS)
|
||||||
* [appnetica](https://appnetica.com/) - Download / Torrent / Pre-Installs
|
* [appnetica](https://appnetica.com/) - Download / Torrent / Pre-Installs
|
||||||
|
@ -34,7 +35,6 @@
|
||||||
* [Rexa Games](https://rexagames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/6KWStFYSTj)
|
* [Rexa Games](https://rexagames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/6KWStFYSTj)
|
||||||
* [TriahGames](https://triahgames.com/) - Download / [Discord](https://discord.gg/vRxJNNcJNh) / PW: `www.triahgames.com`
|
* [TriahGames](https://triahgames.com/) - Download / [Discord](https://discord.gg/vRxJNNcJNh) / PW: `www.triahgames.com`
|
||||||
* [GetFreeGames](https://getfreegames.net/) - Download / [Discord](https://discord.gg/Pc5TtEzk7k)
|
* [GetFreeGames](https://getfreegames.net/) - Download / [Discord](https://discord.gg/Pc5TtEzk7k)
|
||||||
* [GLoad](https://gload.to/) - Download
|
|
||||||
* [World of PC Games](https://worldofpcgames.com/) - Download / Pre-Installs / Use Adblock / [Site Info](https://rentry.org/ikc3x8bt)
|
* [World of PC Games](https://worldofpcgames.com/) - Download / Pre-Installs / Use Adblock / [Site Info](https://rentry.org/ikc3x8bt)
|
||||||
* [Games4U](https://games4u.org/) - Download / Use Adblock
|
* [Games4U](https://games4u.org/) - Download / Use Adblock
|
||||||
* [AWTDG](https://awtdg.site/) - Download / [Discord](https://discord.gg/kApRXRjJ7A)
|
* [AWTDG](https://awtdg.site/) - Download / [Discord](https://discord.gg/kApRXRjJ7A)
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
* [Leeching Hell](http://www.leechinghell.pw/) - Download
|
* [Leeching Hell](http://www.leechinghell.pw/) - Download
|
||||||
* [IWannaPlay](https://sites.google.com/view/iwannaplay/список-игр) - Download / Telegram Required
|
* [IWannaPlay](https://sites.google.com/view/iwannaplay/список-игр) - Download / Telegram Required
|
||||||
* [IRC Games](https://redd.it/x804wg) - Download Games via IRC
|
* [IRC Games](https://redd.it/x804wg) - Download Games via IRC
|
||||||
* [ROM Heaven CSF](https://romheaven.com/csf), [2](https://romheaven.su/csf) - Download Clean Files
|
* [ROM Heaven CSF](https://rentry.co/FMHYBase64#csf) - Download Clean Steam Files
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -64,7 +64,6 @@
|
||||||
* [Elamigos](https://elamigos.site/) - Download
|
* [Elamigos](https://elamigos.site/) - Download
|
||||||
* [Tiny-Repacks](https://www.tiny-repacks.win) - Torrent
|
* [Tiny-Repacks](https://www.tiny-repacks.win) - Torrent
|
||||||
* [FreeGOGPCGames](https://freegogpcgames.com/) - GOG Games Torrent Uploads / [Hash Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#freegogpcgames-note), [2](https://i.ibb.co/XbF2dv1/image.png)
|
* [FreeGOGPCGames](https://freegogpcgames.com/) - GOG Games Torrent Uploads / [Hash Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#freegogpcgames-note), [2](https://i.ibb.co/XbF2dv1/image.png)
|
||||||
* [Magipack](https://www.magipack.games), [Old-Games](https://www.old-games.ru/), [CollectionChamber](https://collectionchamber.blogspot.com/) or [ClassicPCGames](https://archive.org/details/classicpcgames) - Retro PC Games
|
|
||||||
* [The U-M Software Archives](https://websites.umich.edu/~archive/) - Retro PC / Mac Games
|
* [The U-M Software Archives](https://websites.umich.edu/~archive/) - Retro PC / Mac Games
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -92,6 +91,7 @@
|
||||||
* [OldGamesDownload](https://oldgamesdownload.com/) - Abandonware
|
* [OldGamesDownload](https://oldgamesdownload.com/) - Abandonware
|
||||||
* [Old-Games.com](https://www.old-games.com/) - Abandonware
|
* [Old-Games.com](https://www.old-games.com/) - Abandonware
|
||||||
* [VETUSWARE](https://vetusware.com/category/Games/) - Abandonware
|
* [VETUSWARE](https://vetusware.com/category/Games/) - Abandonware
|
||||||
|
* [Magipack](https://www.magipack.games), [Old-Games](https://www.old-games.ru/), [CollectionChamber](https://collectionchamber.blogspot.com/) or [ClassicPCGames](https://archive.org/details/classicpcgames) - Abandonware
|
||||||
* [Japanese PC Compendium](https://japanesepccompendium.blogspot.com/) - Retro Japanese PC Games
|
* [Japanese PC Compendium](https://japanesepccompendium.blogspot.com/) - Retro Japanese PC Games
|
||||||
* [World of Spectrum](https://worldofspectrum.org/) or [SpectrumComputing](https://spectrumcomputing.co.uk/) - Sinclair ZX Spectrum
|
* [World of Spectrum](https://worldofspectrum.org/) or [SpectrumComputing](https://spectrumcomputing.co.uk/) - Sinclair ZX Spectrum
|
||||||
* [GamesNostalgia](https://gamesnostalgia.com/), [lemon64](https://www.lemon64.com/) or [C64.com](https://www.c64.com/) - Commodore 64
|
* [GamesNostalgia](https://gamesnostalgia.com/), [lemon64](https://www.lemon64.com/) or [C64.com](https://www.c64.com/) - Commodore 64
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
* 🌐 **[Awesome Terminal Games](https://ligurio.github.io/awesome-ttygames/)** - ASCII Terminal Games
|
* 🌐 **[Awesome Terminal Games](https://ligurio.github.io/awesome-ttygames/)** - ASCII Terminal Games
|
||||||
* 🌐 **[Kliktopia](https://kliktopia.org/)** - Klik Games
|
* 🌐 **[Kliktopia](https://kliktopia.org/)** - Klik Games
|
||||||
* ⭐ **[OpenRCT2](https://openrct2.io/)** - Open-Source RollerCoaster Tycoon 2
|
* ⭐ **[OpenRCT2](https://openrct2.io/)** - Open-Source RollerCoaster Tycoon 2
|
||||||
* [Luanti](https://www.luanti.org/) / [GitHub](https://github.com/luanti-org) or [Classicube](https://www.classicube.net/) - Open-Source Minecraft Alternatives
|
* [Luanti](https://www.luanti.org/) / [GitHub](https://github.com/luanti-org) or [Classicube](https://www.classicube.net/) - Open-Source Minecraft Clones / Alternatives
|
||||||
* [Locomalito](https://locomalito.com/) or [RetroSpec](https://retrospec.sgn.net/) - Classic Game Remakes
|
* [Locomalito](https://locomalito.com/) or [RetroSpec](https://retrospec.sgn.net/) - Classic Game Remakes
|
||||||
* [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod
|
* [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod
|
||||||
* [TF2 Classic](https://tf2classic.com/) - Team Fortress 2 Classic Mod
|
* [TF2 Classic](https://tf2classic.com/) - Team Fortress 2 Classic Mod
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
* [EDOPro](https://projectignis.github.io/) - Yu-Gi-Oh! TCG Fangame
|
* [EDOPro](https://projectignis.github.io/) - Yu-Gi-Oh! TCG Fangame
|
||||||
* [OpenNox](https://github.com/noxworld-dev/opennox) - Nox Revival Project
|
* [OpenNox](https://github.com/noxworld-dev/opennox) - Nox Revival Project
|
||||||
* [Pixel Gun X](https://discord.com/invite/8796Fs9tZm) - Pixel Gun 3D Revival Project Discord
|
* [Pixel Gun X](https://discord.com/invite/8796Fs9tZm) - Pixel Gun 3D Revival Project Discord
|
||||||
* [Infinity Blade PC](https://rentry.co/FMHYBase64#ib-pc-port) - Infinity Blade PC Port / [Subreddit](https://www.reddit.com/r/infinityblade) / [Discord](https://discord.gg/GfX3pmC)
|
* [Infinity Blade PC](https://rentry.co/FMHYBase64#ib-pc-port) - Infinity Blade I/II PC Ports / [Subreddit](https://www.reddit.com/r/infinityblade) / [Discord](https://discord.gg/GfX3pmC)
|
||||||
* [Pac-Man](https://github.com/masonicGIT/pacman) - Pac-Man with Added Features
|
* [Pac-Man](https://github.com/masonicGIT/pacman) - Pac-Man with Added Features
|
||||||
* [SpaceCadetPinball](https://github.com/k4zmu2a/SpaceCadetPinball) - Space Cadet Pinball / [Android](https://github.com/fexed/Pinball-on-Android)
|
* [SpaceCadetPinball](https://github.com/k4zmu2a/SpaceCadetPinball) - Space Cadet Pinball / [Android](https://github.com/fexed/Pinball-on-Android)
|
||||||
* [Visual Pinball](https://github.com/vpinball/vpinball) - Pinball Table Editor / Simulator / [Tables](https://www.vpforums.org/)
|
* [Visual Pinball](https://github.com/vpinball/vpinball) - Pinball Table Editor / Simulator / [Tables](https://www.vpforums.org/)
|
||||||
|
@ -189,11 +189,11 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ [Linux Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_gaming)
|
## ▷ [Linux Gaming](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_gaming)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ [Mac Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_gaming)
|
## ▷ [Mac Gaming](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_gaming)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -207,7 +207,7 @@
|
||||||
* 🌐 **[Multiplayer Emulation](https://emulation.gametechwiki.com/index.php/Netplay)** - Multiplayer Emulation Tools
|
* 🌐 **[Multiplayer Emulation](https://emulation.gametechwiki.com/index.php/Netplay)** - Multiplayer Emulation Tools
|
||||||
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||||
* ⭐ **[Recommended Emulator Specs](https://emulation.gametechwiki.com/index.php/Computer_specs)**
|
* ⭐ **[Recommended Emulator Specs](https://emulation.gametechwiki.com/index.php/Computer_specs)**
|
||||||
* ⭐ **[Emulator BIOS Files](https://rentry.co/FMHYBase64#emulator-files)** / **[Firmware Files](https://rentry.co/FMHYBase64#console-firmware)** / [2](https://rentry.co/FMHYBase64#sigmapatches)
|
* ⭐ **[Emulator BIOS Files](https://rentry.co/FMHYBase64#emulator-files)**
|
||||||
* ⭐ **[RetroAchievements](https://retroachievements.org/)** - Achievements for Emulators
|
* ⭐ **[RetroAchievements](https://retroachievements.org/)** - Achievements for Emulators
|
||||||
* ⭐ **[Dolphin Guide](https://github.com/shiiion/dolphin/wiki/Performance-Guide)** - Dolphin Setup Guide
|
* ⭐ **[Dolphin Guide](https://github.com/shiiion/dolphin/wiki/Performance-Guide)** - Dolphin Setup Guide
|
||||||
* ⭐ **[Cemu Guide](https://cemu.cfw.guide/)** or [/r/CemuPiracy Tutorial](https://www.reddit.com/r/CemuPiracy/wiki/tutorial/) - Wii U / BOTW Setup Guides
|
* ⭐ **[Cemu Guide](https://cemu.cfw.guide/)** or [/r/CemuPiracy Tutorial](https://www.reddit.com/r/CemuPiracy/wiki/tutorial/) - Wii U / BOTW Setup Guides
|
||||||
|
@ -262,6 +262,7 @@
|
||||||
* [Arquivista ROMs](https://rentry.co/FMHYBase64#arquivista) - ROMs
|
* [Arquivista ROMs](https://rentry.co/FMHYBase64#arquivista) - ROMs
|
||||||
* [FinalBurn Neo](https://rentry.co/FMHYBase64#finalburn-neo) - ROMs / Zip
|
* [FinalBurn Neo](https://rentry.co/FMHYBase64#finalburn-neo) - ROMs / Zip
|
||||||
* [Romsie](https://roms2000.com/) - Emulators / ROMs
|
* [Romsie](https://roms2000.com/) - Emulators / ROMs
|
||||||
|
* [Retro Vault](https://www.retrospot.net/vault/) - Emulators / ROMs
|
||||||
* [Retrostic](https://www.retrostic.com/) - Emulators / ROMs
|
* [Retrostic](https://www.retrostic.com/) - Emulators / ROMs
|
||||||
* [Romsever](https://romsever.com) - Emulators / ROMs
|
* [Romsever](https://romsever.com) - Emulators / ROMs
|
||||||
* [ROMsGames](https://www.romsgames.net/roms/) - Emulators / ROMs
|
* [ROMsGames](https://www.romsgames.net/roms/) - Emulators / ROMs
|
||||||
|
@ -292,6 +293,7 @@
|
||||||
* [MarioCube](https://mariocube.com/) - ROMs / Wii / Gamecube
|
* [MarioCube](https://mariocube.com/) - ROMs / Wii / Gamecube
|
||||||
* [64DD.org](https://64dd.org/) - ROMs / 64DD
|
* [64DD.org](https://64dd.org/) - ROMs / 64DD
|
||||||
* [3DS ROMS](https://3dsroms.org), [taodung](https://taodung.com/) or [hShop](https://hshop.erista.me/) - ROMs / 3DS
|
* [3DS ROMS](https://3dsroms.org), [taodung](https://taodung.com/) or [hShop](https://hshop.erista.me/) - ROMs / 3DS
|
||||||
|
* [3DSDB](https://3dsdb.com/) - 3DS Release Tracker
|
||||||
* [NoPayStation](https://nopaystation.com/) - ROMs / Playstation Consoles
|
* [NoPayStation](https://nopaystation.com/) - ROMs / Playstation Consoles
|
||||||
* [SuperPSX](https://www.superpsx.com/) - ROMs / PS3 / PS4
|
* [SuperPSX](https://www.superpsx.com/) - ROMs / PS3 / PS4
|
||||||
* [PKGPS4](https://www.pkgps4.click/) or [Game-2u PS4](https://game-2u.com/Category/game/ps4) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#game-2u-ps4-note) - ROMs / PS4
|
* [PKGPS4](https://www.pkgps4.click/) or [Game-2u PS4](https://game-2u.com/Category/game/ps4) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#game-2u-ps4-note) - ROMs / PS4
|
||||||
|
@ -303,7 +305,7 @@
|
||||||
* [NesFiles](https://www.nesfiles.com/) or [FC Gallery](https://fcpic.nesbbs.com/index_en.html) - ROMs / NES / Famicom
|
* [NesFiles](https://www.nesfiles.com/) or [FC Gallery](https://fcpic.nesbbs.com/index_en.html) - ROMs / NES / Famicom
|
||||||
* [/1CC/](https://1cc.kr.eu.org/1cc/index.html) / [Discord](https://discord.com/invite/e7xffWFf9p), [ROMs For MAME](https://www.romsformame.com/), [MDK](https://mdk.cab/), [PleasureDome](https://pleasuredome.github.io/pleasuredome/mame/), [MAME World](https://mameworld.info/) or [Arcade Database](http://adb.arcadeitalia.net/default.php?lang=en) - Arcade MAME ROMs
|
* [/1CC/](https://1cc.kr.eu.org/1cc/index.html) / [Discord](https://discord.com/invite/e7xffWFf9p), [ROMs For MAME](https://www.romsformame.com/), [MDK](https://mdk.cab/), [PleasureDome](https://pleasuredome.github.io/pleasuredome/mame/), [MAME World](https://mameworld.info/) or [Arcade Database](http://adb.arcadeitalia.net/default.php?lang=en) - Arcade MAME ROMs
|
||||||
* [Kuribo64](https://kuribo64.net/) - ROM Modding Community
|
* [Kuribo64](https://kuribo64.net/) - ROM Modding Community
|
||||||
* [MFGG](https://mfgg.net/) - Super Mario Mods / [Discord](https://discord.gg/jchgfw5)
|
* [MFGG](https://mfgg.net/) - Super Mario Fan Games / Mods / [Discord](https://discord.gg/jchgfw5)
|
||||||
* [Newer Team](https://newerteam.com/) or [NSMBHD](https://nsmbhd.net/) - Super Mario Bros. DS / Wii Mods
|
* [Newer Team](https://newerteam.com/) or [NSMBHD](https://nsmbhd.net/) - Super Mario Bros. DS / Wii Mods
|
||||||
* [SMWCentral](https://smwcentral.net/) - Super Mario World ROM Mods
|
* [SMWCentral](https://smwcentral.net/) - Super Mario World ROM Mods
|
||||||
* [Wario Land Vault](https://wario-land.github.io/HackVault/index.html) - Wario Land ROM Mods
|
* [Wario Land Vault](https://wario-land.github.io/HackVault/index.html) - Wario Land ROM Mods
|
||||||
|
@ -318,9 +320,9 @@
|
||||||
* [Mega Man Maker](https://megamanmaker.com/) - Create Mega Man Levels
|
* [Mega Man Maker](https://megamanmaker.com/) - Create Mega Man Levels
|
||||||
* [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord / [Telegram](https://t.me/dansfiles)
|
* [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord / [Telegram](https://t.me/dansfiles)
|
||||||
* [wide-snes](https://github.com/VitorVilela7/wide-snes) - Widescreen Super Mario World
|
* [wide-snes](https://github.com/VitorVilela7/wide-snes) - Widescreen Super Mario World
|
||||||
* [Dats.site](https://dats.site/) or [No Intro](https://no-intro.org/) - ROM .dat Files
|
* [Dats.site](https://dats.site/home.php) or [No Intro](https://no-intro.org/) - ROM .dat Files
|
||||||
* [Dat-O-Matic](https://datomatic.no-intro.org/index.php) - ROM Datasets
|
* [Dat-O-Matic](https://datomatic.no-intro.org/index.php) - ROM Datasets
|
||||||
* [NSWDB](https://www.nswdb.com) - Switch Release Tracker
|
* [NSWDB](https://www.nswdb.com) - Switch Game Release Tracker
|
||||||
* [RomStation](https://www.romstation.fr/) - ROM Downloader / Manager / Multiplayer
|
* [RomStation](https://www.romstation.fr/) - ROM Downloader / Manager / Multiplayer
|
||||||
* [RomPatcher](https://www.marcrobledo.com/RomPatcher.js/), [Rom Patcher JS](https://www.romhacking.net/patch/), [Hack64 Patcher](https://hack64.net/tools/patcher.php) or [FFF6Hacking Patcher](https://www.ff6hacking.com/patcher/) - Online ROM Patchers
|
* [RomPatcher](https://www.marcrobledo.com/RomPatcher.js/), [Rom Patcher JS](https://www.romhacking.net/patch/), [Hack64 Patcher](https://hack64.net/tools/patcher.php) or [FFF6Hacking Patcher](https://www.ff6hacking.com/patcher/) - Online ROM Patchers
|
||||||
|
|
||||||
|
@ -392,6 +394,7 @@
|
||||||
* [Spinner](https://hyperspace-wizard.itch.io/spinner) - Spinner Timing Game
|
* [Spinner](https://hyperspace-wizard.itch.io/spinner) - Spinner Timing Game
|
||||||
* [Ehmorris](https://ehmorris.com/lander/) - Spaceship Landing Game
|
* [Ehmorris](https://ehmorris.com/lander/) - Spaceship Landing Game
|
||||||
* [Dino Swords](https://dinoswords.gg/) - Stay Alive by Jumping / Destroying Cacti
|
* [Dino Swords](https://dinoswords.gg/) - Stay Alive by Jumping / Destroying Cacti
|
||||||
|
* [Taiko Web](https://cjdgrevival.com/) - Taiko no Tatsujin / Rhythm Game
|
||||||
* [Rhythm Plus](https://rhythm-plus.com), [2](https://rhythmplus.io/) - Rhythm Game / [Discord](https://discord.com/invite/ZGhnKp4) / [GitHub](https://github.com/henryzt/Rhythm-Plus-Music-Game)
|
* [Rhythm Plus](https://rhythm-plus.com), [2](https://rhythmplus.io/) - Rhythm Game / [Discord](https://discord.com/invite/ZGhnKp4) / [GitHub](https://github.com/henryzt/Rhythm-Plus-Music-Game)
|
||||||
* [Bemuse](https://bemuse.ninja/) - Rhythm Game
|
* [Bemuse](https://bemuse.ninja/) - Rhythm Game
|
||||||
* [Pulsus](https://www.pulsus.cc/play/) - 3x3 Tile Board Rhythm Game
|
* [Pulsus](https://www.pulsus.cc/play/) - 3x3 Tile Board Rhythm Game
|
||||||
|
@ -423,6 +426,7 @@
|
||||||
* [Addicting Games](https://www.addictinggames.com/) - Browser Games
|
* [Addicting Games](https://www.addictinggames.com/) - Browser Games
|
||||||
* [Kongregate](https://www.kongregate.com/) - Browser Games
|
* [Kongregate](https://www.kongregate.com/) - Browser Games
|
||||||
* [Y8](https://www.y8.com/) - Browser Games
|
* [Y8](https://www.y8.com/) - Browser Games
|
||||||
|
* [Vapor](https://vapor.my/) - Browser Games / [Discord](https://discord.com/invite/ASJxkzaE3G)
|
||||||
* [Poki](https://poki.com/) - Browser Games
|
* [Poki](https://poki.com/) - Browser Games
|
||||||
* [Crazy Games](https://www.crazygames.com/) - Browser Games
|
* [Crazy Games](https://www.crazygames.com/) - Browser Games
|
||||||
* [GamezHero](https://www.gamezhero.com/) - Browser Games
|
* [GamezHero](https://www.gamezhero.com/) - Browser Games
|
||||||
|
@ -484,11 +488,12 @@
|
||||||
* [fsh.zone](https://fsh.zone/) - Multiplayer Fishing Game / [Discord](https://discord.com/invite/FKEzJSf)
|
* [fsh.zone](https://fsh.zone/) - Multiplayer Fishing Game / [Discord](https://discord.com/invite/FKEzJSf)
|
||||||
* [Moo Moo](https://moomoo.io/) - Multiplayer Survival Game
|
* [Moo Moo](https://moomoo.io/) - Multiplayer Survival Game
|
||||||
* [Game Of Bombs](https://gameofbombs.com/) - Multiplayer Bomberman Style MMO
|
* [Game Of Bombs](https://gameofbombs.com/) - Multiplayer Bomberman Style MMO
|
||||||
|
* [PandaBomber](https://pandabomber.gg/) - Multiplayer Bomberman Style Game / [Dsicord](https://discord.gg/YFJCCxkdFZ)
|
||||||
|
* [Aberoth](https://aberoth.com/) - Browser MMORPG
|
||||||
* [Really Boring Website](https://really.boring.website/) - Online Scattergories
|
* [Really Boring Website](https://really.boring.website/) - Online Scattergories
|
||||||
* [Gpop.io](https://gpop.io/) - Rhythm Game
|
* [Gpop.io](https://gpop.io/) - Rhythm Game
|
||||||
* [Betrayal](https://betrayal.io/) - Among Us Clone
|
* [Betrayal](https://betrayal.io/) - Among Us Clone
|
||||||
* [Death by AI](https://deathbyai.gg/) - Survival Plan Game
|
* [Death by AI](https://deathbyai.gg/) - Survival Plan Game
|
||||||
* [Territorial](https://territorial.io/) - Conquest / War Games
|
|
||||||
* [Smash Karts](https://smashkarts.io/) - Kart Battles
|
* [Smash Karts](https://smashkarts.io/) - Kart Battles
|
||||||
* [tix.tax](https://tix.tax/) - Tic-Tac-Toe
|
* [tix.tax](https://tix.tax/) - Tic-Tac-Toe
|
||||||
|
|
||||||
|
@ -608,6 +613,7 @@
|
||||||
* ⭐ **lichess Tools** - [Mobile](https://lichess.org/mobile) / [Mobile V2](https://play.google.com/store/apps/details?id=org.lichess.mobileV2) / [Customize](https://prettierlichess.github.io/) / [Themes](https://github.com/algertc/prettierlichess-themes) / [Leagues](https://www.lichess4545.com/) / [Extend](https://lichess.org/page/extend)
|
* ⭐ **lichess Tools** - [Mobile](https://lichess.org/mobile) / [Mobile V2](https://play.google.com/store/apps/details?id=org.lichess.mobileV2) / [Customize](https://prettierlichess.github.io/) / [Themes](https://github.com/algertc/prettierlichess-themes) / [Leagues](https://www.lichess4545.com/) / [Extend](https://lichess.org/page/extend)
|
||||||
* ⭐ **[Print Chess](https://www.printchess.com/)** - Printable Paper Chess Set
|
* ⭐ **[Print Chess](https://www.printchess.com/)** - Printable Paper Chess Set
|
||||||
* ⭐ **[Super Auto Pets](https://teamwood.itch.io/super-auto-pets)** - Pet Battle Game / [Resources](https://www.groundedsap.co.uk/)
|
* ⭐ **[Super Auto Pets](https://teamwood.itch.io/super-auto-pets)** - Pet Battle Game / [Resources](https://www.groundedsap.co.uk/)
|
||||||
|
* [OpenFront](https://openfront.io/) / [Discord](https://discord.gg/k22YrnAzGp) or [Territorial](https://territorial.io/) - Conquest / War Style Games
|
||||||
* [Mah-Jongg](https://www.mahjongfun.com/), [Mahjong4Friends](https://mahjong4friends.com/), [Classic Mahjong](https://classic-mahjong.com/) or [The Mahjong](https://themahjong.com/) - Mahjong Games
|
* [Mah-Jongg](https://www.mahjongfun.com/), [Mahjong4Friends](https://mahjong4friends.com/), [Classic Mahjong](https://classic-mahjong.com/) or [The Mahjong](https://themahjong.com/) - Mahjong Games
|
||||||
* [lishogi](https://lishogi.org/) - Shogi
|
* [lishogi](https://lishogi.org/) - Shogi
|
||||||
* [Online GO](https://online-go.com/) - Multiplayer GO
|
* [Online GO](https://online-go.com/) - Multiplayer GO
|
||||||
|
@ -722,10 +728,11 @@
|
||||||
* [Metazooa](https://metazooa.com/) - Animal Guessing Game
|
* [Metazooa](https://metazooa.com/) - Animal Guessing Game
|
||||||
* [Pufferdle](https://pufferdle.com/) - Fish Guessing Game
|
* [Pufferdle](https://pufferdle.com/) - Fish Guessing Game
|
||||||
* [ChessGuessr](https://www.chessguessr.com/) - Chess Style Guessing Game
|
* [ChessGuessr](https://www.chessguessr.com/) - Chess Style Guessing Game
|
||||||
* [Huedle](https://huedle.com/), [Color Rush](https://www.colorrush.io/) or [Hexcodle](https://www.hexcodle.com/) - Hex Code Guessing Games
|
* [Huedle](https://huedle.com/), [Color Rush](https://www.colorrush.io/), [WhatTheHex](https://yizzle.com/whatthehex/) or [Hexcodle](https://www.hexcodle.com/) - Hex Code Guessing Games
|
||||||
* [Nerdle](https://nerdlegame.com/), [Additional](https://additional.today/) or [Countle](https://www.countle.org/) - Math Guessing Games
|
* [Nerdle](https://nerdlegame.com/), [Additional](https://additional.today/) or [Countle](https://www.countle.org/) - Math Guessing Games
|
||||||
* [Minecraftle](https://minecraftle.zachmanson.com/) - Minecraft Recipe Guessing Game
|
* [Minecraftle](https://minecraftle.zachmanson.com/) - Minecraft Recipe Guessing Game
|
||||||
* [PkmnQuiz](https://pkmnquiz.com/), [Gearoid Pokémon](https://gearoid.me/pokemon/), [Pokedle](https://pokedle.net/) or [Squirdle](https://squirdle.fireblend.com/) - Pokémon Guessing Games
|
* [PkmnQuiz](https://pkmnquiz.com/), [Gearoid Pokémon](https://gearoid.me/pokemon/), [Pokedle](https://pokedle.net/) or [Squirdle](https://squirdle.fireblend.com/) - Pokémon Guessing Games
|
||||||
|
* [Pokémon Infinite Heardle](https://pkmn-infinite-heardle.glitch.me/) - Pokémon Music Guessing
|
||||||
* [LoLdle](https://loldle.net/) - League of Legends Guessing Games
|
* [LoLdle](https://loldle.net/) - League of Legends Guessing Games
|
||||||
* [Owdle](https://owdle.guessing.day/) - Overwatch Guessing Games
|
* [Owdle](https://owdle.guessing.day/) - Overwatch Guessing Games
|
||||||
* [Guess The Year](https://guess-the-year.davjhan.com/) or [ChronoPhoto](https://www.chronophoto.app/) - Year Guessing Game
|
* [Guess The Year](https://guess-the-year.davjhan.com/) or [ChronoPhoto](https://www.chronophoto.app/) - Year Guessing Game
|
||||||
|
@ -736,7 +743,7 @@
|
||||||
|
|
||||||
## ▷ GeoGuessr Games
|
## ▷ GeoGuessr Games
|
||||||
|
|
||||||
* 🌐 **[Regionguessing](https://docs.google.com/spreadsheets/d/1UNvkoY-LaktF75nU_cP7-wVRAEvH3fSqVZet20HqxXA)**, [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [GeoHints](https://geohints.com/) / [Discord](https://discord.gg/bCZ8Bg2vUd), [Plonk It](https://www.plonkit.net/) or [Top Tricks](https://somerandomstuff1.wordpress.com/2019/02/08/geoguessr-the-top-tips-tricks-and-techniques/) - GeoGuessr Guides / Tips
|
* 🌐 **[Regionguessing](https://docs.google.com/spreadsheets/d/1UNvkoY-LaktF75nU_cP7-wVRAEvH3fSqVZet20HqxXA)**, [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [GeoHints](https://geohints.com/) / [Discord](https://discord.gg/bCZ8Bg2vUd), [Plonk It](https://www.plonkit.net/) / [Discord](https://discord.gg/7eFVgb4c) or [Top Tricks](https://somerandomstuff1.wordpress.com/2019/02/08/geoguessr-the-top-tips-tricks-and-techniques/) - GeoGuessr Guides / Tips
|
||||||
* ⭐ **[Geotastic](https://geotastic.net/)** - Multiplayer GeoGuessr / Account Required
|
* ⭐ **[Geotastic](https://geotastic.net/)** - Multiplayer GeoGuessr / Account Required
|
||||||
* ⭐ **[Globle](https://globle-game.com/)** - Country Hot-or-Cold Guessing Game
|
* ⭐ **[Globle](https://globle-game.com/)** - Country Hot-or-Cold Guessing Game
|
||||||
* [Emily's GeoGuessr Tools](https://geo.emily.bz/) - GeoGuessr Tools
|
* [Emily's GeoGuessr Tools](https://geo.emily.bz/) - GeoGuessr Tools
|
||||||
|
@ -755,12 +762,13 @@
|
||||||
* [Artifact Guesser](https://artifactguesser.com/) or [GeoArtwork](https://artsandculture.google.com/experiment/geo-artwork/wgEPVBAUiRVlEQ) - Guess Origins of Cultural Artifacts
|
* [Artifact Guesser](https://artifactguesser.com/) or [GeoArtwork](https://artsandculture.google.com/experiment/geo-artwork/wgEPVBAUiRVlEQ) - Guess Origins of Cultural Artifacts
|
||||||
* [travle](https://travle.earth/) - Guess Countries Between Two Locations
|
* [travle](https://travle.earth/) - Guess Countries Between Two Locations
|
||||||
* [MapGenerator](https://map-generator-nsj.vercel.app/) - GeoGuessr Map Generator
|
* [MapGenerator](https://map-generator-nsj.vercel.app/) - GeoGuessr Map Generator
|
||||||
|
* [VirtualStreets](https://virtualstreets.org/) - Google Street Update Tracker
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Word Games
|
## ▷ Word Games
|
||||||
|
|
||||||
* 🌐 **[Awesome Wordle](https://github.com/prakhar897/awesome-wordle)**, [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) or [Wordleverse](https://wordleverse.net/games) - Wordle Game Index
|
* 🌐 **[Wordleverse](https://wordleverse.net/)**, [Awesome Wordle](https://github.com/prakhar897/awesome-wordle) or [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) - Wordle Game Index
|
||||||
* ⭐ **[Wordle](https://www.nytimes.com/games/wordle/index.html)** - Original Wordle
|
* ⭐ **[Wordle](https://www.nytimes.com/games/wordle/index.html)** - Original Wordle
|
||||||
* ⭐ **[Wordle Analyzer](https://wordle-analyzer.com/)**
|
* ⭐ **[Wordle Analyzer](https://wordle-analyzer.com/)**
|
||||||
* ⭐ **[BestCrosswords](https://www.bestcrosswords.com/)**, [TheWordSearch](https://thewordsearch.com/) or [Regex-Crossword](https://jimbly.github.io/regex-crossword/) - Crossword Puzzles / [Creator](https://puzzlemaker.discoveryeducation.com/), [2](https://www.xwords-generator.de/en) / [Solver](https://www.wordplays.com/), [2](https://www.dictionary.com/e/crosswordsolver/), [3](https://crossword-solver.io/)
|
* ⭐ **[BestCrosswords](https://www.bestcrosswords.com/)**, [TheWordSearch](https://thewordsearch.com/) or [Regex-Crossword](https://jimbly.github.io/regex-crossword/) - Crossword Puzzles / [Creator](https://puzzlemaker.discoveryeducation.com/), [2](https://www.xwords-generator.de/en) / [Solver](https://www.wordplays.com/), [2](https://www.dictionary.com/e/crosswordsolver/), [3](https://crossword-solver.io/)
|
||||||
|
|
|
@ -54,6 +54,7 @@
|
||||||
* [OIE](https://www.online-image-editor.com/) - Simple Editor
|
* [OIE](https://www.online-image-editor.com/) - Simple Editor
|
||||||
* [ILoveImg](https://www.iloveimg.com/photo-editor) - Simple Editor
|
* [ILoveImg](https://www.iloveimg.com/photo-editor) - Simple Editor
|
||||||
* [UpperPix](https://upperpix.com/) - Simple Editor
|
* [UpperPix](https://upperpix.com/) - Simple Editor
|
||||||
|
* [Online Photo Editor](https://www.freeonlinephotoeditor.com/) - Simple Editor
|
||||||
* [Picverse](https://www.picverse.com/online-photo-editor) - Simple Editor
|
* [Picverse](https://www.picverse.com/online-photo-editor) - Simple Editor
|
||||||
* [webp2jpg](https://renzhezhilu.github.io/webp2jpg-online/) - Simple Editor
|
* [webp2jpg](https://renzhezhilu.github.io/webp2jpg-online/) - Simple Editor
|
||||||
* [edit.photo](https://edit.photo/) - Simple Editor
|
* [edit.photo](https://edit.photo/) - Simple Editor
|
||||||
|
@ -114,7 +115,8 @@
|
||||||
* [Change Image Hue](https://www.imageonlinetools.com/change-image-hue) or [Tinter](https://tinter.uxie.io/) - Hue Editor
|
* [Change Image Hue](https://www.imageonlinetools.com/change-image-hue) or [Tinter](https://tinter.uxie.io/) - Hue Editor
|
||||||
* [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/), [Ditherista](https://github.com/robertkist/ditherista/) or [Dither Me This](https://doodad.dev/dither-me-this/) - Image Dithering
|
* [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/), [Ditherista](https://github.com/robertkist/ditherista/) or [Dither Me This](https://doodad.dev/dither-me-this/) - Image Dithering
|
||||||
* [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) - Image to Anime Style Converter
|
||||||
|
* [YouPhoto](https://youphoto.ai/) - Image to Ghibli Style Converter
|
||||||
* [AIDraw](https://ai-draw.tokyo/en/) - Turn Photos into Line Art
|
* [AIDraw](https://ai-draw.tokyo/en/) - Turn Photos into Line Art
|
||||||
* [Rutt-Etra-Izer](https://airtightinteractive.com/demos/js/ruttetra/) - Scanned-line Images
|
* [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
|
||||||
|
@ -125,6 +127,14 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ [Linux Image Editing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_images)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ [Mac Image Editing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_images)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# ► Image Creation
|
# ► Image Creation
|
||||||
|
|
||||||
* 🌐 **[PuccaNoodles' Sheet](https://docs.google.com/spreadsheets/d/1-8OKuEvRR038Uno--Vi9tQRe4eFCSfQTPov7nXgiJ3w/)** - Image Creation Resources
|
* 🌐 **[PuccaNoodles' Sheet](https://docs.google.com/spreadsheets/d/1-8OKuEvRR038Uno--Vi9tQRe4eFCSfQTPov7nXgiJ3w/)** - Image Creation Resources
|
||||||
|
@ -172,6 +182,7 @@
|
||||||
|
|
||||||
* ⭐ **[Excalidraw](https://excalidraw.com/)** - Drawing / Sketching / [Sharing](https://excalihub.dev/)
|
* ⭐ **[Excalidraw](https://excalidraw.com/)** - Drawing / Sketching / [Sharing](https://excalihub.dev/)
|
||||||
* ⭐ **[AutoDraw](https://www.autodraw.com/)**, [Co-Drawing](https://huggingface.co/spaces/Trudy/gemini-codrawing) or [Magic Sketchpad](https://magic-sketchpad.glitch.me/) - AI Drawing Tools
|
* ⭐ **[AutoDraw](https://www.autodraw.com/)**, [Co-Drawing](https://huggingface.co/spaces/Trudy/gemini-codrawing) or [Magic Sketchpad](https://magic-sketchpad.glitch.me/) - AI Drawing Tools
|
||||||
|
* [DrawTab](https://docs.thesevenpens.com/drawtab) - Drawing Tablet Info / Wiki
|
||||||
* [Inscribed](https://inscribed.app/) / [GitHub](https://github.com/chunrapeepat/inscribed) - Sketch-Based Slides
|
* [Inscribed](https://inscribed.app/) / [GitHub](https://github.com/chunrapeepat/inscribed) - Sketch-Based Slides
|
||||||
* [inkscape](https://inkscape.org/) - Drawing / Sketching
|
* [inkscape](https://inkscape.org/) - Drawing / Sketching
|
||||||
* [Inkdo](https://www.microsoft.com/en-us/p/inkodo/9nblggh4s50q) - Drawing / Sketching
|
* [Inkdo](https://www.microsoft.com/en-us/p/inkodo/9nblggh4s50q) - Drawing / Sketching
|
||||||
|
@ -281,6 +292,7 @@
|
||||||
* 🌐 **[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/), [SMPoster](https://www.smposter.com/), [AnotherGraphic](https://anothergraphic.org/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Examples / Inspiration
|
* [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [SMPoster](https://www.smposter.com/), [AnotherGraphic](https://anothergraphic.org/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Examples / Inspiration
|
||||||
* [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
|
||||||
|
* [The Boolean Game](https://boolean.method.ac/) - Learn Boolean Operations in Vector Editors
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -403,7 +415,7 @@
|
||||||
* [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter
|
* [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter
|
||||||
* [3DThis](https://3dthis.com/) - 3D Animation Tools
|
* [3DThis](https://3dthis.com/) - 3D Animation Tools
|
||||||
* [PaintUp](http://technohippy.github.io/teddyjs/) - Make 2D Art into 3D
|
* [PaintUp](http://technohippy.github.io/teddyjs/) - Make 2D Art into 3D
|
||||||
* [Embossify](https://www.embossify.com/) - Turn Images into 3D Printer Models
|
* [Embossify](https://www.embossify.com/), [Tripo3D](https://www.tripo3d.ai/app/home) or [TripoSG](https://huggingface.co/spaces/VAST-AI/TripoSG) - Image to 3D Model Converters
|
||||||
* [CosplayStaticFigure](https://t.me/CosplayStaticFigure) - Cosplay / Figurine 3D Models
|
* [CosplayStaticFigure](https://t.me/CosplayStaticFigure) - Cosplay / Figurine 3D Models
|
||||||
* [3DBrute](https://3dbrute.com/), [3DZip](https://3dzip.org/) or [DesignConnected](https://www.designconnected.com/) - 3D Furniture Models
|
* [3DBrute](https://3dbrute.com/), [3DZip](https://3dzip.org/) or [DesignConnected](https://www.designconnected.com/) - 3D Furniture Models
|
||||||
* [Halloween.WannaThis](https://halloween.wannathis.one/) - 3D Halloween Models
|
* [Halloween.WannaThis](https://halloween.wannathis.one/) - 3D Halloween Models
|
||||||
|
@ -789,7 +801,7 @@
|
||||||
* [Color Space](https://mycolor.space/) - Generate Gradient Color Palettes
|
* [Color Space](https://mycolor.space/) - Generate Gradient Color Palettes
|
||||||
* [Colors Wall](https://colorswall.com/) or [ColorKit](https://colorkit.co/color-palette-generator/) - Generate Random Color Palettes
|
* [Colors Wall](https://colorswall.com/) or [ColorKit](https://colorkit.co/color-palette-generator/) - Generate Random Color Palettes
|
||||||
* [Color Kit](https://colorkit.io/) - Generate Color Palettes by Mixing 2 Colors
|
* [Color Kit](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/), [Personal Color Analysis](https://www.personal-color-analysis.com/) 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
|
* [Good Palette](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
|
||||||
|
@ -821,7 +833,7 @@
|
||||||
* 🌐 **[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/)** - Facial Cloaking
|
* ⭐ **[Fawkes](http://sandlab.cs.uchicago.edu/fawkes/)** - Facial Cloaking
|
||||||
* ⭐ **[FotoForensics](https://www.fotoforensics.com/)**, [Sherloq](https://github.com/GuidoBartoli/sherloq) or [Forensically](https://29a.ch/photo-forensics/) - Photo Forensics Tools
|
* ⭐ **[FotoForensics](https://www.fotoforensics.com/)**, [Sherloq](https://github.com/GuidoBartoli/sherloq) or [Forensically](https://29a.ch/photo-forensics/) - Photo Forensics Tools
|
||||||
* [Picarta](https://picarta.ai/) / [Discord](https://discord.gg/g5BAd2UFbs) or [GeoEstimation](https://labs.tib.eu/geoestimation) - Estimate Image Geolocation
|
* [Picarta](https://picarta.ai/) / [Discord](https://discord.gg/g5BAd2UFbs), [GeoSpy](https://geospy.net/) or [GeoEstimation](https://labs.tib.eu/geoestimation) - Estimate Image Locations
|
||||||
* [Image Identification Project](https://www.imageidentify.com/) - Image Identification Tool
|
* [Image Identification Project](https://www.imageidentify.com/) - Image Identification Tool
|
||||||
* [StegOnline](https://georgeom.net/StegOnline/upload), [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/), [hide-text](https://all-tools.github.io/hide-text-in-image/) or [stegpy](https://github.com/izcoser/stegpy) - Images Steganography Tools
|
* [StegOnline](https://georgeom.net/StegOnline/upload), [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/), [hide-text](https://all-tools.github.io/hide-text-in-image/) or [stegpy](https://github.com/izcoser/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
|
||||||
|
|
|
@ -7,8 +7,8 @@ hero:
|
||||||
name: freemediaheckyeah
|
name: freemediaheckyeah
|
||||||
tagline: The largest collection of free stuff on the internet!
|
tagline: The largest collection of free stuff on the internet!
|
||||||
announcement:
|
announcement:
|
||||||
title: March Updates 🌸
|
title: April Updates 🌼
|
||||||
link: /posts/mar-2025
|
link: /posts/april-2025
|
||||||
image:
|
image:
|
||||||
src: /test.png
|
src: /test.png
|
||||||
alt: FMHY Icon
|
alt: FMHY Icon
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
* [Arcai](https://arcai.com/) - WiFi Speed Control
|
* [Arcai](https://arcai.com/) - WiFi Speed Control
|
||||||
* [NeverSSL](http://neverssl.com/) - Fix Public Wi-Fi Login Pages
|
* [NeverSSL](http://neverssl.com/) - Fix Public Wi-Fi Login Pages
|
||||||
* [WiFi-Password](https://github.com/sdushantha/wifi-password) - Fetch WiFi Password / Generate QR Code
|
* [WiFi-Password](https://github.com/sdushantha/wifi-password) - Fetch WiFi Password / Generate QR Code
|
||||||
* [Hosts File Editor](https://hostsfileeditor.com/) or [HostsDock](https://eshengsky.github.io/HostsDock/) - Windows Hosts File Editors
|
* [SwitchHosts](https://github.com/oldj/SwitchHosts) - Windows Hosts File Editor
|
||||||
* [MAC Address](https://macaddress.io/) - MAC Address Lookup
|
* [MAC Address](https://macaddress.io/) - MAC Address Lookup
|
||||||
* [masscan](https://github.com/robertdavidgraham/masscan) - Port Scanner
|
* [masscan](https://github.com/robertdavidgraham/masscan) - Port Scanner
|
||||||
* [PortChecker](https://portchecker.co/), [ping.pe](https://ping.pe/), [PortCheckers](https://www.portcheckers.com/), [RustCat](https://github.com/robiot/rustcat) or [CanYouSeeMe](https://canyouseeme.org/) - Port Checkers
|
* [PortChecker](https://portchecker.co/), [ping.pe](https://ping.pe/), [PortCheckers](https://www.portcheckers.com/), [RustCat](https://github.com/robiot/rustcat) or [CanYouSeeMe](https://canyouseeme.org/) - Port Checkers
|
||||||
|
@ -92,7 +92,6 @@
|
||||||
* [pronouns.cc](https://pronouns.cc/) - Share Preferred Pronouns
|
* [pronouns.cc](https://pronouns.cc/) - Share Preferred Pronouns
|
||||||
* [LinkSpace.Bio](https://linkspace.bio/) - 250 Limit / Custom URLs
|
* [LinkSpace.Bio](https://linkspace.bio/) - 250 Limit / Custom URLs
|
||||||
* [seemless](https://www.linkinbio.website/) - Link in Bio for TikTok & Instagram
|
* [seemless](https://www.linkinbio.website/) - Link in Bio for TikTok & Instagram
|
||||||
* [itsmy.fyi](https://itsmy.fyi/) - Create Homepage via GitHub Issues / [GitHub](https://github.com/rishi-raj-jain/itsmy.fyi)
|
|
||||||
* [AnyImage](https://anyimage.io/) - Create Social Card Links
|
* [AnyImage](https://anyimage.io/) - Create Social Card Links
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -102,8 +101,8 @@
|
||||||
* ⭐ **[Buster](https://github.com/dessant/buster)** - Auto Captcha Solver
|
* ⭐ **[Buster](https://github.com/dessant/buster)** - Auto Captcha Solver
|
||||||
* [NopeCHA](https://nopecha.com/) - Auto Captcha Solver / [Required Tokens](https://nopecha.com/manage) / [Discord](https://discord.com/invite/yj7cTYBQaw)
|
* [NopeCHA](https://nopecha.com/) - Auto Captcha Solver / [Required Tokens](https://nopecha.com/manage) / [Discord](https://discord.com/invite/yj7cTYBQaw)
|
||||||
* [Privacy Pass](https://github.com/cloudflare/pp-browser-extension) - Save Captcha Tokens
|
* [Privacy Pass](https://github.com/cloudflare/pp-browser-extension) - Save Captcha Tokens
|
||||||
* [Democaptcha](https://democaptcha.com/demo-form-eng/hcaptcha.html) - hCaptcha Demo
|
* [Democaptcha](https://democaptcha.com/demo-form-eng/hcaptcha.html) - hCaptcha Demo / Get Captcha Tokens
|
||||||
* [ReCAPTCHA Demo](https://www.google.com/recaptcha/api2/demo) or [reCAPTCHA test](https://patrickhlauke.github.io/recaptcha/) - reCAPTCHA Demos
|
* [ReCAPTCHA Demo](https://www.google.com/recaptcha/api2/demo) or [reCAPTCHA test](https://patrickhlauke.github.io/recaptcha/) - reCAPTCHA Demos / Get Captcha Tokens
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -114,18 +113,16 @@
|
||||||
* ⭐ **[Mumble](https://www.mumble.info/)**, [Jam](https://jam.systems/), [TeaSpeak](https://teaspeak.de/gb/) or [TeamSpeak](https://www.teamspeak.com/) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#teamspeak-warning) - Voice Chat
|
* ⭐ **[Mumble](https://www.mumble.info/)**, [Jam](https://jam.systems/), [TeaSpeak](https://teaspeak.de/gb/) or [TeamSpeak](https://www.teamspeak.com/) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#teamspeak-warning) - Voice Chat
|
||||||
* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [LittlePlanets](https://littleplanets.us/), [Convene](https://letsconvene.im/), [Stinto](https://stinto.chat/en) or [tik.io](https://tlk.io/) - Minimal Account Free Chats
|
* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [LittlePlanets](https://littleplanets.us/), [Convene](https://letsconvene.im/), [Stinto](https://stinto.chat/en) or [tik.io](https://tlk.io/) - Minimal Account Free Chats
|
||||||
* ⭐ **[Gajim](https://gajim.org/)**, [Profanity](https://profanity-im.github.io/) / [GitHub](https://github.com/profanity-im/profanity) or [xabber](https://www.xabber.com/) - XMPP Clients
|
* ⭐ **[Gajim](https://gajim.org/)**, [Profanity](https://profanity-im.github.io/) / [GitHub](https://github.com/profanity-im/profanity) or [xabber](https://www.xabber.com/) - XMPP Clients
|
||||||
* [Pidgin](https://www.pidgin.im/) or [Ferdium](https://ferdium.org/) / [GitHub](https://github.com/ferdium/ferdium-app) - Combine Web Apps / Chat Services
|
* [Pidgin](https://www.pidgin.im/) / [GitHub](https://keep.imfreedom.org/pidgin/pidgin/) or [Ferdium](https://ferdium.org/) / [GitHub](https://github.com/ferdium/ferdium-app) - Combine Web Apps / Chat Services
|
||||||
* [MatterBridge](https://github.com/42wim/matterbridge) - Bridge for Multiple Chat Apps
|
* [MatterBridge](https://github.com/42wim/matterbridge) - Bridge for Multiple Chat Apps
|
||||||
* [Miranda NG](https://www.miranda-ng.org/en/), [Escargot](https://escargot.chat/) or [WeeChat](https://weechat.org/) - Chat Apps
|
* [Miranda NG](https://www.miranda-ng.org/en/), [Escargot](https://escargot.chat/) or [WeeChat](https://weechat.org/) - Chat Apps
|
||||||
* [Twist](https://twist.com/) - Collaboration Chat Manager
|
* [Twist](https://twist.com/) - Collaboration Chat Manager
|
||||||
* [Cabal](https://cabal.chat/) - P2P Chat / [GitHub](https://github.com/cabal-club)
|
* [Cabal](https://cabal.chat/) - P2P Chat / [GitHub](https://github.com/cabal-club)
|
||||||
* [BlueBubbles](https://bluebubbles.app/) - iMessage Client
|
|
||||||
* [Atlus](https://github.com/amanharwara/altus) or [WAO](https://dedg3.com/wao/) - WhatsApp Clients
|
* [Atlus](https://github.com/amanharwara/altus) or [WAO](https://dedg3.com/wao/) - WhatsApp Clients
|
||||||
* [WhatsApp-Chat-Exporter](https://github.com/KnugiHK/WhatsApp-Chat-Exporter), [2](https://wts.knugi.dev/) - WhatsApp HTML Chat Exporter / Root Required
|
* [WhatsApp-Chat-Exporter](https://github.com/KnugiHK/WhatsApp-Chat-Exporter), [2](https://wts.knugi.dev/) - WhatsApp HTML Chat Exporter / Root Required
|
||||||
* [WAIncognito](https://chromewebstore.google.com/detail/waincognito/alhmbbnlcggfcjjfihglopfopcbigmil) - Disable WhatsApp Read Receipts & Presence Updates
|
* [WAIncognito](https://chromewebstore.google.com/detail/waincognito/alhmbbnlcggfcjjfihglopfopcbigmil) - Disable WhatsApp Read Receipts & Presence Updates
|
||||||
* [TikTok Chat Reader](https://tiktok-chat-reader.zerody.one/) - Live TikTok Chat Reader
|
* [TikTok Chat Reader](https://tiktok-chat-reader.zerody.one/) - Live TikTok Chat Reader
|
||||||
* [Guildbit](https://guildbit.com/) - Voice Chat Servers
|
* [Guildbit](https://guildbit.com/) - Voice Chat Servers
|
||||||
* [Mini Video Me](https://github.com/maykbrito/mini-video-me) - Webcam Managers
|
|
||||||
* [MiroTalk](https://p2p.mirotalk.com/) / [2](https://mirotalk.up.railway.app/) or [MiroTalk SFU](https://sfu.mirotalk.com/) - Video Chat / [GitHub](https://github.com/miroslavpejic85/mirotalk)
|
* [MiroTalk](https://p2p.mirotalk.com/) / [2](https://mirotalk.up.railway.app/) or [MiroTalk SFU](https://sfu.mirotalk.com/) - Video Chat / [GitHub](https://github.com/miroslavpejic85/mirotalk)
|
||||||
* [Videolink2me](https://videolink2me.com/) - Video Chat
|
* [Videolink2me](https://videolink2me.com/) - Video Chat
|
||||||
* [Hello](https://hello.vasanthv.me/) - Video Chat / [GitHub](https://github.com/vasanthv/hello)
|
* [Hello](https://hello.vasanthv.me/) - Video Chat / [GitHub](https://github.com/vasanthv/hello)
|
||||||
|
@ -203,7 +200,7 @@
|
||||||
* [BoardReader](https://boardreader.com/), [CrowdView](https://crowdview.ai/) or [FindAForum](https://www.findaforum.net/Home/Search/) - Forum Search Engine
|
* [BoardReader](https://boardreader.com/), [CrowdView](https://crowdview.ai/) or [FindAForum](https://www.findaforum.net/Home/Search/) - Forum Search Engine
|
||||||
* [Raw Web](https://rawweb.org/) or [BlogErnity](http://www.bloggernity.com/) - Blog Search
|
* [Raw Web](https://rawweb.org/) or [BlogErnity](http://www.bloggernity.com/) - Blog Search
|
||||||
* [VHSearch](https://vhs.neocities.org/) - Neocities Search Engine
|
* [VHSearch](https://vhs.neocities.org/) - Neocities Search Engine
|
||||||
* [4chanSearch](https://4chansearch.com/) or [4search](https://4search.neocities.org/) - 4chan Search
|
* [4chanSearch](https://4chansearch.com/), [4chansearch.org](https://4chansearch.org/) or [4search](https://4search.neocities.org/) - 4chan Search
|
||||||
* [tumbex](https://www.tumbex.com/) - Tumblr Search
|
* [tumbex](https://www.tumbex.com/) - Tumblr Search
|
||||||
* [AlsoAsked](https://alsoasked.com/) - Related Search Tool
|
* [AlsoAsked](https://alsoasked.com/) - Related Search Tool
|
||||||
* [Wiby](https://wiby.org/), [2](https://wiby.me/) - Search Engine for Lightweight Web Pages
|
* [Wiby](https://wiby.org/), [2](https://wiby.me/) - Search Engine for Lightweight Web Pages
|
||||||
|
@ -251,8 +248,8 @@
|
||||||
* [Ecosia](https://www.ecosia.org/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ecosia-the-green-search/) / [Chrome](https://chromewebstore.google.com/detail/ecosia-the-search-engine/eedlgdlajadkbbjoobobefphmfkcchfk)
|
* [Ecosia](https://www.ecosia.org/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ecosia-the-green-search/) / [Chrome](https://chromewebstore.google.com/detail/ecosia-the-search-engine/eedlgdlajadkbbjoobobefphmfkcchfk)
|
||||||
* [Leta](https://leta.mullvad.net)
|
* [Leta](https://leta.mullvad.net)
|
||||||
* [Presearch](https://presearch.com/) / [GitHub](https://github.com/presearchofficial)
|
* [Presearch](https://presearch.com/) / [GitHub](https://github.com/presearchofficial)
|
||||||
* [ZincSearch](https://zincsearch-docs.zinc.dev/) / [GitHub](https://github.com/zincsearch/zincsearch)
|
* [ZincSearch](https://zincsearch-docs.zinc.dev/) / [GitHub](https://github.com/zincsearch/zincsearch) - Self-Hosted
|
||||||
* [Whoogle Search](https://github.com/benbusby/whoogle-search)
|
* [Whoogle Search](https://github.com/benbusby/whoogle-search) - Self-Hosted
|
||||||
* [Bing](https://www.bing.com/)
|
* [Bing](https://www.bing.com/)
|
||||||
* [Google](https://google.com/)
|
* [Google](https://google.com/)
|
||||||
* [Lycos](https://www.lycos.com/)
|
* [Lycos](https://www.lycos.com/)
|
||||||
|
@ -327,14 +324,15 @@
|
||||||
* ⭐ **[Flagfox](https://flagfox.wordpress.com/)** - Displays Country's Flag on Sites / [Adds Many URL Tools](https://i.ibb.co/N7Mq56Q/889730aa3863.png)
|
* ⭐ **[Flagfox](https://flagfox.wordpress.com/)** - Displays Country's Flag on Sites / [Adds Many URL Tools](https://i.ibb.co/N7Mq56Q/889730aa3863.png)
|
||||||
* ⭐ **[HTTPStatus](https://httpstatus.io/)** - Check URL Status Codes / Redirect Chains
|
* ⭐ **[HTTPStatus](https://httpstatus.io/)** - Check URL Status Codes / Redirect Chains
|
||||||
* ⭐ **[lychee](https://lychee.cli.rs/)** - URL Scanner / [GitHub](https://github.com/lycheeverse/lychee/)
|
* ⭐ **[lychee](https://lychee.cli.rs/)** - URL Scanner / [GitHub](https://github.com/lycheeverse/lychee/)
|
||||||
|
* ⭐ **[Mini QR](https://mini-qr-code-generator.vercel.app/)** / [GitHub](https://github.com/lyqht/mini-qr), [AI QRCode](https://openart.ai/apps/ai_qrcode) or [QArt Coder](https://research.swtch.com/qr/draw/) - Create Custom QR Code Art
|
||||||
|
* [barcodrod.io](https://barcodrod.io/) or [QR Code Scan](https://qrcodescan.in/) - QR Code Scanners
|
||||||
|
* [QRcodly](https://www.qrcodly.de/), [QR Code Generator](https://www.qr-code-generator.com/), [QRCode Monkey](https://www.qrcode-monkey.com/), [2QR](https://2qr.info/) or [Link to QR](https://link-to-qr.com/) - QR Code Generator for URLs / Text
|
||||||
* [ChangeDetection.io](https://github.com/dgtlmoon/changedetection.io), [urlwatch](https://thp.io/2008/urlwatch/), [Visualping](https://visualping.io/), [Changd](https://github.com/paschmann/changd) or [Follow That Page](https://www.followthatpage.com/) - Page Change Detection / Notification
|
* [ChangeDetection.io](https://github.com/dgtlmoon/changedetection.io), [urlwatch](https://thp.io/2008/urlwatch/), [Visualping](https://visualping.io/), [Changd](https://github.com/paschmann/changd) or [Follow That Page](https://www.followthatpage.com/) - Page Change Detection / Notification
|
||||||
* [Linkify Plus Plus](https://greasyfork.org/scripts/4255) - Turn Plain Text URLs Into Links
|
* [Linkify Plus Plus](https://greasyfork.org/scripts/4255) - Turn Plain Text URLs Into Links
|
||||||
* [Open Bulk URL](https://openbulkurl.com/), [Open URL](https://openurl.online/) or [OpenAllURLs](https://www.openallurls.com/) - Bulk Open URLs
|
* [Open Bulk URL](https://openbulkurl.com/), [Open URL](https://openurl.online/) or [OpenAllURLs](https://www.openallurls.com/) - Bulk Open URLs
|
||||||
* [Link Lock](https://rekulous.github.io/link-lock/) - Encrypt & Decrypt Links with Passwords
|
* [Link Lock](https://rekulous.github.io/link-lock/) - Encrypt & Decrypt Links with Passwords
|
||||||
* [scrt.link](https://scrt.link/), [Br3f](https://www.br3f.com/) or [Temporary URL](https://www.temporary-url.com/) - Temporary Single-Use Links
|
* [scrt.link](https://scrt.link/), [Br3f](https://www.br3f.com/) or [Temporary URL](https://www.temporary-url.com/) - Temporary Single-Use Links
|
||||||
* [W.A.R. Links Checker Premium](https://greasyfork.org/en/scripts/2024) - File Host Link Auto-Check
|
* [W.A.R. Links Checker Premium](https://greasyfork.org/en/scripts/2024) - File Host Link Auto-Check
|
||||||
* [AmputatorBot](https://www.amputatorbot.com/) - Remove AMP from URLs
|
|
||||||
* [Hovercode](https://hovercode.com/), [QRcodly](https://www.qrcodly.de/), [QR Code Generator](https://www.qr-code-generator.com/), [QRCode Monkey](https://www.qrcode-monkey.com/), [2QR](https://2qr.info/) or [Link to QR](https://link-to-qr.com/) - QR Code Generator for URLs / Text
|
|
||||||
* [XML-Sitemaps](https://www.xml-sitemaps.com/) - Sitemap Creator
|
* [XML-Sitemaps](https://www.xml-sitemaps.com/) - Sitemap Creator
|
||||||
* [Backlink Tool](https://backlinktool.io/) or [IndexKings](http://www.indexkings.com/) - URL Indexer
|
* [Backlink Tool](https://backlinktool.io/) or [IndexKings](http://www.indexkings.com/) - URL Indexer
|
||||||
|
|
||||||
|
@ -505,6 +503,7 @@
|
||||||
* [Adguard Temp Mail](https://adguard.com/adguard-temp-mail/overview.html) - 7 Days / 1 Day / 1 Domain
|
* [Adguard Temp Mail](https://adguard.com/adguard-temp-mail/overview.html) - 7 Days / 1 Day / 1 Domain
|
||||||
* [Tempmailo](https://tempmailo.com/) - 2 Days / 2 Days / N/A
|
* [Tempmailo](https://tempmailo.com/) - 2 Days / 2 Days / N/A
|
||||||
* [Vmail.DEV](https://vmail.dev/) - 1 Day / 1 Day / 2 Domains
|
* [Vmail.DEV](https://vmail.dev/) - 1 Day / 1 Day / 2 Domains
|
||||||
|
* [TempMail.love](https://tempmail.love/) - 1 Day / 1 Day / 1 Domain
|
||||||
* [Mail.cx](https://mail.cx/) - 1 Day / 12 Hours / 5 Domains
|
* [Mail.cx](https://mail.cx/) - 1 Day / 12 Hours / 5 Domains
|
||||||
* [BottleMail](https://bottlemail.org/) - 14 Days / 1 Domain
|
* [BottleMail](https://bottlemail.org/) - 14 Days / 1 Domain
|
||||||
* [TemporaryMail.com](https://temporarymail.com/) - 6 Hours / 6 Hours / 7 Domains
|
* [TemporaryMail.com](https://temporarymail.com/) - 6 Hours / 6 Hours / 7 Domains
|
||||||
|
@ -515,6 +514,7 @@
|
||||||
* [mail-temp.com](https://mail-temp.com/) or [emailfake.com](https://emailfake.com/) - 50+ Domains
|
* [mail-temp.com](https://mail-temp.com/) or [emailfake.com](https://emailfake.com/) - 50+ Domains
|
||||||
* [AnonymMail.net](https://anonymmail.net/) or [Mail.td](https://mail.td/) - 5 Domains
|
* [AnonymMail.net](https://anonymmail.net/) or [Mail.td](https://mail.td/) - 5 Domains
|
||||||
* [EmailOnDeck](https://www.emailondeck.com/), [EmailTemp](https://emailtemp.org/), [Haribu](https://haribu.net/), [Maildax](https://maildax.com/) or [tempmaili.com](https://tempmaili.com/) - 1 Domain
|
* [EmailOnDeck](https://www.emailondeck.com/), [EmailTemp](https://emailtemp.org/), [Haribu](https://haribu.net/), [Maildax](https://maildax.com/) or [tempmaili.com](https://tempmaili.com/) - 1 Domain
|
||||||
|
* [TMail](https://tmail.link/) - Lightweight Email
|
||||||
* [More Sites](https://rentry.org/i3ozxg6f) - More Temp Mail Sites
|
* [More Sites](https://rentry.org/i3ozxg6f) - More Temp Mail Sites
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -536,13 +536,13 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Bookmark Tools
|
# ► Browser Bookmarks
|
||||||
|
|
||||||
* [Floccus](https://floccus.org/) / [GitHub](https://github.com/floccusaddon/floccus) or [BookmarkHub](https://github.com/dudor/BookmarkHub) - Browser Bookmark Sync
|
* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** - Firefox Extension / Manager
|
||||||
|
* ⭐ **[Floccus](https://floccus.org/)** / [GitHub](https://github.com/floccusaddon/floccus) or [BookmarkHub](https://github.com/dudor/BookmarkHub) - Bookmark / Tab Sync
|
||||||
* [linkhut](https://ln.ht/), [Linkhorse](https://link.horse/) or [TinyGem](https://tinygem.org/) - Social Bookmarking
|
* [linkhut](https://ln.ht/), [Linkhorse](https://link.horse/) or [TinyGem](https://tinygem.org/) - Social Bookmarking
|
||||||
* [SuperMemory](https://supermemory.ai/) - AI Bookmark App / [GitHub](https://github.com/supermemoryai/supermemory)
|
* [SuperMemory](https://supermemory.ai/) - AI Bookmark App / [GitHub](https://github.com/supermemoryai/supermemory)
|
||||||
* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer), [Keep or Delete](https://www.soeren-hentzschel.at/firefox-webextensions/keep-or-delete-bookmarks/) or [Bookmarks Cleanup](https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl) - Bookmark Cleanup Extensions
|
* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer), [Keep or Delete](https://www.soeren-hentzschel.at/firefox-webextensions/keep-or-delete-bookmarks/) or [Bookmarks Cleanup](https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl) - Bookmark Cleanup Extensions
|
||||||
* [Bookmark Dupes](https://chromewebstore.google.com/detail/bookmark-dupes/ombpkjoelcapenbepmgifadkgpokfgfd) - Remove Duplicate Bookmarks (Chrome)
|
|
||||||
* [Auto-Sort Bookmarks](https://github.com/eric-bixby/auto-sort-bookmarks-webext) - Bookmark Sorting Extension
|
* [Auto-Sort Bookmarks](https://github.com/eric-bixby/auto-sort-bookmarks-webext) - Bookmark Sorting Extension
|
||||||
* [Default Bookmark Folder](https://github.com/teddy-gustiaux/default-bookmark-folder) - Change Default Firefox Bookmark Folder
|
* [Default Bookmark Folder](https://github.com/teddy-gustiaux/default-bookmark-folder) - Change Default Firefox Bookmark Folder
|
||||||
* [Bookmark Search Plus 2](https://github.com/aaFn/Bookmark-search-plus-2) - Search Firefox Bookmarks
|
* [Bookmark Search Plus 2](https://github.com/aaFn/Bookmark-search-plus-2) - Search Firefox Bookmarks
|
||||||
|
@ -555,8 +555,7 @@
|
||||||
|
|
||||||
## ▷ Bookmark Managers
|
## ▷ Bookmark Managers
|
||||||
|
|
||||||
* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** - Firefox Extension
|
* ⭐ **[Raindrop.io](https://raindrop.io/)** - Cross-Platform Manager
|
||||||
* ⭐ **[Raindrop.io](https://raindrop.io/)** - Web-Based Manager
|
|
||||||
* [Start.me](https://about.start.me/) - Web-Based Manager
|
* [Start.me](https://about.start.me/) - Web-Based Manager
|
||||||
* [Bort](https://bort.io/) - Web-Based Manager / Requires Dropbox
|
* [Bort](https://bort.io/) - Web-Based Manager / Requires Dropbox
|
||||||
* [wallabag](https://wallabag.org/) - Web-Based Manager
|
* [wallabag](https://wallabag.org/) - Web-Based Manager
|
||||||
|
@ -622,6 +621,7 @@
|
||||||
* ⭐ **[Dark Reader](https://darkreader.org/)**, [Midnight Lizard](https://midnight-lizard.org/) or [Custom Dark Mode](https://mybrowseraddon.com/custom-dark-mode.html) - Dark Mode
|
* ⭐ **[Dark Reader](https://darkreader.org/)**, [Midnight Lizard](https://midnight-lizard.org/) or [Custom Dark Mode](https://mybrowseraddon.com/custom-dark-mode.html) - Dark Mode
|
||||||
* ⭐ **[Zoom WE](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#zoom-page-addons)** or [Custom Page Zoom](https://mybrowseraddon.com/custom-page-zoom.html) - Improves Zoom Functionality
|
* ⭐ **[Zoom WE](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#zoom-page-addons)** or [Custom Page Zoom](https://mybrowseraddon.com/custom-page-zoom.html) - Improves Zoom Functionality
|
||||||
* ⭐ **[ScrollAnywhere](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#scrollanywhere-addons)** - Improves Scrolling Functionality
|
* ⭐ **[ScrollAnywhere](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#scrollanywhere-addons)** - Improves Scrolling Functionality
|
||||||
|
* ⭐ **[Auto Tab Discard](https://add0n.com/tab-discard.html)** or [Tab Wrangler](https://github.com/tabwrangler/tabwrangler) - Discard Inactive Tabs
|
||||||
* ⭐ **[Clipboard2File](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#clipboard2file-addons)** - Upload Images from Clipboard
|
* ⭐ **[Clipboard2File](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#clipboard2file-addons)** - Upload Images from Clipboard
|
||||||
* ⭐ **[Redirector](https://einaregilsson.com/redirector/)** - Page Redirector
|
* ⭐ **[Redirector](https://einaregilsson.com/redirector/)** - Page Redirector
|
||||||
* [CRX Viewer](https://robwu.nl/crxviewer/) - View Extension Source Code
|
* [CRX Viewer](https://robwu.nl/crxviewer/) - View Extension Source Code
|
||||||
|
@ -634,7 +634,6 @@
|
||||||
* [Custom Scrollbars](https://addons.wesleybranton.com/addon/custom-scrollbars/) - Custom Browser Scrollbars
|
* [Custom Scrollbars](https://addons.wesleybranton.com/addon/custom-scrollbars/) - Custom Browser Scrollbars
|
||||||
* [Quick Tabs](https://github.com/babyman/quick-tabs-chrome-extension) - Quickly Switch Between Current & Recently Closed Tabs
|
* [Quick Tabs](https://github.com/babyman/quick-tabs-chrome-extension) - Quickly Switch Between Current & Recently Closed Tabs
|
||||||
* [User Agent Switcher](https://webextension.org/listing/useragent-switcher.html) - Switch Your User-Agent
|
* [User Agent Switcher](https://webextension.org/listing/useragent-switcher.html) - Switch Your User-Agent
|
||||||
* [Auto Tab Discard](https://add0n.com/tab-discard.html) or [Tab Wrangler](https://github.com/tabwrangler/tabwrangler) - Discard Inactive Tabs
|
|
||||||
* [Snooze Tabs](https://github.com/bwinton/SnoozeTabs) - Temporarily Snooze Tabs
|
* [Snooze Tabs](https://github.com/bwinton/SnoozeTabs) - Temporarily Snooze Tabs
|
||||||
* [AutoRefresh](https://autorefresh.io/) or [Tab Auto Refresh](https://mybrowseraddon.com/tab-auto-refresh.html) - Refresh Tabs
|
* [AutoRefresh](https://autorefresh.io/) or [Tab Auto Refresh](https://mybrowseraddon.com/tab-auto-refresh.html) - Refresh Tabs
|
||||||
* [Tab for a Cause](https://tab.gladly.io/) - New Tabs = Charity Donation
|
* [Tab for a Cause](https://tab.gladly.io/) - New Tabs = Charity Donation
|
||||||
|
@ -670,7 +669,7 @@
|
||||||
* [Distil](https://distill.io/) or [Update Scanner](https://sneakypete81.github.io/updatescanner/) - Page Change Detection / Notification
|
* [Distil](https://distill.io/) or [Update Scanner](https://sneakypete81.github.io/updatescanner/) - Page Change Detection / Notification
|
||||||
* [Offline Mode](https://mybrowseraddon.com/offline-mode.html) - Disconnect Browser from the Internet
|
* [Offline Mode](https://mybrowseraddon.com/offline-mode.html) - Disconnect Browser from the Internet
|
||||||
* [Page Edit](https://mybrowseraddon.com/page-edit.html) - Turn Webpages into Editable Documents
|
* [Page Edit](https://mybrowseraddon.com/page-edit.html) - Turn Webpages into Editable Documents
|
||||||
* [Save Page WE](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#savepagewe) or [SingleFile](https://github.com/gildas-lormeau/SingleFile) - Save Webpages as HTML
|
* [SingleFile](https://github.com/gildas-lormeau/SingleFile) - Save Webpages as HTML
|
||||||
* [Listly](https://www.listly.io/) - Webpage to Spreadsheet Converter
|
* [Listly](https://www.listly.io/) - Webpage to Spreadsheet Converter
|
||||||
* [Favicon Detector](https://github.com/BlackGlory/favicon-detector) - Detect Website Favicons
|
* [Favicon Detector](https://github.com/BlackGlory/favicon-detector) - Detect Website Favicons
|
||||||
* [Betterviewer](https://github.com/Ademking/Betterviewer) - Image View Mode
|
* [Betterviewer](https://github.com/Ademking/Betterviewer) - Image View Mode
|
||||||
|
@ -708,7 +707,8 @@
|
||||||
* [Multi Tabs](https://addons.mozilla.org/en-US/firefox/addon/search-multi-tabs/) - Multi Tab Word Search
|
* [Multi Tabs](https://addons.mozilla.org/en-US/firefox/addon/search-multi-tabs/) - Multi Tab Word Search
|
||||||
* [Search Site WE](https://addons.mozilla.org/en-US/firefox/addon/search-site-we/) - Search Current Domain
|
* [Search Site WE](https://addons.mozilla.org/en-US/firefox/addon/search-site-we/) - Search Current Domain
|
||||||
* [Firefox Color](https://color.firefox.com/) or [SwiftTheme](https://addons.mozilla.org/en-US/firefox/addon/swifttheme/) - Custom Firefox Theme Creation
|
* [Firefox Color](https://color.firefox.com/) or [SwiftTheme](https://addons.mozilla.org/en-US/firefox/addon/swifttheme/) - Custom Firefox Theme Creation
|
||||||
* [Simple Gesture](https://github.com/utubo/firefox-simple_gesture) or [Gesturefy](https://github.com/Robbendebiene/Gesturefy) - Mouse Gestures
|
* [Adaptive Tab Bar Colour](https://github.com/easonwong-de/Adaptive-Tab-Bar-Colour) - Changes Theme to Match Site Appearances
|
||||||
|
* [Gesturefy](https://github.com/Robbendebiene/Gesturefy) - Mouse Gestures
|
||||||
* [User-Agent String Switcher](https://addons.mozilla.org/en-US/firefox/addon/user-agent-string-switcher/) - Switch Your User-Agent
|
* [User-Agent String Switcher](https://addons.mozilla.org/en-US/firefox/addon/user-agent-string-switcher/) - Switch Your User-Agent
|
||||||
* [Chrome Mask](https://addons.mozilla.org/en-US/firefox/addon/chrome-mask/) - Use Chrome-Only Sites on Firefox / [GitHub](https://github.com/denschub/chrome-mask)
|
* [Chrome Mask](https://addons.mozilla.org/en-US/firefox/addon/chrome-mask/) - Use Chrome-Only Sites on Firefox / [GitHub](https://github.com/denschub/chrome-mask)
|
||||||
* [Always Visible](https://addons.mozilla.org/en-US/firefox/addon/always-visible/) - Always Active / On-Top Window
|
* [Always Visible](https://addons.mozilla.org/en-US/firefox/addon/always-visible/) - Always Active / On-Top Window
|
||||||
|
@ -877,6 +877,7 @@
|
||||||
* [OSINT Combine](https://www.osintcombine.com/tools) - OSINT Investigation Tools
|
* [OSINT Combine](https://www.osintcombine.com/tools) - OSINT Investigation Tools
|
||||||
* [Bellingcat](https://bellingcat.gitbook.io/toolkit) - Online Investigation Toolkit
|
* [Bellingcat](https://bellingcat.gitbook.io/toolkit) - Online Investigation Toolkit
|
||||||
* [Reuser](https://rr.reuser.biz/) - OSINT Resource Discovery Toolkit
|
* [Reuser](https://rr.reuser.biz/) - OSINT Resource Discovery Toolkit
|
||||||
|
* [The Pika's OSINT ToolBox](https://github.com/passthesh3ll/The-Pika-s-OSINT-ToolBox) - General Index
|
||||||
* [Cyber Detective's OSINT Collection](https://github.com/cipher387/osint_stuff_tool_collection) - General Index
|
* [Cyber Detective's OSINT Collection](https://github.com/cipher387/osint_stuff_tool_collection) - General Index
|
||||||
* [Nixintel's OSINT Resource List](https://start.me/p/rx6Qj8/nixintel-s-osint-resource-list) - General Index
|
* [Nixintel's OSINT Resource List](https://start.me/p/rx6Qj8/nixintel-s-osint-resource-list) - General Index
|
||||||
* [Technisette's OSINT Tools](https://start.me/p/wMdQMQ/tools) - General Index
|
* [Technisette's OSINT Tools](https://start.me/p/wMdQMQ/tools) - General Index
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
* [Arch Linux Community](https://discord.gg/3m6dbPR) - Linux Discord Server
|
* [Arch Linux Community](https://discord.gg/3m6dbPR) - Linux Discord Server
|
||||||
* [Discord-Linux](https://discord.gg/discord-linux) - Linux Discord Server
|
* [Discord-Linux](https://discord.gg/discord-linux) - Linux Discord Server
|
||||||
* [Linux.org](https://linux.org/) - Linux Forum
|
* [Linux.org](https://linux.org/) - Linux Forum
|
||||||
* [ArchWiki](https://bbs.archlinux.org/) - Linux Forum
|
* [Arch Forums](https://bbs.archlinux.org/) - Linux Forum
|
||||||
* [Gentoo Forums](https://forums.gentoo.org/) - Linux Forum
|
* [Gentoo Forums](https://forums.gentoo.org/) - Linux Forum
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -91,7 +91,7 @@
|
||||||
* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME
|
* [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/) / [GitHub](https://github.com/LibreELEC/LibreELEC.tv) - Kodi-Based Operating System
|
* [CoreELEC](https://coreelec.org) / [GitHub](https://github.com/CoreELEC/CoreELEC) or [LibreELEC](https://libreelec.tv/) / [GitHub](https://github.com/LibreELEC/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)
|
* [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)
|
||||||
* [DistroSea](https://distrosea.com/) - Virtual Machine
|
* [DistroSea](https://distrosea.com/) - Cloud Virtual Machine / Allows Browsers
|
||||||
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
|
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
|
||||||
* [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Virtualization Kernel module
|
* [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Virtualization Kernel module
|
||||||
* [WebVM](https://webvm.io/) - Browser Virtual Machine / [Discord](https://discord.gg/yTNZgySKGa) / [GitHub](https://github.com/leaningtech/webvm)
|
* [WebVM](https://webvm.io/) - Browser Virtual Machine / [Discord](https://discord.gg/yTNZgySKGa) / [GitHub](https://github.com/leaningtech/webvm)
|
||||||
|
@ -312,10 +312,8 @@
|
||||||
* [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
|
||||||
* [BlueComet](https://cs.rin.ru/forum/viewtopic.php?f=20&t=142413&hilit=bluecomet) - Offline Steam DRM Bypass / DLC Unlocker
|
|
||||||
* [RetroDECK](https://retrodeck.net/) - Emulator for Steam Deck
|
* [RetroDECK](https://retrodeck.net/) - Emulator for Steam Deck
|
||||||
* [CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities) - Steam Deck Utilities
|
* [CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities) - Steam Deck Utilities
|
||||||
* [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/) - Epic Games Launcher / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher)
|
* [HeroicGamesLauncher](https://heroicgameslauncher.com/) - Epic Games Launcher / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher)
|
||||||
|
@ -410,9 +408,10 @@
|
||||||
* [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
|
||||||
|
* [iperf](https://github.com/esnet/iperf) - Network Bandwidth Test
|
||||||
* [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/) - Media Server
|
||||||
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) or [DockSTARTer](https://github.com/GhostWriters/DockSTARTer) - Automated Docker Media Server Setups
|
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) or [DockSTARTer](https://github.com/GhostWriters/DockSTARTer) - Automated Docker Media Server Setups
|
||||||
* [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy
|
* [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy
|
||||||
* [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container
|
* [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container
|
||||||
|
@ -534,17 +533,9 @@
|
||||||
* 🌐 **[The Terminal Directory](https://termui.sh/)** - List of Terminal Emulators
|
* 🌐 **[The Terminal Directory](https://termui.sh/)** - List of Terminal Emulators
|
||||||
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index
|
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index
|
||||||
* ⭐ **[gibMacOS](https://github.com/corpnewt/gibMacOS)** or [Mist](https://github.com/ninxsoft/Mist) - Download macOS
|
* ⭐ **[gibMacOS](https://github.com/corpnewt/gibMacOS)** or [Mist](https://github.com/ninxsoft/Mist) - Download macOS
|
||||||
* ⭐ **[Readdle](https://readdle.com/documents)** - Multipurpose File Tool
|
|
||||||
* ⭐ **[PeaZip](https://peazip.github.io/peazip-macos.html)**, [The Unarchiver](https://theunarchiver.com/), [unxip](https://github.com/saagarjha/unxip) or [Keka](https://www.keka.io/) - File Archivers
|
|
||||||
* ⭐ **[qBittorrent](https://www.qbittorrent.org/)** - Torrent Client / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_qbittorrent_tools)
|
|
||||||
* ⭐ **[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/)**, [MagicCap](https://magiccap.me/) or [CleanShot](https://cleanshot.com/) - Screenshot Tools
|
* ⭐ **[shottr](https://shottr.cc/)**, [MagicCap](https://magiccap.me/) or [CleanShot](https://cleanshot.com/) - Screenshot Tools
|
||||||
* ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App
|
* ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App
|
||||||
* ⭐ **[Alfred](https://www.alfredapp.com/)**, [Albert](https://albertlauncher.github.io/), [Quicksilver](https://qsapp.com/), [SOL](https://sol.ospfranco.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
|
|
||||||
* ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac
|
|
||||||
* [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools
|
|
||||||
* [Shiru](https://github.com/RockinChaos/Shiru) - Anime Torrent Streaming
|
|
||||||
* [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader
|
* [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader
|
||||||
* [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
|
||||||
* [Sky.app](https://github.com/jcsalterego/Sky.app) - Bluesky Client
|
* [Sky.app](https://github.com/jcsalterego/Sky.app) - Bluesky Client
|
||||||
|
@ -554,41 +545,17 @@
|
||||||
* [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker
|
* [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker
|
||||||
* [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
|
||||||
* [foobar2000](https://www.foobar2000.org/mac) or [VOX Mac Music Player](https://vox.rocks/mac-music-player) - Audio Players
|
|
||||||
* [Silicio](https://apps.apple.com/us/app/silicio-mini-player/id933627574) - Audio 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
|
|
||||||
* [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://lima-vm.io/) - 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
|
|
||||||
* [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), [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
|
|
||||||
* [Hot](https://github.com/macmade/hot) - CPU Monitor
|
|
||||||
* [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer
|
|
||||||
* [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress
|
|
||||||
* [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers
|
|
||||||
* [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
|
||||||
* [Bruji](https://www.bruji.com/) - Media Cataloging Software Suite
|
|
||||||
* [Superfile](https://github.com/yorukot/superfile) - File Explorer / Managers
|
|
||||||
* [OSXFuse](https://osxfuse.github.io/) - Mac File Integration
|
|
||||||
* [JDOwnloader2](https://jdownloader.org/jdownloader2) - File Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
|
||||||
* [Go Speed](https://gopeed.com/) - File 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)
|
|
||||||
* [Progressive Downloader](https://macpsd.net/) - File Download Manager
|
|
||||||
* [Transnomino](https://www.transnomino.com/) or [Riffo](https://riffo.ai/rename) - Bulk File / Folder Renaming
|
|
||||||
* [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc)
|
|
||||||
* [Adobe Downloader](https://github.com/X1a0He/Adobe-Downloader/blob/main/readme-en.md) - Adobe Product Downloader
|
* [Adobe Downloader](https://github.com/X1a0He/Adobe-Downloader/blob/main/readme-en.md) - Adobe Product Downloader
|
||||||
* [Adobe Creative Cloud](https://rentry.co/FMHYBase64#mac-adobe-cc) - Adobe CC Guides
|
* [Adobe Creative Cloud](https://rentry.co/FMHYBase64#mac-adobe-cc) - 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 macOS](https://ss64.com/mac/) - macOS Bash Commands
|
* [ss64 macOS](https://ss64.com/mac/) - macOS Bash Commands
|
||||||
* [Browserosaurus](https://browserosaurus.com/) - Browser Prompter
|
|
||||||
* [Orion](https://kagi.com/orion/) - Browser with Chrome + Firefox Extension Support / [Discord](https://discord.gg/Yk8Aj8AxGw)
|
|
||||||
* [KeePassXC](https://keepassxc.org/download/#macos) or [Strongbox](https://strongboxsafe.com/) - Password Managers
|
|
||||||
* [Maccy](https://maccy.app/), [ClipBook](https://clipbook.app/), [clipboard-history](https://github.com/SUPERCILEX/clipboard-history) or [TRex](https://trex.ameba.co/) - Clipboard Managers
|
|
||||||
* [Left on Read](https://leftonread.me/) - iMessage Client
|
* [Left on Read](https://leftonread.me/) - iMessage Client
|
||||||
* [MacBing](https://goodsnooze.gumroad.com/l/macbing), [LlamaChat](https://www.llamachat.app/) or [Mollama](https://apps.apple.com/app/mollama/id6736948278) - AI Chatbots
|
* [MacBing](https://goodsnooze.gumroad.com/l/macbing), [LlamaChat](https://www.llamachat.app/) or [Mollama](https://apps.apple.com/app/mollama/id6736948278) - AI Chatbots
|
||||||
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
|
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
|
||||||
|
@ -598,72 +565,15 @@
|
||||||
* [Agenda](https://agenda.com/) - Mac Notes Organizer / [Forum](https://agenda.community/)
|
* [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
|
||||||
* [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager
|
* [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager
|
||||||
* [ElectronMail](https://github.com/vladimiry/ElectronMail) - Email Clients
|
|
||||||
* [Microsoft-Office-For-MacOS](https://github.com/alsyundawy/Microsoft-Office-For-MacOS) - Office Suites
|
* [Microsoft-Office-For-MacOS](https://github.com/alsyundawy/Microsoft-Office-For-MacOS) - Office Suites
|
||||||
* [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
|
|
||||||
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
|
|
||||||
* [LinearMouse](https://linearmouse.app/) or [MacMouseFix](https://macmousefix.com/) - Mouse Remapping
|
|
||||||
* [Scroll Reverser](https://pilotmoon.com/scrollreverser/) - Per-Device Scroll Settings
|
|
||||||
* [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application
|
|
||||||
* [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer
|
|
||||||
* [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control
|
|
||||||
* [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause
|
|
||||||
* [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator
|
|
||||||
* [AirBattery](https://github.com/lihaoyun6/AirBattery) or [CoconutBattery](https://www.coconut-flavour.com/coconutbattery/) - Device Battery Trackers
|
|
||||||
* [Macs Fan Control](https://github.com/crystalidea/macs-fan-control) - Fan Controller
|
|
||||||
* [Hammerspoon](https://www.hammerspoon.org/) or [Bunch](https://bunchapp.co/) - Desktop Automation
|
* [Hammerspoon](https://www.hammerspoon.org/) or [Bunch](https://bunchapp.co/) - Desktop Automation
|
||||||
* [MacScripter](https://www.macscripter.net/) - Automation Forum
|
* [MacScripter](https://www.macscripter.net/) - Automation Forum
|
||||||
* [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices
|
|
||||||
* [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)
|
|
||||||
* [Übersicht](https://tracesof.net/uebersicht/) - System Command Widgets
|
|
||||||
* [Itsycal](https://www.mowglii.com/itsycal/) - Menu Bar Calendar
|
|
||||||
* [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)
|
|
||||||
* [MacLaunch](https://github.com/hazcod/maclaunch) - Manage Startup Items
|
|
||||||
* [Ice](https://icemenubar.app/) - Menu Bar Manager / [GitHub](https://github.com/jordanbaird/Ice)
|
|
||||||
* [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches
|
|
||||||
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
|
|
||||||
* [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevent Sleep Mode
|
|
||||||
* [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/), [Loop](https://github.com/MrKai77/Loop), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers
|
|
||||||
* [Later](https://getlater.app/) - Restore App Sessions / [GitHub](https://github.com/alyssaxuu/later)
|
* [Later](https://getlater.app/) - Restore App Sessions / [GitHub](https://github.com/alyssaxuu/later)
|
||||||
* [AlDente](https://apphousekitchen.com/) - Charging Manager
|
|
||||||
* [VMware](https://rentry.co/FMHYBase64#vmware) - Virtual Machine
|
* [VMware](https://rentry.co/FMHYBase64#vmware) - Virtual Machine
|
||||||
* [Tart](https://tart.run/) - Virtual Machine Manager . [GitHub](https://github.com/cirruslabs/tart)
|
* [Tart](https://tart.run/) - Virtual Machine Manager . [GitHub](https://github.com/cirruslabs/tart)
|
||||||
* [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/) - Code Editors
|
||||||
* [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller
|
|
||||||
* [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager
|
|
||||||
* [Pictogram](https://pictogramapp.com/), [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom App Icons
|
|
||||||
* [Tintd](https://www.tintd.app/) or [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
|
||||||
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
|
|
||||||
* [wallpapper](https://github.com/mczachurski/wallpapper) or [Equinox](https://equinoxmac.com/) - Dynamic Wallpaper Creators
|
|
||||||
* [Plash](https://sindresorhus.com/plash) - Use Website as Wallpaper
|
|
||||||
* [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
|
|
||||||
* [GrayJay](https://grayjay.app/desktop/) - Combines YouTube, Twitch, Rumble, etc.
|
* [GrayJay](https://grayjay.app/desktop/) - Combines YouTube, Twitch, Rumble, etc.
|
||||||
* [IINA](https://iina.io/) - Video Player
|
|
||||||
* [Yattee](https://github.com/yattee/yattee) - YouTube Player
|
|
||||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
|
||||||
* [Gifski](https://sindresorhus.com/gifski) - Image to GIF Converter / [GitHub](https://github.com/sindresorhus/Gifski)
|
|
||||||
* [Darkroom](https://apps.apple.com/us/app/darkroom-photo-video-editor/id953286746) - Image / Video Editor
|
|
||||||
* [Cap](https://cap.so/), [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders
|
|
||||||
* [Garageband](https://apps.apple.com/us/app/garageband/id682658836?mt=12) - Audio Editor
|
|
||||||
* [EQMac](https://eqmac.app/) - Audio Equalizer
|
|
||||||
* [The Levelator](https://archive.org/details/conversationsnetwork_org-levelator) - Automatic Audio Level Adjustments
|
|
||||||
* [Guitarix](https://guitarix.org/) - Virtual Guitar Amplifier / [Plugins](https://github.com/brummer10/GxPlugins.lv2)
|
|
||||||
* [XLD](https://sourceforge.net/projects/xld/) - Lossless Audio Transcoder
|
|
||||||
* [BlackHole](https://github.com/ExistentialAudio/BlackHole) - Pass Audio to Apps
|
|
||||||
* [Cuterdio](https://cuterdio.com/en) - 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
|
|
||||||
* [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors
|
|
||||||
* [ImageOptim](https://imageoptim.com/mac) - Image Optimization
|
|
||||||
* [Perspec](https://github.com/ad-si/Perspec) - Correct Perspective of Images
|
|
||||||
* [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), [CHARL-E](https://www.charl-e.com/) 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
|
||||||
|
@ -698,7 +608,7 @@
|
||||||
* [Haxmac](https://haxmac.cc/)
|
* [Haxmac](https://haxmac.cc/)
|
||||||
* [Pure Mac](https://www.pure-mac.com/)
|
* [Pure Mac](https://www.pure-mac.com/)
|
||||||
* [Mac Torrents](https://www.torrentmac.net/)
|
* [Mac Torrents](https://www.torrentmac.net/)
|
||||||
* [Macked](https://macked.app/)
|
* [MacKed](https://macked.app/)
|
||||||
* [InsMac](https://insmac.org/)
|
* [InsMac](https://insmac.org/)
|
||||||
* [MacX](https://macx.ws/)
|
* [MacX](https://macx.ws/)
|
||||||
* [WebCatalog](https://webcatalog.io/)
|
* [WebCatalog](https://webcatalog.io/)
|
||||||
|
@ -708,6 +618,48 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ Mac Video
|
||||||
|
|
||||||
|
* [IINA](https://iina.io/) - Video Player
|
||||||
|
* [Shiru](https://github.com/RockinChaos/Shiru) - Anime Torrent Streaming
|
||||||
|
* [Yattee](https://github.com/yattee/yattee) - YouTube Player
|
||||||
|
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
||||||
|
* [Cap](https://cap.so/), [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ Mac Audio
|
||||||
|
|
||||||
|
* ⭐ **[SpotX-Bash](https://github.com/SpotX-Official/SpotX-Bash)** or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers
|
||||||
|
* [foobar2000](https://www.foobar2000.org/mac) or [VOX Mac Music Player](https://vox.rocks/mac-music-player) - Audio Players
|
||||||
|
* [Silicio](https://apps.apple.com/us/app/silicio-mini-player/id933627574) - Audio 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
|
||||||
|
* [Garageband](https://apps.apple.com/us/app/garageband/id682658836?mt=12) - Audio Editor
|
||||||
|
* [EQMac](https://eqmac.app/) - Audio Equalizer
|
||||||
|
* [The Levelator](https://archive.org/details/conversationsnetwork_org-levelator) - Automatic Audio Level Adjustments
|
||||||
|
* [Guitarix](https://guitarix.org/) - Virtual Guitar Amplifier / [Plugins](https://github.com/brummer10/GxPlugins.lv2)
|
||||||
|
* [XLD](https://sourceforge.net/projects/xld/) - Lossless Audio Transcoder
|
||||||
|
* [BlackHole](https://github.com/ExistentialAudio/BlackHole) - Pass Audio to Apps
|
||||||
|
* [Cuterdio](https://cuterdio.com/en) - 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
|
||||||
|
* [Buzz](https://github.com/chidiwilliams/buzz) - Audio Transcription
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ Mac Images
|
||||||
|
|
||||||
|
* [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
|
||||||
|
* [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors
|
||||||
|
* [ImageOptim](https://imageoptim.com/mac) - Image Optimization
|
||||||
|
* [Perspec](https://github.com/ad-si/Perspec) - Correct Perspective of Images
|
||||||
|
* [Draw Things](https://apps.apple.com/us/app/draw-things-ai-generation/id6444050820) - AI Image Drawing Tool
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
## ▷ Mac Gaming
|
## ▷ Mac Gaming
|
||||||
|
|
||||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Mac Games
|
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Mac Games
|
||||||
|
@ -723,13 +675,14 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Mac Adblock / Privacy
|
# ► Mac Tools
|
||||||
|
|
||||||
|
## ▷ 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_password_privacy_.2F_2fa)**
|
||||||
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
||||||
* ⭐ **[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/SpotX-Official/SpotX-Bash)** or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers
|
|
||||||
* [macOS Adblock Guide](https://avieshek.wordpress.com/2024/07/07/how-to-filter-ads-and-block-popups-on-iphone-and-macos/) - Adguard + Safari Adblock Guide
|
* [macOS Adblock Guide](https://avieshek.wordpress.com/2024/07/07/how-to-filter-ads-and-block-popups-on-iphone-and-macos/) - Adguard + Safari Adblock Guide
|
||||||
* [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
|
||||||
|
@ -754,3 +707,81 @@
|
||||||
* [OpenVPN](https://tunnelblick.net/) or [Passepartout](https://passepartoutvpn.app/) - VPN Tunnel
|
* [OpenVPN](https://tunnelblick.net/) or [Passepartout](https://passepartoutvpn.app/) - VPN Tunnel
|
||||||
* [MailTrackerBlocker](https://apparition47.github.io/MailTrackerBlocker/) - Privacy-Based Email Client
|
* [MailTrackerBlocker](https://apparition47.github.io/MailTrackerBlocker/) - Privacy-Based Email Client
|
||||||
* [Damus](https://damus.io/) - Encrypted Messaging App
|
* [Damus](https://damus.io/) - Encrypted Messaging App
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ Mac Internet
|
||||||
|
|
||||||
|
* ⭐ **[qBittorrent](https://www.qbittorrent.org/)** - Torrent Client / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_qbittorrent_tools)
|
||||||
|
* [KeePassXC](https://keepassxc.org/download/#macos) or [Strongbox](https://strongboxsafe.com/) - Password Managers
|
||||||
|
* [What Route](https://whatroute.net/) - Network Diagnostic Tool
|
||||||
|
* [ElectronMail](https://github.com/vladimiry/ElectronMail) - Email Clients
|
||||||
|
* [Browserosaurus](https://browserosaurus.com/) - Browser Prompter
|
||||||
|
* [Orion](https://kagi.com/orion/) - Browser with Chrome + Firefox Extension Support / [Discord](https://discord.gg/Yk8Aj8AxGw)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ System Tools
|
||||||
|
|
||||||
|
* ⭐ **[Alfred](https://www.alfredapp.com/)**, [Albert](https://albertlauncher.github.io/), [Quicksilver](https://qsapp.com/), [SOL](https://sol.ospfranco.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
|
||||||
|
* ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac
|
||||||
|
* [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools
|
||||||
|
* [Conky](https://conky.cc) / [Colors](https://github.com/helmuthdu/conky_colors), [eul](https://github.com/gao-sun/eul), [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
|
||||||
|
* [Hot](https://github.com/macmade/hot) - CPU Monitor
|
||||||
|
* [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer
|
||||||
|
* [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers
|
||||||
|
* [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller
|
||||||
|
* [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager
|
||||||
|
* [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
|
||||||
|
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
|
||||||
|
* [LinearMouse](https://linearmouse.app/) or [MacMouseFix](https://macmousefix.com/) - Mouse Remapping
|
||||||
|
* [Scroll Reverser](https://pilotmoon.com/scrollreverser/) - Per-Device Scroll Settings
|
||||||
|
* [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application
|
||||||
|
* [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer
|
||||||
|
* [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control
|
||||||
|
* [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause
|
||||||
|
* [AlDente](https://apphousekitchen.com/) - Charging Manager
|
||||||
|
* [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator
|
||||||
|
* [AirBattery](https://github.com/lihaoyun6/AirBattery) or [CoconutBattery](https://www.coconut-flavour.com/coconutbattery/) - Device Battery Trackers
|
||||||
|
* [Macs Fan Control](https://github.com/crystalidea/macs-fan-control) - Fan Controller
|
||||||
|
* [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices
|
||||||
|
* [Touché](https://redsweater.com/touche/) - Touch Bar Simulator
|
||||||
|
* [USBMap](https://github.com/corpnewt/USBMap) - Map macOS USB Ports
|
||||||
|
* [Actions](https://sindresorhus.com/actions) - Additional Shortcuts App Actions
|
||||||
|
* [pock](https://pock.app/) - Touch Bar Widget Manager / [GitHub](https://github.com/pock/pock)
|
||||||
|
* [Übersicht](https://tracesof.net/uebersicht/) - System Command Widgets
|
||||||
|
* [Itsycal](https://www.mowglii.com/itsycal/) - Menu Bar Calendar
|
||||||
|
* [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)
|
||||||
|
* [MacLaunch](https://github.com/hazcod/maclaunch) - Manage Startup Items
|
||||||
|
* [Ice](https://icemenubar.app/) - Menu Bar Manager / [GitHub](https://github.com/jordanbaird/Ice)
|
||||||
|
* [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches
|
||||||
|
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
|
||||||
|
* [KeepingYouAwake](https://github.com/newmarcel/KeepingYouAwake) - Prevent Sleep Mode
|
||||||
|
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/) / [GitHub](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Loop](https://github.com/MrKai77/Loop), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers
|
||||||
|
* [Maccy](https://maccy.app/), [ClipBook](https://clipbook.app/), [clipboard-history](https://github.com/SUPERCILEX/clipboard-history) or [TRex](https://trex.ameba.co/) - Clipboard Managers
|
||||||
|
* [Pictogram](https://pictogramapp.com/), [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom App Icons
|
||||||
|
* [Tintd](https://www.tintd.app/) or [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
||||||
|
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
|
||||||
|
* [wallpapper](https://github.com/mczachurski/wallpapper) or [Equinox](https://equinoxmac.com/) - Dynamic Wallpaper Creators
|
||||||
|
* [Plash](https://sindresorhus.com/plash) - Use Website as Wallpaper
|
||||||
|
* [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
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ File Tools
|
||||||
|
|
||||||
|
* ⭐ **[PeaZip](https://peazip.github.io/peazip-macos.html)**, [The Unarchiver](https://theunarchiver.com/), [unxip](https://github.com/saagarjha/unxip) or [Keka](https://www.keka.io/) - File Archivers
|
||||||
|
* ⭐ **[Readdle](https://readdle.com/documents)** - Multipurpose File Tool
|
||||||
|
* [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress
|
||||||
|
* [Bruji](https://www.bruji.com/) - Media Cataloging Software Suite
|
||||||
|
* [Superfile](https://github.com/yorukot/superfile) - File Explorer / Managers
|
||||||
|
* [OSXFuse](https://osxfuse.github.io/) - Mac File Integration
|
||||||
|
* [JDOwnloader2](https://jdownloader.org/jdownloader2) - File Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||||
|
* [Go Speed](https://gopeed.com/) - File 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)
|
||||||
|
* [Progressive Downloader](https://macpsd.net/) - File Download Manager
|
||||||
|
* [Transnomino](https://www.transnomino.com/) or [Riffo](https://riffo.ai/rename) - Bulk File / Folder Renaming
|
||||||
|
* [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc)
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
* [Track Awesome List](https://www.trackawesomelist.com/) - Daily Awesome List Updates
|
* [Track Awesome List](https://www.trackawesomelist.com/) - Daily Awesome List Updates
|
||||||
* [Curlie](https://curlie.org/) - Topic Directory
|
* [Curlie](https://curlie.org/) - Topic Directory
|
||||||
* [ooh.directory](https://ooh.directory/) - Blog Directory
|
* [ooh.directory](https://ooh.directory/) - Blog Directory
|
||||||
* [StatsCrop](https://www.statscrop.com/websites/top-sites/), [xRanks](https://xranks.com/), [DirtyWarez](https://dirtywarez.org/), [Start.me Stats](https://start.me/sites/int), [HypeStat](https://hypestat.com/) or [CuteStat](https://www.cutestat.com/) - Site Rankings & Stats
|
* [StatsCrop](https://www.statscrop.com/websites/top-sites/), [xRanks](https://xranks.com/), [Start.me Stats](https://start.me/sites/int), [HypeStat](https://hypestat.com/) or [CuteStat](https://www.cutestat.com/) - Site Rankings & Stats
|
||||||
* [findPWA](https://findpwa.com/), [Store.app](https://store.app/), [SaaS Discovery](https://saasdiscovery.com/) or [Electron](https://www.electronjs.org/apps) - Web App Indexes
|
* [findPWA](https://findpwa.com/), [Store.app](https://store.app/), [SaaS Discovery](https://saasdiscovery.com/) or [Electron](https://www.electronjs.org/apps) - Web App Indexes
|
||||||
* [SmartLinks](https://smartlinks.org/index.html) - Website Directory
|
* [SmartLinks](https://smartlinks.org/index.html) - Website Directory
|
||||||
* [OneMillionScreenshots](https://onemillionscreenshots.com/) - Website Snapshot Map
|
* [OneMillionScreenshots](https://onemillionscreenshots.com/) - Website Snapshot Map
|
||||||
|
@ -63,12 +63,12 @@
|
||||||
# ► Free Stuff
|
# ► Free Stuff
|
||||||
|
|
||||||
* ⭐ **[OneHack](https://onehack.us/)** - Giveaway Community / [Telegram](https://t.me/Official_OneHack)
|
* ⭐ **[OneHack](https://onehack.us/)** - Giveaway Community / [Telegram](https://t.me/Official_OneHack)
|
||||||
|
* [FreeCycle](https://www.freecycle.org/), [TrashNothing](https://trashnothing.com/) or [Freegle](https://www.ilovefreegle.org/) - Free Stuff Exchange / Gifting Communities
|
||||||
* [/r/GooglePlayDeals](https://reddit.com/r/googleplaydeals) - Free / Cheap APKs / [Extension](https://github.com/a-ton/gpd-bot)
|
* [/r/GooglePlayDeals](https://reddit.com/r/googleplaydeals) - Free / Cheap APKs / [Extension](https://github.com/a-ton/gpd-bot)
|
||||||
* [App Sales](https://www.app-sales.net/) - Free / Cheap APKs
|
* [App Sales](https://www.app-sales.net/) - Free / Cheap APKs
|
||||||
* [Play-Deals](https://github.com/psuzn/Play-Deals) - Free / Cheap APKs
|
* [Play-Deals](https://github.com/psuzn/Play-Deals) - Free / Cheap APKs
|
||||||
* [/r/AppHookup](https://www.reddit.com/r/AppHookup/) - Free / Cheap Software & APKs
|
* [/r/AppHookup](https://www.reddit.com/r/AppHookup/) - Free / Cheap Software & APKs
|
||||||
* [AppRaven](https://appraven.net/) - iOS Apps
|
* [AppRaven](https://appraven.net/) - iOS Apps
|
||||||
* [FreeCycle](https://www.freecycle.org/) or [Freegle](https://www.ilovefreegle.org/) - People Stuff Exchange
|
|
||||||
* [BAEN](https://www.baen.com/catalog/category/view/s/free-library/id/2012) - Books
|
* [BAEN](https://www.baen.com/catalog/category/view/s/free-library/id/2012) - Books
|
||||||
* [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals
|
* [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals
|
||||||
* [Dolly Parton's Imagination Library](https://imaginationlibrary.com/) - Book Gifting Program (For Children)
|
* [Dolly Parton's Imagination Library](https://imaginationlibrary.com/) - Book Gifting Program (For Children)
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
* 🌐 **[MapOfTheBest](https://mapofthebest.com/)** - Top Restaurant List
|
* 🌐 **[MapOfTheBest](https://mapofthebest.com/)** - Top Restaurant List
|
||||||
* ↪️ **[Food Storage Tips](https://i.redd.it/qmcas4yuc2w81.png)** / [2](https://i.ibb.co/SKq3GT7/ca6f633c898b.png)
|
* ↪️ **[Food Storage Tips](https://i.redd.it/qmcas4yuc2w81.png)** / [2](https://i.ibb.co/SKq3GT7/ca6f633c898b.png)
|
||||||
* ⭐ **[Baking Calculators](https://bakingcalculators.com/)** - Measurement System Conversion Calculators
|
* ⭐ **[Baking Calculators](https://bakingcalculators.com/)** - Measurement System Conversion Calculators
|
||||||
* ⭐ **[Grocy](https://grocy.info/)** / [Android](https://patrickzedler.com/grocy/), [Listonic](https://new.app.listonic.com/en) or [Kitchen Owl](https://f-droid.org/en/packages/com.tombursch.kitchenowl/) - Grocery Managers
|
* ⭐ **[Grocy](https://grocy.info/)** / [Android](https://patrickzedler.com/grocy/) / [Subeddit](https://www.reddit.com/r/grocy) / [GitHub](https://github.com/grocy/grocy), [Listonic](https://new.app.listonic.com/en) or [KitchenOwl](https://kitchenowl.org/) / [GitHub](https://github.com/TomBursch/kitchenowl) - Grocery Managers
|
||||||
* ⭐ **[Sporked](https://sporked.com/)** - Packaged Food Reviews
|
* ⭐ **[Sporked](https://sporked.com/)** - Packaged Food Reviews
|
||||||
* ⭐ **[Still Tasty](https://www.stilltasty.com/)** or [EatByDate](https://www.eatbydate.com/) - Shelf Life Guides
|
* ⭐ **[Still Tasty](https://www.stilltasty.com/)** or [EatByDate](https://www.eatbydate.com/) - Shelf Life Guides
|
||||||
* ⭐ **[OpenTable](https://www.opentable.com/)** - Restaurant Reservation Search
|
* ⭐ **[OpenTable](https://www.opentable.com/)** - Restaurant Reservation Search
|
||||||
|
@ -182,7 +182,7 @@
|
||||||
|
|
||||||
* ↪️ **[Raspberry Pi Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_raspberry_pi)**
|
* ↪️ **[Raspberry Pi Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_raspberry_pi)**
|
||||||
* ⭐ **[Home Assistant](https://www.home-assistant.io/)** - Home Assistant / IoT / [GUI](https://github.com/LAB02-Research/HASS.Agent)
|
* ⭐ **[Home Assistant](https://www.home-assistant.io/)** - Home Assistant / IoT / [GUI](https://github.com/LAB02-Research/HASS.Agent)
|
||||||
* ⭐ **[Grocy](https://grocy.info/)** - Grocery / Household Management Tool
|
* ⭐ **[Grocy](https://grocy.info/)** - Grocery / Household Management Tool / [Android](https://patrickzedler.com/grocy/) / [Subeddit](https://www.reddit.com/r/grocy) / [GitHub](https://github.com/grocy/grocy)
|
||||||
* [OpenHab](https://www.openhab.org/) - Home Assistant / IoT / [Setup](https://github.com/openhab/openhabian) / [Mobile](https://github.com/openhab/openhab-android)
|
* [OpenHab](https://www.openhab.org/) - Home Assistant / IoT / [Setup](https://github.com/openhab/openhabian) / [Mobile](https://github.com/openhab/openhab-android)
|
||||||
* [Esphome](https://esphome.io/) - Home Assistant / IoT
|
* [Esphome](https://esphome.io/) - Home Assistant / IoT
|
||||||
* [ioBroker](https://www.iobroker.net/) - Home Assistant / IoT / [Discord](https://discord.com/invite/HwUCwsH) / [GitHub](https://github.com/ioBroker/ioBroker)
|
* [ioBroker](https://www.iobroker.net/) - Home Assistant / IoT / [Discord](https://discord.com/invite/HwUCwsH) / [GitHub](https://github.com/ioBroker/ioBroker)
|
||||||
|
@ -206,6 +206,7 @@
|
||||||
* ⭐ **[/r/Whatsthisplant](https://www.reddit.com/r/whatsthisplant/)** - Plant Identification Communities
|
* ⭐ **[/r/Whatsthisplant](https://www.reddit.com/r/whatsthisplant/)** - Plant Identification Communities
|
||||||
* [PictureThis](https://www.picturethisai.com/) / [Premium](https://forum.mobilism.org/search.php?keywords=picturethis&terms=all&author=&sc=1&sf=titleonly&sr=topics&sk=t&sd=d&st=0&ch=300&t=0&submit=Search) or [Pl@ntNet](https://identify.plantnet.org/) - Plant Identification Tools / [Android](https://play.google.com/store/apps/details?id=cn.danatech.xingseus) / [iOS](https://apps.apple.com/us/app/picturethis-plant-identifier/id1252497129)
|
* [PictureThis](https://www.picturethisai.com/) / [Premium](https://forum.mobilism.org/search.php?keywords=picturethis&terms=all&author=&sc=1&sf=titleonly&sr=topics&sk=t&sd=d&st=0&ch=300&t=0&submit=Search) or [Pl@ntNet](https://identify.plantnet.org/) - Plant Identification Tools / [Android](https://play.google.com/store/apps/details?id=cn.danatech.xingseus) / [iOS](https://apps.apple.com/us/app/picturethis-plant-identifier/id1252497129)
|
||||||
* [WildFlowerSearch](https://wildflowersearch.org/) - Flower Identifier
|
* [WildFlowerSearch](https://wildflowersearch.org/) - Flower Identifier
|
||||||
|
* [Permapeople](https://permapeople.org/) - Garden Plant Info
|
||||||
* [How Many Plants](https://howmanyplants.com/) - House Plant Information
|
* [How Many Plants](https://howmanyplants.com/) - House Plant Information
|
||||||
* [Florae](https://github.com/aeri/Florae) or [Plant-it](https://plant-it.org/) / [GitHub](https://github.com/MDeLuise/plant-it) - Plant Care Reminders
|
* [Florae](https://github.com/aeri/Florae) or [Plant-it](https://plant-it.org/) / [GitHub](https://github.com/MDeLuise/plant-it) - Plant Care Reminders
|
||||||
* [WorldOfSucculents](https://worldofsucculents.com/) - Succulent Database
|
* [WorldOfSucculents](https://worldofsucculents.com/) - Succulent Database
|
||||||
|
@ -226,12 +227,12 @@
|
||||||
|
|
||||||
* ↪️ **[Concerts / Live Shows](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio/#wiki_.25B7_concerts_.2F_live_shows)**
|
* ↪️ **[Concerts / Live Shows](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio/#wiki_.25B7_concerts_.2F_live_shows)**
|
||||||
* ⭐ **[Atlas Obscura](https://www.atlasobscura.com/)** / [Mobile](https://app.atlasobscura.com/), [Turas](https://turas.app/), [CountryReports](https://www.countryreports.org/), [Wikivoyage](https://www.wikivoyage.org), [WikiTravel](https://wikitravel.org/) or [Wanderlog](https://wanderlog.com/guides) - Travel Guides
|
* ⭐ **[Atlas Obscura](https://www.atlasobscura.com/)** / [Mobile](https://app.atlasobscura.com/), [Turas](https://turas.app/), [CountryReports](https://www.countryreports.org/), [Wikivoyage](https://www.wikivoyage.org), [WikiTravel](https://wikitravel.org/) or [Wanderlog](https://wanderlog.com/guides) - Travel Guides
|
||||||
* ⭐ **[JourneyPlan](https://journeyplan.co)**, [TravelPlan](https://www.travelplan-ai.com/#get-trip), [Holiwise](https://www.holiwise.com) or [Eddy](https://chat.eddytravels.com/) - Trip Planning
|
|
||||||
* ⭐ **[Borderless](https://borderless.safetywing.com/)** - Travel Restrictions Guide
|
* ⭐ **[Borderless](https://borderless.safetywing.com/)** - Travel Restrictions Guide
|
||||||
* ⭐ **[MapChecking](https://www.mapchecking.com/)** - Crowd Size Estimation
|
* ⭐ **[MapChecking](https://www.mapchecking.com/)** - Crowd Size Estimation
|
||||||
* ⭐ **[Gas Price Map](https://www.gasbuddy.com/gaspricemap)** - US Gas Prices
|
* ⭐ **[Gas Price Map](https://www.gasbuddy.com/gaspricemap)** - US Gas Prices
|
||||||
* ⭐ **[Parkopedia](https://www.parkopedia.com/)** - Car Parking Locations and Prices
|
* ⭐ **[Parkopedia](https://www.parkopedia.com/)** - Car Parking Locations and Prices
|
||||||
* ⭐ **[Refuge Restrooms](https://www.refugerestrooms.org/)** - Find Public Restrooms
|
* ⭐ **[Refuge Restrooms](https://www.refugerestrooms.org/)** - Find Public Restrooms
|
||||||
|
* [TravelPlan](https://www.travelplan-ai.com/#get-trip), [Holiwise](https://www.holiwise.com) or [Eddy](https://chat.eddytravels.com/) - Trip Planning
|
||||||
* [Packdensack](https://packdensack.com/) - Travel Packing List Generator
|
* [Packdensack](https://packdensack.com/) - Travel Packing List Generator
|
||||||
* [Roadside America](https://www.roadsideamerica.com/) or [RoadTrippers](https://roadtrippers.com/) - Roadside Attraction Guides
|
* [Roadside America](https://www.roadsideamerica.com/) or [RoadTrippers](https://roadtrippers.com/) - Roadside Attraction Guides
|
||||||
* [TheSalmons](https://www.thesalmons.org/lynn/whgmap.html) - World Heritage Sites
|
* [TheSalmons](https://www.thesalmons.org/lynn/whgmap.html) - World Heritage Sites
|
||||||
|
@ -396,7 +397,7 @@
|
||||||
|
|
||||||
## ▷ Historic Maps
|
## ▷ Historic Maps
|
||||||
|
|
||||||
* ⭐ **[David Rumsey Map Collection](https://www.davidrumsey.com/)** - Historical Map Collection
|
* 🌐 **[Map History](https://www.maphistory.info/)** or [David Rumsey Map Collection](https://www.davidrumsey.com/) - Historical Map Indexes
|
||||||
* ⭐ **[Running Reality](https://www.runningreality.org/)**, [Chronas](https://www.chronas.org/) or [OldMapsOnline](https://www.oldmapsonline.org/) - Interactive Historical Maps
|
* ⭐ **[Running Reality](https://www.runningreality.org/)**, [Chronas](https://www.chronas.org/) or [OldMapsOnline](https://www.oldmapsonline.org/) - Interactive Historical Maps
|
||||||
* [Harvard WorldMap](https://worldmap.maps.arcgis.com/home/index.html) - ArcGIS Map Archive
|
* [Harvard WorldMap](https://worldmap.maps.arcgis.com/home/index.html) - ArcGIS Map Archive
|
||||||
* [Cronobook](https://cronobook.com/) - Historic Street View
|
* [Cronobook](https://cronobook.com/) - Historic Street View
|
||||||
|
@ -449,7 +450,7 @@
|
||||||
* ↪️ **[Newspaper Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_newspapers)**
|
* ↪️ **[Newspaper Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_newspapers)**
|
||||||
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
||||||
* ⭐ **[TorrentFreak](https://torrentfreak.com/)** / [Telegram](https://t.me/torrentfreaks) - Piracy News
|
* ⭐ **[TorrentFreak](https://torrentfreak.com/)** / [Telegram](https://t.me/torrentfreaks) - Piracy News
|
||||||
* ⭐ **[Current Events Wiki](https://en.m.wikipedia.org/wiki/Portal:Current_events)** or [Slower News](https://www.slowernews.com/) - Breaking News
|
* ⭐ **[Current Events Wiki](https://en.m.wikipedia.org/wiki/Portal:Current_events)** - Breaking News
|
||||||
* ⭐ **[Good News Network](https://www.goodnewsnetwork.org/)** or [Happy Daze](https://happydaze.io/) - Uplifting News
|
* ⭐ **[Good News Network](https://www.goodnewsnetwork.org/)** or [Happy Daze](https://happydaze.io/) - Uplifting News
|
||||||
* [Unclutter](https://unclutter.it/) - Feed Managers / Readers
|
* [Unclutter](https://unclutter.it/) - Feed Managers / Readers
|
||||||
* [News as Facts](https://newsasfacts.com/) - Wiki-Based News
|
* [News as Facts](https://newsasfacts.com/) - Wiki-Based News
|
||||||
|
@ -663,7 +664,7 @@
|
||||||
|
|
||||||
* ⭐ **[/r/NoSurf](https://www.reddit.com/r/nosurf/wiki/index)** - Digital Detox Community / [Discord](https://discordapp.com/invite/QFhXt2F)
|
* ⭐ **[/r/NoSurf](https://www.reddit.com/r/nosurf/wiki/index)** - Digital Detox Community / [Discord](https://discordapp.com/invite/QFhXt2F)
|
||||||
* [Farhan](https://github.com/tahaak67/Farhan), [LockMeOut](https://play.google.com/store/apps/details?id=vikesh.dass.lockmeout), [DetoxDroid](https://github.com/flxapps/DetoxDroid) or [StopScroll](https://play.google.com/store/apps/details?id=com.noscroll.antiscroll) - Control Phone Addiction
|
* [Farhan](https://github.com/tahaak67/Farhan), [LockMeOut](https://play.google.com/store/apps/details?id=vikesh.dass.lockmeout), [DetoxDroid](https://github.com/flxapps/DetoxDroid) or [StopScroll](https://play.google.com/store/apps/details?id=com.noscroll.antiscroll) - Control Phone Addiction
|
||||||
* [The Freedom Model](https://www.thefreedommodel.org/ebooks/) - Addiction-Help Model / [Books](https://www.youtube.com/playlist?list=PLd6KCmnSpHuE29G2f9JXHMcZKbvzSdInw) / [Lessons](https://www.youtube.com/playlist?list=PLd6KCmnSpHuFBFw-ei2eTYJPrSoLuwBFL) / [Full Book](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#freedom-model-note)
|
* [The Freedom Model](https://www.thefreedommodel.org/ebooks/) - Addiction-Help Model / [Books](https://www.youtube.com/playlist?list=PLd6KCmnSpHuE29G2f9JXHMcZKbvzSdInw) / [Lessons](https://www.youtube.com/playlist?list=PLd6KCmnSpHuFBFw-ei2eTYJPrSoLuwBFL)
|
||||||
* [BreakFree](https://breakfree-2c089.web.app/) - Break Smoking Habits
|
* [BreakFree](https://breakfree-2c089.web.app/) - Break Smoking Habits
|
||||||
* [Sobriety](https://github.com/KiARC/Sobriety) - Sobriety Tracker
|
* [Sobriety](https://github.com/KiARC/Sobriety) - Sobriety Tracker
|
||||||
* [I Am Sober](https://iamsober.com/en/site/home) - Sobriety Tracker / Community
|
* [I Am Sober](https://iamsober.com/en/site/home) - Sobriety Tracker / Community
|
||||||
|
@ -951,6 +952,7 @@
|
||||||
* [Cars.com](https://www.cars.com/research/compare/) - Vehicle Reviews / Comparisons
|
* [Cars.com](https://www.cars.com/research/compare/) - Vehicle Reviews / Comparisons
|
||||||
* [Desenmascara](https://desenmascara.me/) - Spot Counterfeit Sites
|
* [Desenmascara](https://desenmascara.me/) - Spot Counterfeit Sites
|
||||||
* [/r/FashionReps](https://www.reddit.com/r/FashionReps/) - Replica Clothing Community
|
* [/r/FashionReps](https://www.reddit.com/r/FashionReps/) - Replica Clothing Community
|
||||||
|
* [GoEuropean](https://www.goeuropean.org/) - European Products / Services
|
||||||
* [WornOnTV](https://wornontv.net/) or [ShopYourTV](https://shopyourtv.com/) - Find Outfits from TV Shows
|
* [WornOnTV](https://wornontv.net/) or [ShopYourTV](https://shopyourtv.com/) - Find Outfits from TV Shows
|
||||||
* [Kolors](https://www.kolorsvirtual.ai), [2](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Virtual-Try-On) - Virtual Outfit Try-On
|
* [Kolors](https://www.kolorsvirtual.ai), [2](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Virtual-Try-On) - Virtual Outfit Try-On
|
||||||
* [GoodOnYou](https://directory.goodonyou.eco/) - Clothing Brand Sustainability Ratings
|
* [GoodOnYou](https://directory.goodonyou.eco/) - Clothing Brand Sustainability Ratings
|
||||||
|
@ -980,7 +982,6 @@
|
||||||
* [HackersBoard](https://hackerboards.com/) - Single Board Computer Database
|
* [HackersBoard](https://hackerboards.com/) - Single Board Computer Database
|
||||||
* [EveryMac](https://everymac.com/) - Mac Info Database
|
* [EveryMac](https://everymac.com/) - Mac Info Database
|
||||||
* [Mouse Ratings](https://www.rtings.com/mouse/reviews/best), [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [/r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides
|
* [Mouse Ratings](https://www.rtings.com/mouse/reviews/best), [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [/r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides
|
||||||
* [MechGroupBuys](https://www.mechgroupbuys.com/) - Group Mechanical Keyboard Buying / [Discord](https://discord.com/invite/mechgroupbuys) / [Subreddit](https://www.reddit.com/r/MechGroupBuys/)
|
|
||||||
* [PSU Tier List](https://docs.google.com/spreadsheets/d/1akCHL7Vhzk_EhrpIGkz8zTEvYfLDcaSpZRB6Xt6JWkc/) - PSU Buying Guide
|
* [PSU Tier List](https://docs.google.com/spreadsheets/d/1akCHL7Vhzk_EhrpIGkz8zTEvYfLDcaSpZRB6Xt6JWkc/) - PSU Buying Guide
|
||||||
* [PC Monitors](https://pcmonitors.info/), [TFTCentral](https://tftcentral.co.uk/), [Monitor Hunter](https://docs.google.com/document/d/1illeNLsUfZ4KuJ9cIWKwTDUEXUVpplhUYHAiom-FaDo/), [DisplaySpecifications](https://www.displayspecifications.com/), [Monitor Spreadsheet](https://pastebin.com/tkmakRNW) or [DisplayNinja](https://www.displayninja.com/) - Monitor Buying Guides
|
* [PC Monitors](https://pcmonitors.info/), [TFTCentral](https://tftcentral.co.uk/), [Monitor Hunter](https://docs.google.com/document/d/1illeNLsUfZ4KuJ9cIWKwTDUEXUVpplhUYHAiom-FaDo/), [DisplaySpecifications](https://www.displayspecifications.com/), [Monitor Spreadsheet](https://pastebin.com/tkmakRNW) or [DisplayNinja](https://www.displayninja.com/) - Monitor Buying Guides
|
||||||
* [sven dpi](https://www.sven.de/dpi/) - Screen / Monitor Size Comparisons
|
* [sven dpi](https://www.sven.de/dpi/) - Screen / Monitor Size Comparisons
|
||||||
|
@ -995,6 +996,7 @@
|
||||||
* [Gamepadla](https://gamepadla.com/) - Gamepad / Controller Latency Tests
|
* [Gamepadla](https://gamepadla.com/) - Gamepad / Controller Latency Tests
|
||||||
* [RetroCatalog](https://retrocatalog.com/) or [Handheld Emulation Compatibility](https://docs.google.com/spreadsheets/d/1irg60f9qsZOkhp0cwOU7Cy4rJQeyusEUzTNQzhoTYTU/) - Handheld Emulation Compatibility / Info
|
* [RetroCatalog](https://retrocatalog.com/) or [Handheld Emulation Compatibility](https://docs.google.com/spreadsheets/d/1irg60f9qsZOkhp0cwOU7Cy4rJQeyusEUzTNQzhoTYTU/) - Handheld Emulation Compatibility / Info
|
||||||
* [ComparisonTabl.es](https://comparisontabl.es/) - Compare E-Readers
|
* [ComparisonTabl.es](https://comparisontabl.es/) - Compare E-Readers
|
||||||
|
* [DrawTab](https://docs.thesevenpens.com/drawtab) - Drawing Tablet Info / Wiki
|
||||||
* [Consolevariations](https://consolevariations.com/) - Game Console Rarity / Shopping
|
* [Consolevariations](https://consolevariations.com/) - Game Console Rarity / Shopping
|
||||||
* [Camera Decision](https://cameradecision.com/) or [Digicamfinder](https://digicamfinder.com/) - Compare Cameras
|
* [Camera Decision](https://cameradecision.com/) or [Digicamfinder](https://digicamfinder.com/) - Compare Cameras
|
||||||
|
|
||||||
|
@ -1058,12 +1060,10 @@
|
||||||
* ⭐ **[BeMyEyes](https://www.bemyeyes.com/)** - Assist the Visually Impaired
|
* ⭐ **[BeMyEyes](https://www.bemyeyes.com/)** - Assist the Visually Impaired
|
||||||
* ⭐ **[TinyKitten](https://tinykittens.com/)** - Kitten Rescue / Donation
|
* ⭐ **[TinyKitten](https://tinykittens.com/)** - Kitten Rescue / Donation
|
||||||
* [Make it Yourself](https://makeityourself.org/) / [Video](https://youtu.be/TSFJ2OH1PQA) or [Make:](https://makezine.com/) - DIY Projects
|
* [Make it Yourself](https://makeityourself.org/) / [Video](https://youtu.be/TSFJ2OH1PQA) or [Make:](https://makezine.com/) - DIY Projects
|
||||||
* [barcodrod.io](https://barcodrod.io/) or [QR Code Scan](https://qrcodescan.in/) - QR Code Scanners
|
|
||||||
* [QArt Coder](https://research.swtch.com/qr/draw/) - Draw Custom QR Codes
|
|
||||||
* [Dashboard](https://zzanehip.github.io/Dashboard/) - Mac-Style Dashboard Widget
|
* [Dashboard](https://zzanehip.github.io/Dashboard/) - Mac-Style Dashboard Widget
|
||||||
|
* [RANDOM](https://www.random.org/), [The One Generator](https://theonegenerator.com/) or [getrandomgenerator](https://getrandomgenerator.com/) - Random Generators
|
||||||
* [The Measure Of Things](https://www.themeasureofthings.com) - Comparative / Relative Quantity Measurements
|
* [The Measure Of Things](https://www.themeasureofthings.com) - Comparative / Relative Quantity Measurements
|
||||||
* [Compare Sizes](https://comparesizes.com/) - Size Comparison Tool
|
* [Compare Sizes](https://comparesizes.com/) - Size Comparison Tool
|
||||||
* [The One Generator](https://theonegenerator.com/), [getrandomgenerator](https://getrandomgenerator.com/) or [RANDOM](https://www.random.org/) - Random Generators
|
|
||||||
* [Paper Sizes](https://papersizes.io/) - Common Paper Sizes
|
* [Paper Sizes](https://papersizes.io/) - Common Paper Sizes
|
||||||
* [WhoBrings](https://whobrings.com/) - Party Item Management Tool
|
* [WhoBrings](https://whobrings.com/) - Party Item Management Tool
|
||||||
* [wttr](https://wttr.in/) - Simple Weather Site / [GitHub](https://github.com/chubin/wttr.in)
|
* [wttr](https://wttr.in/) - Simple Weather Site / [GitHub](https://github.com/chubin/wttr.in)
|
||||||
|
@ -1107,7 +1107,7 @@
|
||||||
## ▷ Multi Tool Sites
|
## ▷ Multi Tool Sites
|
||||||
|
|
||||||
* 🌐 **[Mr Free Tools](https://mrfreetools.com/)** - Find Free Tools
|
* 🌐 **[Mr Free Tools](https://mrfreetools.com/)** - Find Free Tools
|
||||||
* ⭐ **[LibreOps](https://libreops.cc/)** or [Luigi Auriemma](https://aluigi.altervista.org/) - Open-Source Tools
|
* ⭐ **[LibreOps](https://libreops.cc/)** - Open-Source Tools
|
||||||
* ⭐ **[TinyWow](https://tinywow.com/)** - Text / Image / PDF / File
|
* ⭐ **[TinyWow](https://tinywow.com/)** - Text / Image / PDF / File
|
||||||
* ⭐ **[PineTools](https://pinetools.com/)** - Text / Multimedia / Colors / Code
|
* ⭐ **[PineTools](https://pinetools.com/)** - Text / Multimedia / Colors / Code
|
||||||
* [goonlinetools](https://goonlinetools.com/) - Text / Encode-Decode / Code / Random / Image
|
* [goonlinetools](https://goonlinetools.com/) - Text / Encode-Decode / Code / Random / Image
|
||||||
|
@ -1116,6 +1116,7 @@
|
||||||
* [Disroot](https://disroot.org/en/#services) - Text / Social Media
|
* [Disroot](https://disroot.org/en/#services) - Text / Social Media
|
||||||
* [RandomTools](https://randomtools.io/) - Social Media / Text / Image / Code
|
* [RandomTools](https://randomtools.io/) - Social Media / Text / Image / Code
|
||||||
* [MajorGeeks Tools](https://tools.majorgeeks.com/) - Social Media / Text / Image / Code
|
* [MajorGeeks Tools](https://tools.majorgeeks.com/) - Social Media / Text / Image / Code
|
||||||
|
* [OmniTools](https://omnitools.app/) - Social Media / Text / Image / Code
|
||||||
* [ToolYatri](https://toolyatri.com/) - Text / Code
|
* [ToolYatri](https://toolyatri.com/) - Text / Code
|
||||||
* [IPVoid](https://www.ipvoid.com/) - Text / IP
|
* [IPVoid](https://www.ipvoid.com/) - Text / IP
|
||||||
* [AppsCyborg](https://appscyborg.com/) - File Conversion / Media
|
* [AppsCyborg](https://appscyborg.com/) - File Conversion / Media
|
||||||
|
@ -1275,6 +1276,7 @@
|
||||||
* [Poke Palettes](https://pokepalettes.com/) - Pokémon Color Palettes
|
* [Poke Palettes](https://pokepalettes.com/) - Pokémon Color Palettes
|
||||||
* [Star Wars Intro Creator](https://starwarsintrocreator.kassellabs.io/) - Create Star Wars Intros
|
* [Star Wars Intro Creator](https://starwarsintrocreator.kassellabs.io/) - Create Star Wars Intros
|
||||||
* [Mirage Gallery](https://www.miragegallery.ai/) - AI Art Gallery
|
* [Mirage Gallery](https://www.miragegallery.ai/) - AI Art Gallery
|
||||||
|
* [Gondola List](https://gondola.nabein.me/list) - Gondola Meme Archive
|
||||||
* [Matchbox Dan](https://matchbox-dan.com/) - Matchbox Car Picture Archive
|
* [Matchbox Dan](https://matchbox-dan.com/) - Matchbox Car Picture Archive
|
||||||
* [Floor796](https://floor796.com/) - Ever-Expanding Animated Scene
|
* [Floor796](https://floor796.com/) - Ever-Expanding Animated Scene
|
||||||
* [Zoomquilt](https://www.zoomquilt.org/) / [2](https://zoomquilt2.com/), [Infinite Zoom](https://infinitezoom.net/) or [Arkadia](https://arkadia.xyz/) - Infinite Zooming Paintings
|
* [Zoomquilt](https://www.zoomquilt.org/) / [2](https://zoomquilt2.com/), [Infinite Zoom](https://infinitezoom.net/) or [Arkadia](https://arkadia.xyz/) - Infinite Zooming Paintings
|
||||||
|
@ -1300,7 +1302,6 @@
|
||||||
* ⭐ **[Genetic Cars 2](https://rednuht.org/genetic_cars_2/)** - Random 2D Car Generator
|
* ⭐ **[Genetic Cars 2](https://rednuht.org/genetic_cars_2/)** - Random 2D Car Generator
|
||||||
* ⭐ **[Human Benchmark](https://humanbenchmark.com/)** - Brain Games & Cognitive Tests
|
* ⭐ **[Human Benchmark](https://humanbenchmark.com/)** - Brain Games & Cognitive Tests
|
||||||
* ⭐ **[Got Rhythm?](https://www.concerthotels.com/got-rhythm)** - Rhythm / Tempo Test
|
* ⭐ **[Got Rhythm?](https://www.concerthotels.com/got-rhythm)** - Rhythm / Tempo Test
|
||||||
* ⭐ **[2020 Game](https://2020game.io/)** - Play Through 2020
|
|
||||||
* [Little Alchemy](https://littlealchemy.com/) or [Little Alchemy 2](https://littlealchemy2.com/) - Alchemy Game
|
* [Little Alchemy](https://littlealchemy.com/) or [Little Alchemy 2](https://littlealchemy2.com/) - Alchemy Game
|
||||||
* [Impersona](https://impersona.chat/) - In-Character Public Chats / [Discord](https://discord.gg/DX74sGX)
|
* [Impersona](https://impersona.chat/) - In-Character Public Chats / [Discord](https://discord.gg/DX74sGX)
|
||||||
* [DJ3D](https://dj3d.io/) - Watch YouTube in Virtual World
|
* [DJ3D](https://dj3d.io/) - Watch YouTube in Virtual World
|
||||||
|
@ -1319,6 +1320,7 @@
|
||||||
* [Cafe and Diner](https://www.cafeanddiner.com/) - Browser Mystery Game
|
* [Cafe and Diner](https://www.cafeanddiner.com/) - Browser Mystery Game
|
||||||
* [New Campaign Trail](https://www.newcampaigntrail.com/) - Presidential Campaign Game / [Discord](https://discord.gg/CfS6yTtjZj)
|
* [New Campaign Trail](https://www.newcampaigntrail.com/) - Presidential Campaign Game / [Discord](https://discord.gg/CfS6yTtjZj)
|
||||||
* [There Is No Website](https://www.thereisnoweb.site/) - Browser Website Game
|
* [There Is No Website](https://www.thereisnoweb.site/) - Browser Website Game
|
||||||
|
* [2020 Game](https://2020game.io/) - Play Through 2020
|
||||||
* [Terminal 00](https://angusnicneven.com/), [corru.observer](https://corru.observer/), [lomando](https://lomando.com/main.html) or [angelangelangel](https://angelangelangelangelangel.com/) - Cursed Sites / Horror Games
|
* [Terminal 00](https://angusnicneven.com/), [corru.observer](https://corru.observer/), [lomando](https://lomando.com/main.html) or [angelangelangel](https://angelangelangelangelangel.com/) - Cursed Sites / Horror Games
|
||||||
* [Windows93](https://www.windows93.net/) - Windows 93 Emulator
|
* [Windows93](https://www.windows93.net/) - Windows 93 Emulator
|
||||||
* [larsberg](https://www.larsberg.net/#/), [substack](https://substack.net/) or [mrdoob](https://mrdoob.neocities.org/) - Trippy 3D Experiments
|
* [larsberg](https://www.larsberg.net/#/), [substack](https://substack.net/) or [mrdoob](https://mrdoob.neocities.org/) - Trippy 3D Experiments
|
||||||
|
@ -1346,7 +1348,7 @@
|
||||||
* [Super Snowflake Maker](https://supersnowflakemaker.com/) or [Fold & Cut](https://www.onemotion.com/fold-cut-paper/) - Make Digital Paper Snowflakes
|
* [Super Snowflake Maker](https://supersnowflakemaker.com/) or [Fold & Cut](https://www.onemotion.com/fold-cut-paper/) - Make Digital Paper Snowflakes
|
||||||
* [Iceberger](https://joshdata.me/iceberger.html) - Draw an Iceberg, See how it Floats
|
* [Iceberger](https://joshdata.me/iceberger.html) - Draw an Iceberg, See how it Floats
|
||||||
* [BubblesPop](https://bubblespop.netlify.app/), [2](https://brainteaser.top/bubblespop.html) - Pop Bubble Wrap
|
* [BubblesPop](https://bubblespop.netlify.app/), [2](https://brainteaser.top/bubblespop.html) - Pop Bubble Wrap
|
||||||
* [OneMillionCheckboxes](https://onemillioncheckboxes.com/), [Checkbox Life](https://huth.me/checkbox-life/) or [Checkbox Olympics](https://checkbox.toys/) - Checkbox Games
|
* [Checkbox Life](https://huth.me/checkbox-life/) or [Checkbox Olympics](https://checkbox.toys/) - Checkbox Games
|
||||||
* [Fidget Page](https://www.fidgetpage.com/) - Play with Fidget Spinner
|
* [Fidget Page](https://www.fidgetpage.com/) - Play with Fidget Spinner
|
||||||
* [Keep calm and poke me.](https://calm.ovh/) - Poke & Pull
|
* [Keep calm and poke me.](https://calm.ovh/) - Poke & Pull
|
||||||
* [Wanda Whirl](https://wandawhirl.com/) - Play w/ Colorful Streamers
|
* [Wanda Whirl](https://wandawhirl.com/) - Play w/ Colorful Streamers
|
||||||
|
@ -1359,7 +1361,7 @@
|
||||||
* [DrawAurora](https://www.drawaurora.com/) - Draw Auroras
|
* [DrawAurora](https://www.drawaurora.com/) - Draw Auroras
|
||||||
* [Neonflames](https://29a.ch/sandbox/2011/neonflames/) - Draw Nebulas
|
* [Neonflames](https://29a.ch/sandbox/2011/neonflames/) - Draw Nebulas
|
||||||
* [Leapy Grid](https://codepen.io/Godje/full/mOzpEY/) - Play with Rainbow Grid
|
* [Leapy Grid](https://codepen.io/Godje/full/mOzpEY/) - Play with Rainbow Grid
|
||||||
* [Pixactly](https://pixact.ly/) - Pixel Size Drawing Challenge
|
* [Pianos.pub](https://pianos.pub/) - Find Public Pianos
|
||||||
* [danielx](https://danielx.net/composer/) or [AMS](https://flyx.org/ams/) - Mario Paint Composer Ports / [Archive](https://archive.org/details/mariopaintcomposer_201609)
|
* [danielx](https://danielx.net/composer/) or [AMS](https://flyx.org/ams/) - Mario Paint Composer Ports / [Archive](https://archive.org/details/mariopaintcomposer_201609)
|
||||||
* [Typatone](https://www.typatone.com/) - Play Music by Typing
|
* [Typatone](https://www.typatone.com/) - Play Music by Typing
|
||||||
* [Blossom](https://blossom.alexbainter.com/) - Create Sounds via Clicks
|
* [Blossom](https://blossom.alexbainter.com/) - Create Sounds via Clicks
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
* [arabic-toons](https://www.arabic-toons.com/) - Cartoons
|
* [arabic-toons](https://www.arabic-toons.com/) - Cartoons
|
||||||
* [Flowind](https://flowind.net/) - Cartoons
|
* [Flowind](https://flowind.net/) - Cartoons
|
||||||
* [Animerco](https://animerco.org/) - Anime / Sub / 1080p
|
* [Animerco](https://animerco.org/) - Anime / Sub / 1080p
|
||||||
|
* [maycima](https://maycima.com/) - Anime
|
||||||
* [shahiid](https://shahiid-anime.net/) - Anime / Sub / 720p
|
* [shahiid](https://shahiid-anime.net/) - Anime / Sub / 720p
|
||||||
* [anime3rb](https://anime3rb.com/) - Anime / Sub
|
* [anime3rb](https://anime3rb.com/) - Anime / Sub
|
||||||
* [jotorrent](https://www.jotorrent.com/) - Anime / Signups Open Every Month
|
* [jotorrent](https://www.jotorrent.com/) - Anime / Signups Open Every Month
|
||||||
|
@ -99,6 +100,7 @@
|
||||||
|
|
||||||
## ▷ Downloading / ডাউনলোডিং
|
## ▷ Downloading / ডাউনলোডিং
|
||||||
|
|
||||||
|
* [MLSDB](https://mlsbd.shop/) - Movie / TV
|
||||||
* [Bangla Song](https://www.music.com.bd/) - Bangla Song / Music / Radio / MP3
|
* [Bangla Song](https://www.music.com.bd/) - Bangla Song / Music / Radio / MP3
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -106,6 +108,7 @@
|
||||||
## ▷ Streaming / স্ট্রিমিং
|
## ▷ Streaming / স্ট্রিমিং
|
||||||
|
|
||||||
* [BanglaFlix](https://banglaflix.com.bd/) - Movies / TV
|
* [BanglaFlix](https://banglaflix.com.bd/) - Movies / TV
|
||||||
|
* [Bangla IPTV](https://rentry.co/FMHYBase64#bangla-iptv-playlists) - IPTV Playlists
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -223,10 +226,9 @@
|
||||||
* [imjw](https://www.ttkmj.cc/) - Movies / TV / 1080p
|
* [imjw](https://www.ttkmj.cc/) - Movies / TV / 1080p
|
||||||
* [xiaoyakankan](https://xiaoyakankan.com/) - Movies / TV / 720p
|
* [xiaoyakankan](https://xiaoyakankan.com/) - Movies / TV / 720p
|
||||||
* [IYF](https://www.iyf.tv/) - Movies / TV / Sub / Dub / 720p
|
* [IYF](https://www.iyf.tv/) - Movies / TV / Sub / Dub / 720p
|
||||||
* [gimytw](https://gimytw.cc/) - Movies / TV
|
* [gimytw](https://gimytw.cc/) - Movies / TV / Cartoons / Dub
|
||||||
* [KokoTV](https://kokotv.me/) - Drama / Sub / Dub / 1080p
|
* [KokoTV](https://kokotv.me/) - Drama / Sub / Dub / 1080p
|
||||||
* [Duboku](https://www.duboku.tv/) - TV / Cartoons / Sub / 1080p
|
* [Duboku](https://www.duboku.tv/) - TV / Cartoons / Sub / 1080p
|
||||||
* [HKanime](https://www.hkanime.com/) - Anime / Sub / Dub / 1080p / [Telegram](https://t.me/+mQ5fWi_trVY2MmQ9) / Registration and VPN Required
|
|
||||||
* [CC動漫](https://ccdm.cc/) - Anime / Sub / 1080p
|
* [CC動漫](https://ccdm.cc/) - Anime / Sub / 1080p
|
||||||
* [AGE Animation](https://www.agedm.org/) - Anime / Sub / 1080p
|
* [AGE Animation](https://www.agedm.org/) - Anime / Sub / 1080p
|
||||||
* [xgcartoon](https://www.xgcartoon.com/) - Anime / Sub / Dub / 1080p
|
* [xgcartoon](https://www.xgcartoon.com/) - Anime / Sub / Dub / 1080p
|
||||||
|
@ -246,7 +248,7 @@
|
||||||
* [數學老師張旭](https://space.bilibili.com/521685904) - Math Lessons
|
* [數學老師張旭](https://space.bilibili.com/521685904) - Math Lessons
|
||||||
* [free-project-course](https://github.com/resumejob/free-project-course) - Programming Courses
|
* [free-project-course](https://github.com/resumejob/free-project-course) - Programming Courses
|
||||||
* [Baidu SkyDrive Video Player](https://greasyfork.org/en/scripts/426952-%E7%99%BE%E5%BA%A6%E7%BD%91%E7%9B%98%E8%A7%86%E9%A2%91%E6%92%AD%E6%94%BE%E5%B0%8A%E4%BA%AB-vip-%E8%A7%A3%E9%94%81%E8%A7%86%E9%A2%91%E5%80%8D%E6%95%B0-%E8%A7%A3%E9%94%81%E5%85%A8%E9%83%A8%E6%B8%85%E6%99%B0%E5%BA%A6) - Baidu VIP Video Player
|
* [Baidu SkyDrive Video Player](https://greasyfork.org/en/scripts/426952-%E7%99%BE%E5%BA%A6%E7%BD%91%E7%9B%98%E8%A7%86%E9%A2%91%E6%92%AD%E6%94%BE%E5%B0%8A%E4%BA%AB-vip-%E8%A7%A3%E9%94%81%E8%A7%86%E9%A2%91%E5%80%8D%E6%95%B0-%E8%A7%A3%E9%94%81%E5%85%A8%E9%83%A8%E6%B8%85%E6%99%B0%E5%BA%A6) - Baidu VIP Video Player
|
||||||
* [acfun.cn](https://www.acfun.cn/) - Chinese YouTube Alt
|
* [acfun.cn](https://www.acfun.cn/) - Video Streaming / YouTube Alt
|
||||||
|
|
||||||
## ▷ Reading / 阅读
|
## ▷ Reading / 阅读
|
||||||
|
|
||||||
|
@ -255,7 +257,6 @@
|
||||||
* [BooksThatMakeYouThink](https://t.me/BooksThatMakeYouThink) - Nonfiction
|
* [BooksThatMakeYouThink](https://t.me/BooksThatMakeYouThink) - Nonfiction
|
||||||
* [AutumnWindBookstore](https://www.qiufengshuwu.com/) - Fiction
|
* [AutumnWindBookstore](https://www.qiufengshuwu.com/) - Fiction
|
||||||
* [ixdzs](https://ixdzs8.tw/) - Fiction
|
* [ixdzs](https://ixdzs8.tw/) - Fiction
|
||||||
* [huibooks](https://www.huibooks.com/) - Fiction / Non-fiction / Signup Required
|
|
||||||
* [99csw.com](https://99csw.com/) - Fiction / Non-fiction
|
* [99csw.com](https://99csw.com/) - Fiction / Non-fiction
|
||||||
* [nunubook.com](https://nunubook.com/) - Fiction / Non-fiction
|
* [nunubook.com](https://nunubook.com/) - Fiction / Non-fiction
|
||||||
* [hallowlib](https://bk.hallowlib.org/) - Fiction / Non-fiction
|
* [hallowlib](https://bk.hallowlib.org/) - Fiction / Non-fiction
|
||||||
|
@ -332,13 +333,13 @@
|
||||||
* [CSFD](https://www.csfd.cz/) - Czech Film Database
|
* [CSFD](https://www.csfd.cz/) - Czech Film Database
|
||||||
* [uschovna](https://www.uschovna.cz/) or [posilej](https://posilej.cz/) - Czech File Hosts
|
* [uschovna](https://www.uschovna.cz/) or [posilej](https://posilej.cz/) - Czech File Hosts
|
||||||
|
|
||||||
## ▷ Downloading
|
## ▷ Downloading / Stahování
|
||||||
|
|
||||||
* [War-Forum](https://war-forum.net/) - Video / Audio / Books / Magazines / Comics / NSFW
|
* [War-Forum](https://war-forum.net/) - Video / Audio / Books / Magazines / Comics / NSFW
|
||||||
* [WarezCenter](https://warcenter.cz/) - Video / Audio / Books / NSFW
|
* [WarezCenter](https://warcenter.cz/) - Video / Audio / Books / NSFW
|
||||||
* [WebShare](https://webshare.cz/) - Video / Audio / Books
|
* [WebShare](https://webshare.cz/) - Video / Audio / Books
|
||||||
|
|
||||||
## ▷ Streaming
|
## ▷ Streaming / Streamování
|
||||||
|
|
||||||
* [Bombuj](https://bombuj.si/) - Movies / TV
|
* [Bombuj](https://bombuj.si/) - Movies / TV
|
||||||
* [Sledujteto](https://www.sledujteto.cz/) - Movies / TV / Anime / 1080p
|
* [Sledujteto](https://www.sledujteto.cz/) - Movies / TV / Anime / 1080p
|
||||||
|
@ -347,7 +348,7 @@
|
||||||
* [Ceskatelevize](https://www.ceskatelevize.cz/ivysilani/) - Movies / TV
|
* [Ceskatelevize](https://www.ceskatelevize.cz/ivysilani/) - Movies / TV
|
||||||
* [StarSites](https://goal.starsites.fun/) - Live Football / Hockey
|
* [StarSites](https://goal.starsites.fun/) - Live Football / Hockey
|
||||||
|
|
||||||
## ▷ Reading
|
## ▷ Reading / Čtení
|
||||||
|
|
||||||
* [xTrance](https://xtrance.info/) - Books / Download / Account Required
|
* [xTrance](https://xtrance.info/) - Books / Download / Account Required
|
||||||
* [PDF Books](https://pdfknihy.maxzone.eu/index.html) - Public Domain Books
|
* [PDF Books](https://pdfknihy.maxzone.eu/index.html) - Public Domain Books
|
||||||
|
@ -362,7 +363,7 @@
|
||||||
## ▷ Streaming / Nanonood
|
## ▷ Streaming / Nanonood
|
||||||
|
|
||||||
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV / NSFW / Sub / Dub / 1080p
|
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV / NSFW / Sub / Dub / 1080p
|
||||||
* [Pinoy Movies Hub](https://pinoymovieshub.mx/) - Movies / TV / NSFW / Sub / Dub / 720p
|
* [Pinoy Movies Hub](https://pinoymovieshub.tv/) - Movies / TV / NSFW / Sub / Dub / 720p
|
||||||
* [Pinoymoviepedia](https://pinoymoviepedia.ru/) - Movies / TV / NSFW / Sub / Dub / 720p
|
* [Pinoymoviepedia](https://pinoymoviepedia.ru/) - Movies / TV / NSFW / Sub / Dub / 720p
|
||||||
* [Pinoy Albums](https://pinoyalbums.com/) - Music
|
* [Pinoy Albums](https://pinoyalbums.com/) - Music
|
||||||
|
|
||||||
|
@ -410,15 +411,16 @@
|
||||||
* [Prix Carburants](https://www.prix-carburants.gouv.fr/) - Gas Prices
|
* [Prix Carburants](https://www.prix-carburants.gouv.fr/) - Gas Prices
|
||||||
* [Donnons](https://donnons.org/) - Item Donation
|
* [Donnons](https://donnons.org/) - Item Donation
|
||||||
|
|
||||||
## ▷ Downloading
|
## ▷ Downloading / Téléchargement
|
||||||
|
|
||||||
|
* [WawaCity](https://www.wawacity.tips/) - Movies / TV / Check [Telegram](https://t.me/Wawacity_officiel) if Domain Changes
|
||||||
* [MuaDib](https://muaddib-sci-fi.blogspot.com/) - Sci-Fi Movies
|
* [MuaDib](https://muaddib-sci-fi.blogspot.com/) - Sci-Fi Movies
|
||||||
* [PiratePunk](https://www.pirate-punk.net/) - Punk Music / Radio / Concerts Dates / Forum
|
* [PiratePunk](https://www.pirate-punk.net/) - Punk Music / Radio / Concerts Dates / Forum
|
||||||
* [Emurom](https://www.emurom.net/) - Retro ROMs
|
* [Emurom](https://www.emurom.net/) - Retro ROMs
|
||||||
* [Abandonware Magazines](https://www.abandonware-magazines.org/) - Retro Computer / Games Magazines
|
* [Abandonware Magazines](https://www.abandonware-magazines.org/) - Retro Computer / Games Magazines
|
||||||
* [Abandonware Videos](https://www.abandonware-videos.org/) - Retro Game Related Videos
|
* [Abandonware Videos](https://www.abandonware-videos.org/) - Retro Game Related Videos
|
||||||
|
|
||||||
## ▷ Torrenting / Télecharger
|
## ▷ Torrenting
|
||||||
|
|
||||||
* [YGGTorrent](https://www.ygg.re/) - Video / Audio / ROMs / Books
|
* [YGGTorrent](https://www.ygg.re/) - Video / Audio / ROMs / Books
|
||||||
* [Torrent9](https://www.torrent9.site/), [2](https://torrent9.app/) - Video / Audio / ROMs / Books
|
* [Torrent9](https://www.torrent9.site/), [2](https://torrent9.app/) - Video / Audio / ROMs / Books
|
||||||
|
@ -429,6 +431,7 @@
|
||||||
|
|
||||||
* ⭐ **[VF-Stream](https://films.vfstream.eu/)** - Movies / TV / Anime
|
* ⭐ **[VF-Stream](https://films.vfstream.eu/)** - Movies / TV / Anime
|
||||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
||||||
|
* ⭐ **[streammovix](https://streammovix.vercel.app/)** - Movies / TV / Anime / [Discord](https://discord.com/invite/movix)
|
||||||
* ⭐ **[Frembed](https://frembed.live/)** - Movies / TV / Anime / API
|
* ⭐ **[Frembed](https://frembed.live/)** - Movies / TV / Anime / API
|
||||||
* [Deksov](https://deksov.com/) - Movies / TV / Anime
|
* [Deksov](https://deksov.com/) - Movies / TV / Anime
|
||||||
* [VoirAnime](https://v6.voiranime.com/) - Anime / Sub / 1080p
|
* [VoirAnime](https://v6.voiranime.com/) - Anime / Sub / 1080p
|
||||||
|
@ -437,7 +440,6 @@
|
||||||
* [Wiflix](https://wiflix-hd.kim/) - Movies / Series / Anime / Dub / [Telegram](https://t.me/wiflix2023)
|
* [Wiflix](https://wiflix-hd.kim/) - Movies / Series / Anime / Dub / [Telegram](https://t.me/wiflix2023)
|
||||||
* [Kordoz](https://www.kordoz.com/) - Movies / TV / Anime
|
* [Kordoz](https://www.kordoz.com/) - Movies / TV / Anime
|
||||||
* [TF1](https://www.tf1.fr/) - Movies / TV / Anime / Live TV
|
* [TF1](https://www.tf1.fr/) - Movies / TV / Anime / Live TV
|
||||||
* [streammovix](https://streammovix.vercel.app/) - Movies / TV / Anime
|
|
||||||
* [mymovix](https://mymovix.org/) - Movies
|
* [mymovix](https://mymovix.org/) - Movies
|
||||||
* [Cinémathèque de Bretagne](https://www.cinematheque-bretagne.bzh/) - Classic / Amateur Movies
|
* [Cinémathèque de Bretagne](https://www.cinematheque-bretagne.bzh/) - Classic / Amateur Movies
|
||||||
* [ICI Tou.tv](https://ici.tou.tv/) - Canada Public Broadcaster / Movies / TV / Docs / Cartoons / Requires Account
|
* [ICI Tou.tv](https://ici.tou.tv/) - Canada Public Broadcaster / Movies / TV / Docs / Cartoons / Requires Account
|
||||||
|
@ -460,7 +462,6 @@
|
||||||
* [JokerTV](https://jokertv.ru/) - Live Football
|
* [JokerTV](https://jokertv.ru/) - Live Football
|
||||||
* [remontadatv](https://remontadatv.ru/), [2](https://linktr.ee/streamonsport) - Live Football
|
* [remontadatv](https://remontadatv.ru/), [2](https://linktr.ee/streamonsport) - Live Football
|
||||||
* [Doc4U](https://doc4u.top/) - Documentaries
|
* [Doc4U](https://doc4u.top/) - Documentaries
|
||||||
* [VoirCartoon](https://voircartoon.com/) - Cartoons / Dub / 720p
|
|
||||||
* [CatoonHub](https://catoonhub.com/) - Cartoons / Dub / 720p / [Discord](https://discord.com/invite/M7gRTuXc6d)
|
* [CatoonHub](https://catoonhub.com/) - Cartoons / Dub / 720p / [Discord](https://discord.com/invite/M7gRTuXc6d)
|
||||||
* [Lesics](https://youtube.com/@LesicsFR) - Sabins Civil Engineering
|
* [Lesics](https://youtube.com/@LesicsFR) - Sabins Civil Engineering
|
||||||
* [Grafikart](https://grafikart.fr/) - Programming Courses
|
* [Grafikart](https://grafikart.fr/) - Programming Courses
|
||||||
|
@ -578,14 +579,13 @@
|
||||||
## ▷ Streaming
|
## ▷ Streaming
|
||||||
|
|
||||||
* [Greek-Movies](https://greek-movies.com/) - Movies / TV / Live / Courses / Dub / 720p
|
* [Greek-Movies](https://greek-movies.com/) - Movies / TV / Live / Courses / Dub / 720p
|
||||||
* [tainio-mania](https://tainio-mania.online), [2](https://tenies-online.best/), [3](https://voody-online.com/), [4](https://moomza.com/) - Movies / TV
|
|
||||||
* [xrysoi](https://xrysoi.pro/), [2](https://tainiesonline.xyz) - Movies / TV
|
* [xrysoi](https://xrysoi.pro/), [2](https://tainiesonline.xyz) - Movies / TV
|
||||||
* [filmatic](https://filmatic.online/) - Movies / TV
|
* [filmatic](https://filmatic.online/) - Movies / TV
|
||||||
* [gamatotv](https://gamatotv.info/) - Movies / TV
|
* [gamatotv](https://gamatotv.info/) - Movies / TV
|
||||||
* [movio](https://movio.club/) - Movies / TV
|
* [movio](https://movio.club/) - Movies / TV
|
||||||
* [greek-flix](https://greek-flix.com/) - Movies / TV
|
* [greek-flix](https://greek-flix.com/) - Movies / TV
|
||||||
* [gamatomovies1](https://gamatomovies1.gr/) - Movies / TV
|
|
||||||
* [tainiesonline](https://tainiesonline.top/) - Movies / TV
|
* [tainiesonline](https://tainiesonline.top/) - Movies / TV
|
||||||
|
* [tainio-mania](https://tainio-mania.online), [2](https://tenies-online.best/), [3](https://voody-online.com/), [4](https://moomza.com/) - Movies / TV
|
||||||
* [gamatomovies](https://gamatomovies.info/) - Movies / TV
|
* [gamatomovies](https://gamatomovies.info/) - Movies / TV
|
||||||
* [ertflix](https://www.ertflix.gr/en/) - Movies / TV
|
* [ertflix](https://www.ertflix.gr/en/) - Movies / TV
|
||||||
* [An1me](https://an1me.to/) - Anime / Sub / Dub / 1080p / [Discord](https://discord.com/invite/qPcUxRH)
|
* [An1me](https://an1me.to/) - Anime / Sub / Dub / 1080p / [Discord](https://discord.com/invite/qPcUxRH)
|
||||||
|
@ -634,6 +634,7 @@
|
||||||
* [OnlineFilmeKingyen](https://www.onlinefilmekingyen.com/) - Movies / Sub / Dub / 1080p
|
* [OnlineFilmeKingyen](https://www.onlinefilmekingyen.com/) - Movies / Sub / Dub / 1080p
|
||||||
* [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p
|
* [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p
|
||||||
* [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p
|
* [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p
|
||||||
|
* [animedrive](https://animedrive.hu/) - Anime / [Discord](https://discord.com/invite/xcgeYp3)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -646,10 +647,10 @@
|
||||||
|
|
||||||
## ▷ Downloading
|
## ▷ Downloading
|
||||||
|
|
||||||
|
* ⭐ **[VegaMovies](https://m.vegamovies.ms/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||||
* ⭐ **[UHDMovies](https://modlist.in/?type=uhdmovies)** - Movies / 4K
|
* ⭐ **[UHDMovies](https://modlist.in/?type=uhdmovies)** - Movies / 4K
|
||||||
* ⭐ **[MkvCinemas](https://mkvcinemas.moi/)** - Movies / TV / Anime / Sub / Dub / 1080p / 4K
|
* ⭐ **[MkvCinemas](https://mkvcinemas.moi/)** - Movies / TV / Anime / Sub / Dub / 1080p / 4K
|
||||||
* ⭐ **[OlaMovies](http://app2.olamovies.download/)** - Movies / TV / Sub / Dub / 1080p / 4K / Use Adblocker / [Telegram](https://telegram.me/olamovies_officialv69)
|
* ⭐ **[OlaMovies](http://app2.olamovies.download/)** - Movies / TV / Sub / Dub / 1080p / 4K / Use Adblocker / [Telegram](https://telegram.me/olamovies_officialv69)
|
||||||
* ⭐ **[VegaMovies](https://m.vegamovies.ms/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/vega_officials)
|
|
||||||
* ⭐ **[MoviesMod](https://modlist.in/?type=hollywood)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://modlist.in/?type=telegram) / [Bypass](https://greasyfork.org/en/scripts/474747)
|
* ⭐ **[MoviesMod](https://modlist.in/?type=hollywood)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://modlist.in/?type=telegram) / [Bypass](https://greasyfork.org/en/scripts/474747)
|
||||||
* ⭐ **[ToonWorld4All](https://toonworld4all.me/)** - Anime / Cartoon / Geoblocked
|
* ⭐ **[ToonWorld4All](https://toonworld4all.me/)** - Anime / Cartoon / Geoblocked
|
||||||
* ⭐ **[SD Toons](https://sdtoons.in)** - Movies / TV / Anime / 1080p
|
* ⭐ **[SD Toons](https://sdtoons.in)** - Movies / TV / Anime / 1080p
|
||||||
|
@ -660,6 +661,7 @@
|
||||||
* ⭐ **[TamilMV](https://www.1tamilmv.com/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges
|
* ⭐ **[TamilMV](https://www.1tamilmv.com/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges
|
||||||
* [SkyMovies](https://skymovieshd.li/) - Movies / TV / Anime / Some NSFW
|
* [SkyMovies](https://skymovieshd.li/) - Movies / TV / Anime / Some NSFW
|
||||||
* [OOMoye](https://www.oomoye.me/) - Movies / TV / Anime / Some NSFW
|
* [OOMoye](https://www.oomoye.me/) - Movies / TV / Anime / Some NSFW
|
||||||
|
* [Bollyflix](https://bollyflix.phd/) - Movies / TV / Anime
|
||||||
* [Mallumv](https://mallumv.guru/) - Movies / Sub / Dub / 1080p / [Telegram](https://t.me/MalluMvoff)
|
* [Mallumv](https://mallumv.guru/) - Movies / Sub / Dub / 1080p / [Telegram](https://t.me/MalluMvoff)
|
||||||
* [SSR Movies](https://ssrmovies.com/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/+MF2EXeitLjMxY2Ux)
|
* [SSR Movies](https://ssrmovies.com/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/+MF2EXeitLjMxY2Ux)
|
||||||
* [MkvMoviesPoint](https://mkvmoviespoint.cool/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.me/mkvpoint1)
|
* [MkvMoviesPoint](https://mkvmoviespoint.cool/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.me/mkvpoint1)
|
||||||
|
@ -698,6 +700,7 @@
|
||||||
## ▷ Streaming
|
## ▷ Streaming
|
||||||
|
|
||||||
* ⭐ **[Cineby](https://www.cineby.app/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
* ⭐ **[Cineby](https://www.cineby.app/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||||
|
* ⭐ **[HydraHD](https://hydrahd.ac/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
||||||
* ⭐ **[ToonStream](https://toonstream.co/)** - Cartoons / 1080p / [Telegram](https://telegram.me/toonstream)
|
* ⭐ **[ToonStream](https://toonstream.co/)** - Cartoons / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||||
* ⭐ **[AniSAGA](https://anisaga.org/)** - Anime / Dub / 1080p
|
* ⭐ **[AniSAGA](https://anisaga.org/)** - Anime / Dub / 1080p
|
||||||
|
@ -806,7 +809,7 @@
|
||||||
|
|
||||||
## ▷ Streaming
|
## ▷ Streaming
|
||||||
|
|
||||||
* [StreamingCommunity](https://streamingcommunity.hiphop/) - Movies / TV
|
* [StreamingCommunity](https://streamingcommunity.luxe/) - Movies / TV
|
||||||
* [Altadefinizione](https://altadefinizione.prof/) - Movies / Sub / Dub / 1080p / 4K
|
* [Altadefinizione](https://altadefinizione.prof/) - Movies / Sub / Dub / 1080p / 4K
|
||||||
* [CasaCinema](https://casacinema.boats/) - Movies / TV / Anime / Sub / Dub / 1080p / 4K
|
* [CasaCinema](https://casacinema.boats/) - Movies / TV / Anime / Sub / Dub / 1080p / 4K
|
||||||
* [filmsenzalimiti](https://filmsenzalimiti.giving/) - Movies / TV / Sub / Dub / 1080p / 4K
|
* [filmsenzalimiti](https://filmsenzalimiti.giving/) - Movies / TV / Sub / Dub / 1080p / 4K
|
||||||
|
@ -815,6 +818,7 @@
|
||||||
* [CB01](https://cb01new.win/) - Movies / TV
|
* [CB01](https://cb01new.win/) - Movies / TV
|
||||||
* [SerieHD](https://www.seriehd.sbs/) - TV / Dub / 1080p
|
* [SerieHD](https://www.seriehd.sbs/) - TV / Dub / 1080p
|
||||||
* [toonitalia](https://toonitalia.xyz/) - TV / Anime
|
* [toonitalia](https://toonitalia.xyz/) - TV / Anime
|
||||||
|
* [AnimeUnity](https://www.animeunity.so/) - Anime
|
||||||
* [Arcoiris TV](https://www.arcoiris.tv/) - Italian TV / 720p
|
* [Arcoiris TV](https://www.arcoiris.tv/) - Italian TV / 720p
|
||||||
* [Kodi On Demand](https://guruhitech.com/kodi-on-demand-kod-kodi-add-on-tutte-le-info/) - Streaming Kodi Addon
|
* [Kodi On Demand](https://guruhitech.com/kodi-on-demand-kod-kodi-add-on-tutte-le-info/) - Streaming Kodi Addon
|
||||||
* [AnimeWorld](https://www.animeworld.so/) - Anime / Sub / 1080p
|
* [AnimeWorld](https://www.animeworld.so/) - Anime / Sub / 1080p
|
||||||
|
@ -871,7 +875,6 @@
|
||||||
* [AQ Stream](https://aqstream.com/) - Live TV / [Discord](https://discord.com/invite/dVhgAgwxHE)
|
* [AQ Stream](https://aqstream.com/) - Live TV / [Discord](https://discord.com/invite/dVhgAgwxHE)
|
||||||
* [Lesics](https://youtube.com/@LesicsJPN) - Sabins Civil Engineering
|
* [Lesics](https://youtube.com/@LesicsJPN) - Sabins Civil Engineering
|
||||||
* [National Film Archive of Japan](https://meiji.filmarchives.jp/) - Japanese Movie Archive
|
* [National Film Archive of Japan](https://meiji.filmarchives.jp/) - Japanese Movie Archive
|
||||||
* [Japanese Animated Film Classics](https://animation.filmarchives.jp/index.html) - Japanese Animated Movie Archive
|
|
||||||
* [kuukunen](https://touhou.kuukunen.net/) - Music
|
* [kuukunen](https://touhou.kuukunen.net/) - Music
|
||||||
* [SimulRadio](https://simulradio.info/) - Radio
|
* [SimulRadio](https://simulradio.info/) - Radio
|
||||||
* [Kagakueizo](https://www.kagakueizo.org/) - Science Documentaries
|
* [Kagakueizo](https://www.kagakueizo.org/) - Science Documentaries
|
||||||
|
@ -1148,7 +1151,6 @@
|
||||||
* [NewZect](https://newzect.com) - Asian Drama / Sub / 720p
|
* [NewZect](https://newzect.com) - Asian Drama / Sub / 720p
|
||||||
* [NetMovies](https://www.netmovies.com.br) - Movies / TV / Requires Login
|
* [NetMovies](https://www.netmovies.com.br) - Movies / TV / Requires Login
|
||||||
* [Bombozila](https://bombozila.com) - Movies / TV / Requires Login
|
* [Bombozila](https://bombozila.com) - Movies / TV / Requires Login
|
||||||
* [Ver Futebol TV](https://verfutebol1.online/) - Live Sports
|
|
||||||
* [Olhos na TV](https://www.olhosnatv.com.br) - Live TV / Sports
|
* [Olhos na TV](https://www.olhosnatv.com.br) - Live TV / Sports
|
||||||
* [Assistir TV Online Grátis](https://aovivo.pro/tvonline/) - Live TV / Sports
|
* [Assistir TV Online Grátis](https://aovivo.pro/tvonline/) - Live TV / Sports
|
||||||
* [Mega Canais](https://megacanais.com/aovivo/) - Live TV / Sports
|
* [Mega Canais](https://megacanais.com/aovivo/) - Live TV / Sports
|
||||||
|
@ -1311,7 +1313,7 @@
|
||||||
|
|
||||||
## ▷ Downloading / Скачивание
|
## ▷ Downloading / Скачивание
|
||||||
|
|
||||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/) - Android
|
* [Androeed](https://androeed.store/), [2](https://androeed.ru/) - Android
|
||||||
* [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books
|
* [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books
|
||||||
* [2BakSa](http://2baksa.ws/) - Video / Audio / Books
|
* [2BakSa](http://2baksa.ws/) - Video / Audio / Books
|
||||||
|
@ -1356,7 +1358,6 @@
|
||||||
## ▷ Streaming / Стриминг
|
## ▷ Streaming / Стриминг
|
||||||
|
|
||||||
* ⭐ **[rezka](https://rezka.ag/)**, [2](https://hdrezka.ag/) - Movies / TV / Anime / Sub / Dub / 4K / 1080p
|
* ⭐ **[rezka](https://rezka.ag/)**, [2](https://hdrezka.ag/) - Movies / TV / Anime / Sub / Dub / 4K / 1080p
|
||||||
* ⭐ **[KinoProfi](https://content.kinoprofi.club/)** - Movies / TV / Cartoons / Dub / 1080p
|
|
||||||
* ⭐ **[myfootball](https://myfootball.top/)** - Live Football
|
* ⭐ **[myfootball](https://myfootball.top/)** - Live Football
|
||||||
* [HD VideoBox](https://strannikmodz.me/apps/media/135-hdvideobox-222.html) - Movies / TV / Anime / Aggregator / [AMOLED](https://strannikmodz.me/other_modz/sirenes_team/127-hd-videobox-st-221.html)
|
* [HD VideoBox](https://strannikmodz.me/apps/media/135-hdvideobox-222.html) - Movies / TV / Anime / Aggregator / [AMOLED](https://strannikmodz.me/other_modz/sirenes_team/127-hd-videobox-st-221.html)
|
||||||
* [KinoBase](https://kinobase.org/) - Movies / TV / Sub / Dub / 1080p
|
* [KinoBase](https://kinobase.org/) - Movies / TV / Sub / Dub / 1080p
|
||||||
|
@ -1639,7 +1640,7 @@
|
||||||
* ⭐ **[Spanish Reading CSE](https://cse.google.com/cse?cx=85e4a562f2abf40f6)** / [SMAGX](https://smagx.com/) - Multi-Site Book Search
|
* ⭐ **[Spanish Reading CSE](https://cse.google.com/cse?cx=85e4a562f2abf40f6)** / [SMAGX](https://smagx.com/) - Multi-Site Book Search
|
||||||
* [eBiblioteca](https://ebiblioteca.org/) - Books
|
* [eBiblioteca](https://ebiblioteca.org/) - Books
|
||||||
* [ePub Gratis](https://www.epubgratis.info/) - Books
|
* [ePub Gratis](https://www.epubgratis.info/) - Books
|
||||||
* [LectuEpub](https://lectuepub2.com/) - Books
|
* [LectuEpub](https://lectuepub4.com/) - Books
|
||||||
* [LectuEpubGratis](https://lectuepubgratis3.com/) - Books
|
* [LectuEpubGratis](https://lectuepubgratis3.com/) - Books
|
||||||
* [Lectulandia](https://ww3.lectulandia.com/), [2](https://ww3.lectulandia.co/) - Books
|
* [Lectulandia](https://ww3.lectulandia.com/), [2](https://ww3.lectulandia.co/) - Books
|
||||||
* [Ebookelo](https://ww2.ebookelo.com/) - Books
|
* [Ebookelo](https://ww2.ebookelo.com/) - Books
|
||||||
|
@ -1675,7 +1676,7 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Swedish
|
# ► Swedish / Sverige
|
||||||
|
|
||||||
* [Eniro](https://www.eniro.se/) - Search
|
* [Eniro](https://www.eniro.se/) - Search
|
||||||
|
|
||||||
|
@ -1705,7 +1706,6 @@
|
||||||
# ► Turkish / Türkçe
|
# ► Turkish / Türkçe
|
||||||
|
|
||||||
* ⭐ **[caglaryalcin's list](https://github.com/caglaryalcin/ublacklist/)** or [TemizAramaMotorum](https://gitlab.com/fr0stb1rd/temizaramamotorum) - Get rid of low-quality Turkish results
|
* ⭐ **[caglaryalcin's list](https://github.com/caglaryalcin/ublacklist/)** or [TemizAramaMotorum](https://gitlab.com/fr0stb1rd/temizaramamotorum) - Get rid of low-quality Turkish results
|
||||||
* [Türkçe Mahremiyet Rehberi](https://github.com/1Xnes/turkish-privacy-guide) - Turkish Privacy Guide
|
|
||||||
* [Teyit](https://teyit.org/), [DoğrulukPayı](https://www.dogrulukpayi.com/) - News Verification
|
* [Teyit](https://teyit.org/), [DoğrulukPayı](https://www.dogrulukpayi.com/) - News Verification
|
||||||
|
|
||||||
## ▷ Downloading / İndirme
|
## ▷ Downloading / İndirme
|
||||||
|
@ -1731,12 +1731,13 @@
|
||||||
* [Filmmodu](https://www.filmmodu.tv/), [Jet Film izle](https://jetfilmizle.de/), [4kFilmizlesene](https://www.4kfilmizlesene.org/) or [Film İzlesene](https://www.filmizlesene.pro) - Movies
|
* [Filmmodu](https://www.filmmodu.tv/), [Jet Film izle](https://jetfilmizle.de/), [4kFilmizlesene](https://www.4kfilmizlesene.org/) or [Film İzlesene](https://www.filmizlesene.pro) - Movies
|
||||||
* [Turkish123](https://turkish123.com/) or [Yoturkish](https://www.yoturkish.com) - Turkish TV series with English subtitles
|
* [Turkish123](https://turkish123.com/) or [Yoturkish](https://www.yoturkish.com) - Turkish TV series with English subtitles
|
||||||
* [Türk Anime](https://www.turkanime.co/) / [Downloader](https://github.com/KebabLord/turkanime-indirici), [Anizm](https://anizm.net/), [Anime Who](https://animewho.com), [TR Anime İzle](https://www.tranimeizle.co), [OpenAnime](https://openani.me/) - Anime
|
* [Türk Anime](https://www.turkanime.co/) / [Downloader](https://github.com/KebabLord/turkanime-indirici), [Anizm](https://anizm.net/), [Anime Who](https://animewho.com), [TR Anime İzle](https://www.tranimeizle.co), [OpenAnime](https://openani.me/) - Anime
|
||||||
|
* [KralBozguncu](https://discord.gg/7rVwCEsZv9) or [Bozguncu Kirathanesi](https://discord.com/invite/Bzm9pgH9QA) - Live Football
|
||||||
|
|
||||||
## ▷ Reading / Okuma
|
## ▷ Reading / Okuma
|
||||||
|
|
||||||
* ⭐ **[Kitap Botu](https://t.me/Kitap777bot)** - The largest Turkish PDF/EPUB/MOBI archive in the world
|
* ⭐ **[Kitap Botu](https://t.me/Kitap777bot)** - The largest Turkish PDF/EPUB/MOBI archive in the world
|
||||||
* 🌐 **[Turkish PDF Channels](https://new2.telemetr.io/en/catalog/turkey/books?page=1&sort=participants_growth_7_days)** - Most popular Turkish PDF channels in Telegram
|
* 🌐 **[Turkish PDF Channels](https://new2.telemetr.io/en/catalog/turkey/books?page=1&sort=participants_growth_7_days)** - Most popular Turkish PDF channels in Telegram
|
||||||
* [Telegram Groups](https://t.me/addlist/ioGiM9KIZvhjOTZk), [Whatsapp Groups](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books
|
* [Kitap](https://t.me/addlist/ioGiM9KIZvhjOTZk) or [E kütüphanem](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books
|
||||||
* [Manga Denizi](https://www.mangadenizi.net/) - Manga / [Discord](https://discord.com/invite/8zBMSGZ)
|
* [Manga Denizi](https://www.mangadenizi.net/) - Manga / [Discord](https://discord.com/invite/8zBMSGZ)
|
||||||
* [Mavi Manga](https://mavimanga.com/) - Manga
|
* [Mavi Manga](https://mavimanga.com/) - Manga
|
||||||
* [Trwebtoon](https://trwebtoon.com/) - Manga
|
* [Trwebtoon](https://trwebtoon.com/) - Manga
|
||||||
|
@ -1790,17 +1791,17 @@
|
||||||
|
|
||||||
* ⭐ **[Voz.vn](https://voz.vn/)**, **[TECHRUM.VN](https://www.techrum.vn/)** or **[WhiteHat.vn](https://whitehat.vn/)** - Tech Forum
|
* ⭐ **[Voz.vn](https://voz.vn/)**, **[TECHRUM.VN](https://www.techrum.vn/)** or **[WhiteHat.vn](https://whitehat.vn/)** - Tech Forum
|
||||||
* ⭐ **[J2team](https://www.facebook.com/groups/j2team.community)** - Tech Community
|
* ⭐ **[J2team](https://www.facebook.com/groups/j2team.community)** - Tech Community
|
||||||
* ⭐ **[Unikey](https://www.unikey.org/en/)**, [Vietkey](https://vietkey.com.vn/) or [EVkey](https://evkeyvn.com/) - Vietnamese Typing Software
|
* ⭐ **[Unikey](https://www.unikey.org/en/)** - Vietnamese Keyboard
|
||||||
* ⭐ **[Baomoi](https://baomoi.com/)** - News Aggregator / [Mobile](https://play.google.com/store/apps/details?id=com.epi&hl=en_US)
|
* ⭐ **[Baomoi](https://baomoi.com/)** - News Aggregator / [Mobile](https://play.google.com/store/apps/details?id=com.epi&hl=en_US)
|
||||||
* [Quantrimang](https://quantrimang.com/), [Anonyviet](https://anonyviet.com/) - Tech News
|
* [Quantrimang](https://quantrimang.com/), [Anonyviet](https://anonyviet.com/) - Tech News
|
||||||
* [Phudeviet](http://phudeviet.org/) - Subtitles
|
* [Phudeviet](http://phudeviet.org/) - Subtitles
|
||||||
* [Zalo](https://id.zalo.me/), [2](https://chat.zalo.me/) - Chat App / [Dark Mode](https://zadark.com/) / [Desktop](https://zalo.me/pc) / [Android](https://play.google.com/store/apps/details?id=com.zing.zalo&hl=en) / [iOS](https://apps.apple.com/us/app/zalo/id579523206)
|
* [Zalo](https://id.zalo.me/), [2](https://chat.zalo.me/) - Chat App / [Dark Mode](https://zadark.com/) / [Desktop](https://zalo.me/pc) / [Android](https://play.google.com/store/apps/details?id=com.zing.zalo&hl=en) / [iOS](https://apps.apple.com/us/app/zalo/id579523206)
|
||||||
* [Speedtest](https://speedtest.vn/), [Vinahost](https://speedtest.vinahost.vn/) - Internet Speed Test
|
* [Speedtest](https://speedtest.vn/) - Internet Speed Test
|
||||||
* [Forumvi](https://www.forumvi.com/) - Create a Forum
|
* [Forumvi](https://www.forumvi.com/) - Create a Forum
|
||||||
* [LichAm](https://licham.net/), [XemLichAm](https://www.xemlicham.com/) or [LichAmHomNay](https://licham.com.vn/) - Lunar Calendar
|
* [LichAm](https://licham.net/), [XemLichAm](https://www.xemlicham.com/) or [LichAmHomNay](https://licham.com.vn/) - Lunar Calendar
|
||||||
* [BusMap](https://busmap.vn/) - Bus Journey
|
* [BusMap](https://busmap.vn/) - Bus Journey
|
||||||
* [abProxy](https://proxy.abtech.vn/) - Web Proxy
|
* [abProxy](https://proxy.abtech.vn/) - Web Proxy
|
||||||
* [XaBuon](https://xabuon.com/) or [Xem](https://xem.vn/) - Memes
|
* [XaBuon](https://xabuon.com/) - Memes
|
||||||
* [GameVui](https://gamevui.vn/) or [Game24h](https://game24h.vn/) - Browser Games
|
* [GameVui](https://gamevui.vn/) or [Game24h](https://game24h.vn/) - Browser Games
|
||||||
* [KiTuHay](https://kituhay.com/), [Symbols](https://symbols.vn/), [KTDB](https://ktdb.vn/) or [KiTuAz](https://kituaz.com/) - Special Characters
|
* [KiTuHay](https://kituhay.com/), [Symbols](https://symbols.vn/), [KTDB](https://ktdb.vn/) or [KiTuAz](https://kituaz.com/) - Special Characters
|
||||||
* [Run](https://run.vn/) or [IconFB](https://iconfb.net/) - Emojis
|
* [Run](https://run.vn/) or [IconFB](https://iconfb.net/) - Emojis
|
||||||
|
@ -1810,7 +1811,7 @@
|
||||||
* [TestMic](https://testmic.vn/) - Test Microphone
|
* [TestMic](https://testmic.vn/) - Test Microphone
|
||||||
* [TestCam](https://testcamera.vn/), [CamTest](https://cameratest.vn/) - Test Camera
|
* [TestCam](https://testcamera.vn/), [CamTest](https://cameratest.vn/) - Test Camera
|
||||||
* [VNTyping](https://vntyping.com/), [VietnameseTyping](https://vietnamesetyping.com/) - Vietnamese Typing
|
* [VNTyping](https://vntyping.com/), [VietnameseTyping](https://vietnamesetyping.com/) - Vietnamese Typing
|
||||||
* [diendan](https://diendan.hocmai.vn/) - Study Forum
|
* [Diễn đàn Học Mãi](https://diendan.hocmai.vn/) - Study Forum
|
||||||
* [MuaThongMinh](https://muathongminh.vn/) - E-commerce Price Tracker
|
* [MuaThongMinh](https://muathongminh.vn/) - E-commerce Price Tracker
|
||||||
* [FBVN](https://chromewebstore.google.com/detail/hlnhbiajcpmjpgpedgfdigiccejengbi), [L.O.C](https://chromewebstore.google.com/detail/eojdckfcadamkapabechhbnkleligand) or [MonokaiToolkit](https://chromewebstore.google.com/detail/monokaitoolkit-extension/dagbggkfgebkmlmnlidioknbhilfnngn) - Friends Filter for Facebook
|
* [FBVN](https://chromewebstore.google.com/detail/hlnhbiajcpmjpgpedgfdigiccejengbi), [L.O.C](https://chromewebstore.google.com/detail/eojdckfcadamkapabechhbnkleligand) or [MonokaiToolkit](https://chromewebstore.google.com/detail/monokaitoolkit-extension/dagbggkfgebkmlmnlidioknbhilfnngn) - Friends Filter for Facebook
|
||||||
* [J2TEAM](https://home.j2team.dev/) - Browser Extensions & Web Applications / [Facebook](https://www.facebook.com/groups/364997627165697)
|
* [J2TEAM](https://home.j2team.dev/) - Browser Extensions & Web Applications / [Facebook](https://www.facebook.com/groups/364997627165697)
|
||||||
|
@ -1836,7 +1837,6 @@
|
||||||
* ⭐ **[ZingMP3](https://zingmp3.vn/)** - Music
|
* ⭐ **[ZingMP3](https://zingmp3.vn/)** - Music
|
||||||
* [BiluTV](https://bilutvw.com/) - Movies / TV / Anime / Sub / Dub
|
* [BiluTV](https://bilutvw.com/) - Movies / TV / Anime / Sub / Dub
|
||||||
* [JenkaStudioVN](https://www.jenkastudiovn.net/) - Movies / Anime / Sub / Dub / 1080p
|
* [JenkaStudioVN](https://www.jenkastudiovn.net/) - Movies / Anime / Sub / Dub / 1080p
|
||||||
* [PhimMoi](https://phimmoiiii.net/) - Movies / TV / Sub
|
|
||||||
* [Ô Phim](https://ophim.tuphim.net/) - Movies / Anime / Cartoon / TV shows / Sub / 1080p
|
* [Ô Phim](https://ophim.tuphim.net/) - Movies / Anime / Cartoon / TV shows / Sub / 1080p
|
||||||
* [FIMMOI](https://vuaphimmoi7.net/) - Movies / TV shows / Anime / Sub / Dub / 720p
|
* [FIMMOI](https://vuaphimmoi7.net/) - Movies / TV shows / Anime / Sub / Dub / 720p
|
||||||
* [Danet](https://danet.vn/) - Movies / TV / Anime / Live TV / Sub / 720p
|
* [Danet](https://danet.vn/) - Movies / TV / Anime / Live TV / Sub / 720p
|
||||||
|
@ -1847,7 +1847,7 @@
|
||||||
* [VuiGhe](https://vuighe3.com/) - Anime / Sub / 720p
|
* [VuiGhe](https://vuighe3.com/) - Anime / Sub / 720p
|
||||||
* [phim.in](https://phim.in.net/) - Anime / Movies / TV shows / Chinese Animation / Sub / Dub / 1080p
|
* [phim.in](https://phim.in.net/) - Anime / Movies / TV shows / Chinese Animation / Sub / Dub / 1080p
|
||||||
* [AnimeTVN](https://animetvn4.com/) - Anime / Chinese Animation / Sub / 1080p
|
* [AnimeTVN](https://animetvn4.com/) - Anime / Chinese Animation / Sub / 1080p
|
||||||
* [animevietsub](https://animevietsub.dev/) - Anime / Chinese Animation / Sub / 1080p
|
* [AnimeVietsub](https://animevietsub.link/) - Anime / Chinese Animation / Sub / 1080p
|
||||||
* [Ani4u](https://ani4u.org/) - Anime / Sub / 1080p
|
* [Ani4u](https://ani4u.org/) - Anime / Sub / 1080p
|
||||||
* [Phimplay](https://phimplay24h.com/) - Anime / Movies / TV shows / Sub / Dub / 720p
|
* [Phimplay](https://phimplay24h.com/) - Anime / Movies / TV shows / Sub / Dub / 720p
|
||||||
* [AnimeVSub](https://animevsub.eu.org/) - Anime / Chinese Animation / Sub / 1080p / [Extension](https://github.com/anime-vsub/extension-animevsub-helper)
|
* [AnimeVSub](https://animevsub.eu.org/) - Anime / Chinese Animation / Sub / 1080p / [Extension](https://github.com/anime-vsub/extension-animevsub-helper)
|
||||||
|
@ -1952,7 +1952,7 @@
|
||||||
* [zoom.lk](https://zoom.lk/) or [Cineru.lk](https://cineru.lk/) - Sinhalese / Subtitles
|
* [zoom.lk](https://zoom.lk/) or [Cineru.lk](https://cineru.lk/) - Sinhalese / Subtitles
|
||||||
* [Najdi.si](https://www.najdi.si/) - Slovene / Search
|
* [Najdi.si](https://www.najdi.si/) - Slovene / Search
|
||||||
* [BSF](https://bsf.si/) - Slovene Film Database
|
* [BSF](https://bsf.si/) - Slovene Film Database
|
||||||
* [iptv-ch](https://iptv-ch.github.io/) - Swiss / IPTV Resources
|
* [iptv-ch](https://rentry.co/FMHYBase64#swiss-iptv-playlists) - Swiss / IPTV Resources
|
||||||
* [tagalogdubbed](https://tagalogdubbed.com/) - Tagalog / Streaming / Movies / TV
|
* [tagalogdubbed](https://tagalogdubbed.com/) - Tagalog / Streaming / Movies / TV
|
||||||
* [Segoideas](https://segoideas.com/) - Taiwanese / Streaming / TV
|
* [Segoideas](https://segoideas.com/) - Taiwanese / Streaming / TV
|
||||||
* [wlext](https://wlext.is/) - Turkish / Filipino / Thai / Streaming / Movies
|
* [wlext](https://wlext.is/) - Turkish / Filipino / Thai / Streaming / Movies
|
||||||
|
|
76
docs/posts/april-2025.md
Normal file
76
docs/posts/april-2025.md
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
---
|
||||||
|
title: Monthly Updates [April]
|
||||||
|
description: April 2025 updates
|
||||||
|
date: 2025-04-01
|
||||||
|
next: false
|
||||||
|
|
||||||
|
prev: false
|
||||||
|
|
||||||
|
footer: true
|
||||||
|
---
|
||||||
|
|
||||||
|
<Post authors="nbats"/>
|
||||||
|
|
||||||
|
:::info
|
||||||
|
These update threads only contains major updates. If you're interested
|
||||||
|
in seeing all minor changes you can follow our
|
||||||
|
[Commits Page](https://github.com/fmhy/FMHYedit/commits/main) on GitHub or
|
||||||
|
[Updates Channel](https://redd.it/17f8msf) in Discord.
|
||||||
|
:::
|
||||||
|
|
||||||
|
# Wiki Updates
|
||||||
|
|
||||||
|
- Added a **[Guide](https://fmhy.net/other/selfhosting)** to set up and run your own instance of FMHY locally.
|
||||||
|
|
||||||
|
- Added a **[Userscript](https://greasyfork.org/en/scripts/528660-fmhy-safelink-guard)** version of the FMHY Safeguard.
|
||||||
|
|
||||||
|
- You can now choose [custom text colors](https://i.imgur.com/kXNRPjM.mp4) for the site using the icons in the sidebar + updated the feedback system to be more prominent.
|
||||||
|
|
||||||
|
- Cleaned up Drama Streaming section, removed dead / bad sites, and starred a few that seemed to work the best, [before vs after](https://i.imgur.com/E3QTrUn.png).
|
||||||
|
|
||||||
|
- Cleaned up Japanese Learning section, note that no sites were removed, just moved, [before vs after](https://i.imgur.com/wPboWjk.png).
|
||||||
|
|
||||||
|
|
||||||
|
- Added usage limit tags to the [AI Video Generators](https://fmhy.net/ai#video-generation).
|
||||||
|
|
||||||
|
- Better organized font section + split into [Generators](https://fmhy.net/text-tools#font-text-generators) and [Customization](https://fmhy.net/text-tools#font-customization).
|
||||||
|
|
||||||
|
- Added a few [New Criteria](https://i.imgur.com/s7UGdIz.png) to our streaming site grading system.
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
# Stars Added ⭐
|
||||||
|
|
||||||
|
- Starred [DAB Music Player](https://fmhy.net/audiopiracyguide#download-sites) in Audio DDL. Single click FLAC album downloads, has web app + desktop apps for for windows, mac, and linux, with android support coming soon.
|
||||||
|
|
||||||
|
- Starred [IronFox](https://fmhy.net/storage#privacy-based) in Android Privacy Browsers. Firefox-based browser with a focus on privacy / security. Feature-rich, recommended by the librewolf dev team, and our community seems to really like it.
|
||||||
|
|
||||||
|
- Starred [AdGuardExtra](https://fmhy.net/social-media-tools#twitch-adblockers) in Twitch Adblockers. This seems to be the best way to block them now.
|
||||||
|
|
||||||
|
- Starred [AMP4](https://fmhy.net/social-media-tools#youtube-downloaders) in YouTube Video Downloaders, ad-free, supports playlists and 3 hour long videos.
|
||||||
|
|
||||||
|
- Starred [JustDeleteMe](https://fmhy.net/adblockvpnguide#web-privacy) in Web Privacy. Directory of links to more easily delete your accounts from web services.
|
||||||
|
|
||||||
|
- Starred [PocketCasts](https://fmhy.net/audiopiracyguide) in Podcast Streaming. Popular iOS podcast player that recently added both desktop + web apps.
|
||||||
|
|
||||||
|
- Starred [ADS-B Exchange](https://fmhy.net/miscguide#flights) in Flights section, one of the only that doesn't lock features behind paywalls.
|
||||||
|
|
||||||
|
- Replaced star for xManager with [ReVanced Manager](https://fmhy.net/android-iosguide#android-audio) in Ad-Free Spotify as it has more features, less issues, and xManager itself recommends it.
|
||||||
|
|
||||||
|
- Removed star for bark as its limited, and star for Tortoise TTS as it doesn't sound good, and instead starred [TTS Online](https://fmhy.net/ai#text-to-speech), which sounds better and has a 10k daily character limit.
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
# Things Removed
|
||||||
|
|
||||||
|
- Removed TorrentGalaxy, doesn't look like its coming back anytime soon sadly.
|
||||||
|
|
||||||
|
- Removed The Last Disaster from Audio DDL as they've shut down.
|
||||||
|
|
||||||
|
- Removed TOTV from Live TV as every channel seems to be YouTube videos now.
|
||||||
|
|
||||||
|
- Unstarred Plex as they've made remote streaming [paid only](https://www.plex.tv/blog/important-2025-plex-updates/), and increased their prices at the same time.
|
||||||
|
|
||||||
|
- Unstarred PSArips as their download process is very annoying.
|
||||||
|
|
||||||
|
- Unstarred Bookracy as its been having issues for awhile now.
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
title: Monthly Updates [March 2025]
|
title: Monthly Updates [March]
|
||||||
description: March 2025 updates
|
description: March 2025 updates
|
||||||
date: 2025-03-01
|
date: 2025-03-01
|
||||||
next: false
|
next: false
|
||||||
|
|
|
@ -59,6 +59,6 @@ Multi-site search engines
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
### [Dupe Checker](https://github.com/DanFMHY/dupe-checker)
|
### [Dupe Checker](https://github.com/fmhy/dupe-checker)
|
||||||
|
|
||||||
FMHY Dupe Check Tool
|
FMHY Dupe Check Tool
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 318 KiB After Width: | Height: | Size: 72 KiB |
|
@ -9,7 +9,7 @@
|
||||||
* 🌐 **[Open Slum](https://open-slum.org/)** - Book Site Index / Uptime Tracking
|
* 🌐 **[Open Slum](https://open-slum.org/)** - Book Site Index / Uptime Tracking
|
||||||
* ⭐ **[Anna's Archive](https://annas-archive.org/)**, [2](https://annas-archive.li/), [3](https://annas-archive.se/) - Books / Comics / Educational / [Expand Downloads](https://greasyfork.org/en/scripts/494262) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
* ⭐ **[Anna's Archive](https://annas-archive.org/)**, [2](https://annas-archive.li/), [3](https://annas-archive.se/) - Books / Comics / Educational / [Expand Downloads](https://greasyfork.org/en/scripts/494262) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
||||||
* ⭐ **[Library Genesis](https://libgen.rs/)** - Books / Comics / Manga / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_libgen_tools) / [Mirrors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_libgen_mirrors)
|
* ⭐ **[Library Genesis](https://libgen.rs/)** - Books / Comics / Manga / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_libgen_tools) / [Mirrors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_libgen_mirrors)
|
||||||
* ⭐ **[Z-Library](https://z-lib.gs/)**, [2](https://articles.sk/), [3](https://z-lib.gd/), [4](https://1lib.sk/), [5](https://z-library.sk/) - Books / Comics / Educational / [Apps / Extensions](https://go-to-library.sk/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/)
|
* ⭐ **[Z-Library](https://z-lib.gd/)**, [2](https://articles.sk/), [3](https://1lib.sk/), [4](https://z-library.sk/), [5](https://z-lib.fm/) - Books / Comics / Educational / [Apps / Extensions](https://go-to-library.sk/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/)
|
||||||
* ⭐ **[Mobilism](https://forum.mobilism.org)**, [2](https://forum.mobilism.me/) - Books / Audiobooks / Magazines / Newspapers / Comics / Signup Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
* ⭐ **[Mobilism](https://forum.mobilism.org)**, [2](https://forum.mobilism.me/) - Books / Audiobooks / Magazines / Newspapers / Comics / Signup Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** / [Invites](https://www.myanonamouse.net/inviteapp.php)
|
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** / [Invites](https://www.myanonamouse.net/inviteapp.php)
|
||||||
* [Archive.org](https://archive.org/details/texts) - Books / Audiobooks / Magazines / Newspapers / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_internet_archive_tools)
|
* [Archive.org](https://archive.org/details/texts) - Books / Audiobooks / Magazines / Newspapers / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_internet_archive_tools)
|
||||||
|
@ -43,7 +43,6 @@
|
||||||
* [The Free Book Library](https://ebooks.i2p/) - I2P Required
|
* [The Free Book Library](https://ebooks.i2p/) - I2P Required
|
||||||
* [Find Books](https://www.findbooks.info/) - IPFS Required
|
* [Find Books](https://www.findbooks.info/) - IPFS Required
|
||||||
* [Antilibrary](http://127.0.0.1:43110/Antilibrary.bit/), [2](https://proxy.zeronet.dev/Antilibrary.bit/) - ZeroNet Required
|
* [Antilibrary](http://127.0.0.1:43110/Antilibrary.bit/), [2](https://proxy.zeronet.dev/Antilibrary.bit/) - ZeroNet Required
|
||||||
* [IBHaven](https://ibhaven.st/) - Tor + P2P Client Required
|
|
||||||
* [/r/FreeEBOOKS](https://reddit.com/r/FreeEBOOKS)
|
* [/r/FreeEBOOKS](https://reddit.com/r/FreeEBOOKS)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -203,7 +202,7 @@
|
||||||
* [Targum](http://targum.info/targumic-texts/) - Targum Translation
|
* [Targum](http://targum.info/targumic-texts/) - Targum Translation
|
||||||
* [Sefaria](https://www.sefaria.org/) - Jewish Texts Translations
|
* [Sefaria](https://www.sefaria.org/) - Jewish Texts Translations
|
||||||
* [Muslim Scholars](https://muslimscholars.info/) - Muslim Scholar Database
|
* [Muslim Scholars](https://muslimscholars.info/) - Muslim Scholar Database
|
||||||
* [2Muslims](https://www.2muslims.com/) or [IslamHouse](https://islamhouse.com/en) - Muslim Resources
|
* [2Muslims](https://www.2muslims.com/) - Muslim Resources
|
||||||
* [Five Prayers](https://github.com/Five-Prayers/five-prayers-android) - Muslim Tools App
|
* [Five Prayers](https://github.com/Five-Prayers/five-prayers-android) - Muslim Tools App
|
||||||
* [Sunnah.com](https://sunnah.com/) - Hadith Translation
|
* [Sunnah.com](https://sunnah.com/) - Hadith Translation
|
||||||
|
|
||||||
|
@ -214,7 +213,7 @@
|
||||||
* ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)**
|
* ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)**
|
||||||
* ↪️ **[Quote Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_quote_indexes)**
|
* ↪️ **[Quote Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_quote_indexes)**
|
||||||
* ↪️ **[UFO Books](https://rentry.co/FMHYBase64#ufo-books)**
|
* ↪️ **[UFO Books](https://rentry.co/FMHYBase64#ufo-books)**
|
||||||
* ⭐ **[Poetry Foundation](https://www.poetryfoundation.org/)**, [Poetry In Translation](https://www.poetryintranslation.com/), [PoemHunter](https://www.poemhunter.com/), [CAPA](https://capa.conncoll.edu/), [DiscoverPoetry](https://discoverpoetry.com/), [RUVerses](https://ruverses.com/), [PoetryNook](https://poetrynook.com/) or [Poetry.com](https://www.poetry.com/) - Poetry
|
* ⭐ **[Poetry Foundation](https://www.poetryfoundation.org/)**, [Poetry In Translation](https://www.poetryintranslation.com/), [PoemHunter](https://www.poemhunter.com/), [CAPA](https://capa.conncoll.edu/), [DiscoverPoetry](https://discoverpoetry.com/), [RUVerses](https://ruverses.com/) or [Poetry.com](https://www.poetry.com/) - Poetry
|
||||||
* ⭐ **[The Anarchist Library](https://theanarchistlibrary.org/special/index)** - Anarchism
|
* ⭐ **[The Anarchist Library](https://theanarchistlibrary.org/special/index)** - Anarchism
|
||||||
* [FreeSFOnline](https://www.freesfonline.net/) - Sci-Fi / Fantasy
|
* [FreeSFOnline](https://www.freesfonline.net/) - Sci-Fi / Fantasy
|
||||||
* [eBookHunter.net](https://www.ebookhunter.net/), [EpubPuB](https://www.epub.pub/) or [ReadOnlineFreeBook](https://readonlinefreebook.com/) - Romance / Fantasy
|
* [eBookHunter.net](https://www.ebookhunter.net/), [EpubPuB](https://www.epub.pub/) or [ReadOnlineFreeBook](https://readonlinefreebook.com/) - Romance / Fantasy
|
||||||
|
@ -309,7 +308,6 @@
|
||||||
* [Audiobookss](https://audiobookss.com/)
|
* [Audiobookss](https://audiobookss.com/)
|
||||||
* [LearnOutLoud](https://www.learnoutloud.com/Free-Audiobooks)
|
* [LearnOutLoud](https://www.learnoutloud.com/Free-Audiobooks)
|
||||||
* [Golden Audiobooks](https://goldenaudiobook.net/)
|
* [Golden Audiobooks](https://goldenaudiobook.net/)
|
||||||
* [Read For Me](https://www.readsforme.com/)
|
|
||||||
* [DigitalBook](https://www.digitalbook.io/)
|
* [DigitalBook](https://www.digitalbook.io/)
|
||||||
* [Librivox](https://librivox.org/)
|
* [Librivox](https://librivox.org/)
|
||||||
* [Book Radio](https://bookradio.vercel.app/)
|
* [Book Radio](https://bookradio.vercel.app/)
|
||||||
|
@ -351,9 +349,9 @@
|
||||||
## ▷ Comics
|
## ▷ Comics
|
||||||
|
|
||||||
* ⭐ **[ReadComicsOnline](https://readcomiconline.li/)**
|
* ⭐ **[ReadComicsOnline](https://readcomiconline.li/)**
|
||||||
|
* ⭐ **[BatCave](https://batcave.biz/)**
|
||||||
* ⭐ **[GetComics](https://getcomics.org/)** - Download Comics
|
* ⭐ **[GetComics](https://getcomics.org/)** - Download Comics
|
||||||
* ⭐ **[ComicBookPlus](https://comicbookplus.com/)** - Golden Age Comics
|
* ⭐ **[ComicBookPlus](https://comicbookplus.com/)** - Golden Age Comics
|
||||||
* ⭐ **[GoComics](https://www.gocomics.com/)** - Comics Strips
|
|
||||||
* ⭐ **[Explosm](https://explosm.net/rcg)** - Cyanide & Happiness Webcomics
|
* ⭐ **[Explosm](https://explosm.net/rcg)** - Cyanide & Happiness Webcomics
|
||||||
* ⭐ **[xkcd](https://xkcd.com/)** or [findxkcd](https://xkcd-search.typesense.org/) - xkcd Webcomics / [Explanations](https://www.explainxkcd.com/wiki/index.php/Main_Page)
|
* ⭐ **[xkcd](https://xkcd.com/)** or [findxkcd](https://xkcd-search.typesense.org/) - xkcd Webcomics / [Explanations](https://www.explainxkcd.com/wiki/index.php/Main_Page)
|
||||||
* ⭐ **[Comic CSE](https://cse.google.com/cse?cx=006516753008110874046:p4hgytyrohg)** - Multi-Site Comic Search
|
* ⭐ **[Comic CSE](https://cse.google.com/cse?cx=006516753008110874046:p4hgytyrohg)** - Multi-Site Comic Search
|
||||||
|
@ -367,6 +365,7 @@
|
||||||
* [OldComicsWorld](https://oldcomicsworld.blogspot.com/) - Golden Age Comic Downloads
|
* [OldComicsWorld](https://oldcomicsworld.blogspot.com/) - Golden Age Comic Downloads
|
||||||
* [DigitalComicMuseum](https://digitalcomicmuseum.com/) - Golden Age Comic Downloads
|
* [DigitalComicMuseum](https://digitalcomicmuseum.com/) - Golden Age Comic Downloads
|
||||||
* [ComicsForAll](https://comicsforall269084760.wordpress.com/) - Golden Age Comic Downloads
|
* [ComicsForAll](https://comicsforall269084760.wordpress.com/) - Golden Age Comic Downloads
|
||||||
|
* [GoComics](https://www.gocomics.com/) - Comics Strips / [Bypass Paywalls](https://pastebin.com/E8d6UX7S), [2](https://github.com/Idiot-01/Gocomics-Depaywall)
|
||||||
* [Comics Kingdom](https://comicskingdom.com/) - Comics Strips
|
* [Comics Kingdom](https://comicskingdom.com/) - Comics Strips
|
||||||
* [Zahard](https://zahard.xyz/) - Webcomics
|
* [Zahard](https://zahard.xyz/) - Webcomics
|
||||||
* [The Oatmeal](https://theoatmeal.com/) - Webcomics
|
* [The Oatmeal](https://theoatmeal.com/) - Webcomics
|
||||||
|
@ -399,7 +398,6 @@
|
||||||
* ⭐ **[MangaDex](https://mangadex.org/)** / [Downloader](https://mangadex-dl.mansuf.link/) / [Script](https://github.com/frozenpandaman/mangadex-dl)
|
* ⭐ **[MangaDex](https://mangadex.org/)** / [Downloader](https://mangadex-dl.mansuf.link/) / [Script](https://github.com/frozenpandaman/mangadex-dl)
|
||||||
* ⭐ **[ComicK](https://comick.io/)** / [Discord](https://discord.gg/comick)
|
* ⭐ **[ComicK](https://comick.io/)** / [Discord](https://discord.gg/comick)
|
||||||
* ⭐ **[Weeb Central](https://weebcentral.com/)**
|
* ⭐ **[Weeb Central](https://weebcentral.com/)**
|
||||||
* ⭐ **[MangaPark](https://mangapark.net/)** / [Discord](https://discord.gg/jctSzUBWyQ) / [Proxies](https://rentry.co/mangapark)
|
|
||||||
* ⭐ **[Nyaa Manga / LNs](https://nyaa.si/?f=0&c=3_0&q=)** - Torrents
|
* ⭐ **[Nyaa Manga / LNs](https://nyaa.si/?f=0&c=3_0&q=)** - Torrents
|
||||||
* ⭐ **[MangaPiracy](https://discord.gg/ZgMtAyxFSU)** - Manga Piracy Server / [Subreddit](https://reddit.com/r/MangaPiracy)
|
* ⭐ **[MangaPiracy](https://discord.gg/ZgMtAyxFSU)** - Manga Piracy Server / [Subreddit](https://reddit.com/r/MangaPiracy)
|
||||||
* ⭐ **[Manga CSE](https://cse.google.com/cse?cx=006516753008110874046:4im0fkhej3z)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:a5mavctjnsc#gsc.tab=0) - Multi-Site Manga Search
|
* ⭐ **[Manga CSE](https://cse.google.com/cse?cx=006516753008110874046:4im0fkhej3z)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:a5mavctjnsc#gsc.tab=0) - Multi-Site Manga Search
|
||||||
|
@ -410,6 +408,8 @@
|
||||||
* [The Manga Library](https://rentry.co/FMHYBase64#the-manga-library)
|
* [The Manga Library](https://rentry.co/FMHYBase64#the-manga-library)
|
||||||
* [MangaFire](https://mangafire.to/) / [Discord](https://discord.com/invite/KRQQKzQ6CS)
|
* [MangaFire](https://mangafire.to/) / [Discord](https://discord.com/invite/KRQQKzQ6CS)
|
||||||
* [BATO.TO](https://bato.to/), [2](https://fto.to/) / [Proxies](https://rentry.co/batoto) / [Discord](https://discord.com/invite/batoto)
|
* [BATO.TO](https://bato.to/), [2](https://fto.to/) / [Proxies](https://rentry.co/batoto) / [Discord](https://discord.com/invite/batoto)
|
||||||
|
* [MangaPark](https://mangapark.net/) / [Discord](https://discord.gg/jctSzUBWyQ) / [Proxies](https://rentry.co/mangapark)
|
||||||
|
* [MangaHaven](https://mangahaven.net/)
|
||||||
* [Rive Manga](https://rivestream.org/manga)
|
* [Rive Manga](https://rivestream.org/manga)
|
||||||
* [Freek](https://freek.to/explore/manga)
|
* [Freek](https://freek.to/explore/manga)
|
||||||
* [MangaReader](https://mangareader.to/) / [Discord](https://discord.com/invite/Bvc5mVcUqE) / [Subreddit](https://www.reddit.com/r/MangaReaderOfficial/)
|
* [MangaReader](https://mangareader.to/) / [Discord](https://discord.com/invite/Bvc5mVcUqE) / [Subreddit](https://www.reddit.com/r/MangaReaderOfficial/)
|
||||||
|
@ -481,7 +481,6 @@
|
||||||
* [Translated Light Novels](https://rentry.co/FMHYBase64#translated-light-novels) / Allows Downloads
|
* [Translated Light Novels](https://rentry.co/FMHYBase64#translated-light-novels) / Allows Downloads
|
||||||
* [NovelNext](https://novelnext.com/)
|
* [NovelNext](https://novelnext.com/)
|
||||||
* [NovelBuddy](https://novelbuddy.io/), [2](https://novelbuddy.com/)
|
* [NovelBuddy](https://novelbuddy.io/), [2](https://novelbuddy.com/)
|
||||||
* [Wuxia Blog](https://www.wuxia.blog)
|
|
||||||
* [Wuxia Box](https://www.wuxiabox.com/)
|
* [Wuxia Box](https://www.wuxiabox.com/)
|
||||||
* [NovelCool](https://www.novelcool.com/)
|
* [NovelCool](https://www.novelcool.com/)
|
||||||
* [Novels.pl](https://www.novels.pl/) / Allows Downloads
|
* [Novels.pl](https://www.novels.pl/) / Allows Downloads
|
||||||
|
@ -522,7 +521,6 @@
|
||||||
* [PDF Magazines Archive](https://pdf-magazines-archive.com/) - Novafile
|
* [PDF Magazines Archive](https://pdf-magazines-archive.com/) - Novafile
|
||||||
* [MagDownload](https://magdownload.org/) - Nitroflare
|
* [MagDownload](https://magdownload.org/) - Nitroflare
|
||||||
* [WholeEarth](https://wholeearth.info/) - Whole Earth Science Magazines
|
* [WholeEarth](https://wholeearth.info/) - Whole Earth Science Magazines
|
||||||
* [PubHTML5](https://pubhtml5.com/magazines/) - Online Magazines
|
|
||||||
* [Lainzine](https://lainzine.org/) - Lain-Inspired Magazine
|
* [Lainzine](https://lainzine.org/) - Lain-Inspired Magazine
|
||||||
* [Retromags](https://www.retromags.com/), [VGHF](https://archive.gamehistory.org/folder/9a193e8c-67e0-45ff-98d2-a33e85721cc4) or [Annarchive](https://www.annarchive.com/) - Retro Game Magazines
|
* [Retromags](https://www.retromags.com/), [VGHF](https://archive.gamehistory.org/folder/9a193e8c-67e0-45ff-98d2-a33e85721cc4) or [Annarchive](https://www.annarchive.com/) - Retro Game Magazines
|
||||||
* [PC Zone](https://pixsoriginadventures.co.uk/PCZone/) - PC Zone Magazines
|
* [PC Zone](https://pixsoriginadventures.co.uk/PCZone/) - PC Zone Magazines
|
||||||
|
@ -547,7 +545,7 @@
|
||||||
* [newspaper_archive](https://t.me/newspaper_archive) - Telegram
|
* [newspaper_archive](https://t.me/newspaper_archive) - Telegram
|
||||||
* [Chronicling America](https://chroniclingamerica.loc.gov/newspapers/)
|
* [Chronicling America](https://chroniclingamerica.loc.gov/newspapers/)
|
||||||
* [Kiosko](https://en.kiosko.net/)
|
* [Kiosko](https://en.kiosko.net/)
|
||||||
* [FullOnHistory](https://fultonhistory.com/)
|
* [FultonHistory](https://fultonhistory.com/Fulton.html)
|
||||||
* [Loc.gov Newspapers](https://www.loc.gov/newspapers/)
|
* [Loc.gov Newspapers](https://www.loc.gov/newspapers/)
|
||||||
* [Newspapers](https://newspapers.com/)
|
* [Newspapers](https://newspapers.com/)
|
||||||
* [ThoughtCo](https://www.thoughtco.com/us-historical-newspapers-online-by-state-1422215)
|
* [ThoughtCo](https://www.thoughtco.com/us-historical-newspapers-online-by-state-1422215)
|
||||||
|
@ -595,7 +593,7 @@
|
||||||
* [BookGoldMine](https://www.bookgoldmine.com/)
|
* [BookGoldMine](https://www.bookgoldmine.com/)
|
||||||
* [BitDL](https://rentry.co/FMHYBase64#bitdl)
|
* [BitDL](https://rentry.co/FMHYBase64#bitdl)
|
||||||
* [SuperKuh](http://erewhon.superkuh.com/library/)
|
* [SuperKuh](http://erewhon.superkuh.com/library/)
|
||||||
* [Non_Fic](https://vk.com/non_fic)
|
* [Non-Fiction](https://vk.com/non_fic)
|
||||||
* [FreePLRDownloads](https://freeplrdownloads.com/)
|
* [FreePLRDownloads](https://freeplrdownloads.com/)
|
||||||
* [E-Books Directory](https://www.e-booksdirectory.com/)
|
* [E-Books Directory](https://www.e-booksdirectory.com/)
|
||||||
* [Wikiversity](https://www.wikiversity.org/) - Learning Resources, Guides, Quizzes, Tools & More
|
* [Wikiversity](https://www.wikiversity.org/) - Learning Resources, Guides, Quizzes, Tools & More
|
||||||
|
@ -612,7 +610,7 @@
|
||||||
* [Pearson](https://redd.it/smm6ib) - Pearson Textbook Download Guide
|
* [Pearson](https://redd.it/smm6ib) - Pearson Textbook Download Guide
|
||||||
* [JEEBooksPDF](https://m.youtube.com/c/JEEBooksPDF) - JEE Material / [Telegram](https://telegram.me/jeebookspdf) / Downloads in Descriptions
|
* [JEEBooksPDF](https://m.youtube.com/c/JEEBooksPDF) - JEE Material / [Telegram](https://telegram.me/jeebookspdf) / Downloads in Descriptions
|
||||||
* [ck12](https://www.ck12.org/) - Interactive CK-12
|
* [ck12](https://www.ck12.org/) - Interactive CK-12
|
||||||
* [premium_ebooks](https://t.me/premium_ebooks) - Exam Books
|
* [Bookishfrenzy](https://t.me/premium_ebooks) - Books / Exam Books
|
||||||
* [Digital Libraries / Archives](https://oedb.org/ilibrarian/250-plus-killer-digital-libraries-and-archives/) - Online University Libraries
|
* [Digital Libraries / Archives](https://oedb.org/ilibrarian/250-plus-killer-digital-libraries-and-archives/) - Online University Libraries
|
||||||
* [OpenDOAR](https://v2.sherpa.ac.uk/opendoar/) - Academic Repository Search
|
* [OpenDOAR](https://v2.sherpa.ac.uk/opendoar/) - Academic Repository Search
|
||||||
* [IntechOpen](https://www.intechopen.com/) - Science
|
* [IntechOpen](https://www.intechopen.com/) - Science
|
||||||
|
@ -757,8 +755,8 @@
|
||||||
* [PubMed](https://pubmed.ncbi.nlm.nih.gov/) - Medical Journals / [Search](https://www.pubmedisearch.com/)
|
* [PubMed](https://pubmed.ncbi.nlm.nih.gov/) - Medical Journals / [Search](https://www.pubmedisearch.com/)
|
||||||
* [OpenMD](https://openmd.com/) - Medical Journals
|
* [OpenMD](https://openmd.com/) - Medical Journals
|
||||||
* [Free Medical Journals](http://www.freemedicaljournals.com/) - Medical Journals
|
* [Free Medical Journals](http://www.freemedicaljournals.com/) - Medical Journals
|
||||||
* [Medrxiv](https://www.medrxiv.org/) - Medicine Preprints
|
* [medRxiv](https://www.medrxiv.org/) - Medicine Preprints
|
||||||
* [Biorxiv](https://www.biorxiv.org/) - Biology Preprints
|
* [bioRvix](https://www.biorxiv.org/) - Biology Preprints
|
||||||
* [Bioline](https://www.bioline.org.br/) - Bioscience Journals
|
* [Bioline](https://www.bioline.org.br/) - Bioscience Journals
|
||||||
* [SSRN](https://www.ssrn.com/) - Early Stage Research Papers
|
* [SSRN](https://www.ssrn.com/) - Early Stage Research Papers
|
||||||
* [PapersWithCode](https://paperswithcode.com/), [Catalyzex](https://www.catalyzex.com/), [AI Reading List](https://docs.google.com/document/d/1bEQM1W-1fzSVWNbS4ne5PopB2b7j8zD4Jc3nm4rbK-U/), [AI RND](https://www.ai-rnd.com/) or [Daily Papers](https://huggingface.co/papers) - AI Research Papers
|
* [PapersWithCode](https://paperswithcode.com/), [Catalyzex](https://www.catalyzex.com/), [AI Reading List](https://docs.google.com/document/d/1bEQM1W-1fzSVWNbS4ne5PopB2b7j8zD4Jc3nm4rbK-U/), [AI RND](https://www.ai-rnd.com/) or [Daily Papers](https://huggingface.co/papers) - AI Research Papers
|
||||||
|
@ -772,7 +770,6 @@
|
||||||
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
||||||
* ⭐ **[arXiv](https://arxiv.org/)** - Science / Math / Physics / [Search](https://searchthearxiv.com/), [2](https://papermatch.mitanshu.tech/) / [Chatbot](https://www.alphaxiv.org/), [2](https://explainarxiv.org/), [3](https://github.com/evanhu1/talk2arxiv) / [Mobile](https://github.com/dagmawibabi/ScholArxiv)
|
* ⭐ **[arXiv](https://arxiv.org/)** - Science / Math / Physics / [Search](https://searchthearxiv.com/), [2](https://papermatch.mitanshu.tech/) / [Chatbot](https://www.alphaxiv.org/), [2](https://explainarxiv.org/), [3](https://github.com/evanhu1/talk2arxiv) / [Mobile](https://github.com/dagmawibabi/ScholArxiv)
|
||||||
* ⭐ **[TheFreeLibrary](https://www.thefreelibrary.com/)** - Articles
|
* ⭐ **[TheFreeLibrary](https://www.thefreelibrary.com/)** - Articles
|
||||||
* ⭐ **[STC](https://libstc.cc/)** - Document / Article Text Search
|
|
||||||
* ⭐ **[Nexus search](https://t.me/nexus_search/94)** - Science / Articles
|
* ⭐ **[Nexus search](https://t.me/nexus_search/94)** - Science / Articles
|
||||||
* [Wikisource](https://en.wikisource.org) - Poetry / Text / Documents
|
* [Wikisource](https://en.wikisource.org) - Poetry / Text / Documents
|
||||||
* [Heystacks](https://heystacks.com/) - Public Google Docs
|
* [Heystacks](https://heystacks.com/) - Public Google Docs
|
||||||
|
@ -815,7 +812,7 @@
|
||||||
* [NAP](https://nap.nationalacademies.org/) - Reports
|
* [NAP](https://nap.nationalacademies.org/) - Reports
|
||||||
* [WikiLeaks](https://wikileaks.org/) - Leaked Documents / [Index](https://file.wikileaks.org/)
|
* [WikiLeaks](https://wikileaks.org/) - Leaked Documents / [Index](https://file.wikileaks.org/)
|
||||||
* [Cryptome](https://cryptome.org/) - Leaked Documents
|
* [Cryptome](https://cryptome.org/) - Leaked Documents
|
||||||
* [snowden-archive](https://github.com/iamcryptoki/snowden-archive) - Leaked Snowden Documents
|
* [Snowden Archive](https://github.com/iamcryptoki/snowden-archive) - Leaked Snowden Documents
|
||||||
* [Google Leaks](https://www.zachvorhies.com/google_leaks/) - Leaked Google Documents
|
* [Google Leaks](https://www.zachvorhies.com/google_leaks/) - Leaked Google Documents
|
||||||
* [Constitute Project](https://www.constituteproject.org/) - World Constitutions Database
|
* [Constitute Project](https://www.constituteproject.org/) - World Constitutions Database
|
||||||
* [The American Presidency Project](https://www.presidency.ucsb.edu/) - Presidential Documents
|
* [The American Presidency Project](https://www.presidency.ucsb.edu/) - Presidential Documents
|
||||||
|
@ -838,7 +835,7 @@
|
||||||
* [iFixIt](https://www.ifixit.com/) - Repair Manuals
|
* [iFixIt](https://www.ifixit.com/) - Repair Manuals
|
||||||
* [Restarters](https://wiki.restarters.net/) - Device Repair Wiki / Guides
|
* [Restarters](https://wiki.restarters.net/) - Device Repair Wiki / Guides
|
||||||
* [WonderHowTo](https://www.wonderhowto.com/) - Tech How-Tos
|
* [WonderHowTo](https://www.wonderhowto.com/) - Tech How-Tos
|
||||||
* [manned.org](https://manned.org/) - Operating System Manuals
|
* [Manned.org](https://manned.org/) - Operating System Manuals
|
||||||
* [Exploitee.rs](https://www.exploitee.rs/) - Device Exploitation Wiki
|
* [Exploitee.rs](https://www.exploitee.rs/) - Device Exploitation Wiki
|
||||||
* [JDMFSM](https://jdmfsm.info/Auto/), [Charm](https://charm.li/), [CarPDFManual](https://www.carpdfmanual.com/) or [ProCarManuals](https://procarmanuals.com/) - Auto Repair Manuals
|
* [JDMFSM](https://jdmfsm.info/Auto/), [Charm](https://charm.li/), [CarPDFManual](https://www.carpdfmanual.com/) or [ProCarManuals](https://procarmanuals.com/) - Auto Repair Manuals
|
||||||
* [Ownersman.com](https://ownersman.com/) - Car Owner Manuals
|
* [Ownersman.com](https://ownersman.com/) - Car Owner Manuals
|
||||||
|
@ -857,7 +854,7 @@
|
||||||
* ⭐ **[The Greatest Books](https://www.thegreatestbooks.org/)** - Curated Books List / [Downloader](https://greasyfork.org/en/scripts/514877)
|
* ⭐ **[The Greatest Books](https://www.thegreatestbooks.org/)** - Curated Books List / [Downloader](https://greasyfork.org/en/scripts/514877)
|
||||||
* ⭐ **[TasteDive](https://tastedive.com/books)** - Discovery and Recommendations
|
* ⭐ **[TasteDive](https://tastedive.com/books)** - Discovery and Recommendations
|
||||||
* ⭐ **[StoryGraph](https://www.thestorygraph.com/)** - Tracking / Recommendations
|
* ⭐ **[StoryGraph](https://www.thestorygraph.com/)** - Tracking / Recommendations
|
||||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Manga / Light Novels / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Manga / Light Novels / Tracking / Reviews / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
||||||
* ⭐ **[Anilist](https://anilist.co/)** - Manga / Light Novels / Manhwa / Manhua / [Wrapper](https://github.com/AurelicButter/AniList-Node) / [Extras](https://greasyfork.org/en/scripts/370473-automail)
|
* ⭐ **[Anilist](https://anilist.co/)** - Manga / Light Novels / Manhwa / Manhua / [Wrapper](https://github.com/AurelicButter/AniList-Node) / [Extras](https://greasyfork.org/en/scripts/370473-automail)
|
||||||
* ⭐ **[MangaUpdates](https://www.mangaupdates.com/)** - Manga Database / Releases Updates
|
* ⭐ **[MangaUpdates](https://www.mangaupdates.com/)** - Manga Database / Releases Updates
|
||||||
* ⭐ **[LeagueOfComicGeeks](https://leagueofcomicgeeks.com/)** - Comic Tracking / Releases
|
* ⭐ **[LeagueOfComicGeeks](https://leagueofcomicgeeks.com/)** - Comic Tracking / Releases
|
||||||
|
@ -904,7 +901,7 @@
|
||||||
* [Nevix](https://nevix.com/) - Manga / Social Media
|
* [Nevix](https://nevix.com/) - Manga / Social Media
|
||||||
* [Kitsu](https://kitsu.io/) - Manga
|
* [Kitsu](https://kitsu.io/) - Manga
|
||||||
* [Mangaki](https://mangaki.fr/) - Manga Recommendations
|
* [Mangaki](https://mangaki.fr/) - Manga Recommendations
|
||||||
* [spin.moe](https://spin.moe/) - Find Random Manga
|
* [Spin.moe](https://spin.moe/) - Find Random Manga
|
||||||
* [Anime-Planet](https://anime-planet.com/) - Manga
|
* [Anime-Planet](https://anime-planet.com/) - Manga
|
||||||
* [kenmei](https://www.kenmei.co/) - Manga / [Discord](https://discord.gg/XeTFtYW)
|
* [kenmei](https://www.kenmei.co/) - Manga / [Discord](https://discord.gg/XeTFtYW)
|
||||||
* [AllManga](https://allmanga.to/) - Manga / [Discord](https://discord.gg/YbuYYUwhpP)
|
* [AllManga](https://allmanga.to/) - Manga / [Discord](https://discord.gg/YbuYYUwhpP)
|
||||||
|
@ -926,7 +923,7 @@
|
||||||
* ⭐ **[Spreeder](https://www.spreeder.com/app.php?intro=1)**, [BR Script](https://greasyfork.org/en/scripts/465635), [PlayText](https://playtext.app/), [AccelaReader](https://accelareader.com/), [Jiffy](https://www.jiffyreader.com/), [SwiftRead](https://swiftread.com/), [Notation](https://github.com/numanzamandipuu/Notation), [Tailwind BR](https://crisanlucid.github.io/vite-react-tailwind-bionic-reading/) or [SpeedRead](https://github.com/pasky/speedread) - Speed Reading Tools
|
* ⭐ **[Spreeder](https://www.spreeder.com/app.php?intro=1)**, [BR Script](https://greasyfork.org/en/scripts/465635), [PlayText](https://playtext.app/), [AccelaReader](https://accelareader.com/), [Jiffy](https://www.jiffyreader.com/), [SwiftRead](https://swiftread.com/), [Notation](https://github.com/numanzamandipuu/Notation), [Tailwind BR](https://crisanlucid.github.io/vite-react-tailwind-bionic-reading/) or [SpeedRead](https://github.com/pasky/speedread) - Speed Reading Tools
|
||||||
* ⭐ **[Kindle Comic Converter](https://github.com/ciromattia/kcc)** - Multi-Format Converter
|
* ⭐ **[Kindle Comic Converter](https://github.com/ciromattia/kcc)** - Multi-Format Converter
|
||||||
* ⭐ **[papeer](https://papeer.tech/)** / [GitHub](https://github.com/lapwat/papeer) or [epub-creator](https://github.com/NiklasGollenstede/epub-creator) - Webpage to EPUB Converter
|
* ⭐ **[papeer](https://papeer.tech/)** / [GitHub](https://github.com/lapwat/papeer) or [epub-creator](https://github.com/NiklasGollenstede/epub-creator) - Webpage to EPUB Converter
|
||||||
* [ebook-converter-bot](https://t.me/ebook_converter_bot) - Telegram Ebook Converter / [GitHub](https://github.com/yshalsager/ebook-converter-bot)
|
* [eBook Converter Bot](https://t.me/ebook_converter_bot) - Telegram Ebook Converter / [GitHub](https://github.com/yshalsager/ebook-converter-bot)
|
||||||
* [CrowBook](https://github.com/crowdagger/crowbook) - Markdown to EPUB Converter
|
* [CrowBook](https://github.com/crowdagger/crowbook) - Markdown to EPUB Converter
|
||||||
* [Remove Kindle DRM](https://itsfoss.com/calibre-remove-drm-kindle/) - Remove DRM from Kindle
|
* [Remove Kindle DRM](https://itsfoss.com/calibre-remove-drm-kindle/) - Remove DRM from Kindle
|
||||||
* [Libby](https://libbyapp.com/) - Library Search / [Downloader](https://github.com/bookbonobo/libby-download-extension)
|
* [Libby](https://libbyapp.com/) - Library Search / [Downloader](https://github.com/bookbonobo/libby-download-extension)
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
***
|
***
|
||||||
|
|
||||||
* 🌐 **[Awesome Discord](https://github.com/jacc/awesome-discord)** - Discord Tool Index
|
* 🌐 **[Awesome Discord](https://github.com/jacc/awesome-discord)** - Discord Tool Index
|
||||||
* ⭐ **[embeds.video](https://embeds.video/)**, [Stolen Shoes](https://stolen.shoes/), [embedez](https://embedez.com/) or [Discord Embedder](https://discord.nfp.is/) - Discord Video Embedders
|
* ⭐ **[embeds.video](https://embeds.video/)**, [x266](https://x266.mov/discord-embed/), [Stolen Shoes](https://stolen.shoes/), [embedez](https://embedez.com/) or [Discord Embedder](https://discord.nfp.is/) - Discord Video Embedders
|
||||||
* ⭐ **[Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin)** or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Ads
|
* ⭐ **[Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin)** or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Ads
|
||||||
* ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/revoltchat/awesome-revolt) or **[Guilded](https://www.guilded.gg/)** - Discord Alternatives
|
* ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/revoltchat/awesome-revolt) or **[Guilded](https://www.guilded.gg/)** - Discord Alternatives
|
||||||
* ⭐ **[OpenAsar](https://openasar.dev/)** - Improved Discord Desktop's Asar / [Discord](https://discord.gg/YDMptE8u2b) / [GitHub](https://github.com/GooseMod/OpenAsar)
|
* ⭐ **[OpenAsar](https://openasar.dev/)** - Improved Discord Desktop's Asar / [Discord](https://discord.gg/YDMptE8u2b) / [GitHub](https://github.com/GooseMod/OpenAsar)
|
||||||
|
@ -95,7 +95,7 @@
|
||||||
## ▷ Client Customization
|
## ▷ Client Customization
|
||||||
|
|
||||||
* 🌐 **[Client Themes](https://betterdiscord.app/themes)** or [Discord Themes](https://github.com/topics/discord-theme) - Client Theme Index
|
* 🌐 **[Client Themes](https://betterdiscord.app/themes)** or [Discord Themes](https://github.com/topics/discord-theme) - Client Theme Index
|
||||||
* ⭐ **[Discohook](https://discohook.org/)**, [2](https://discohook.app/) / [Discohook Utils](https://dutils.shay.cat/), [Embed Creator](https://embed.dan.onl/), [blankdvth](https://embed.blankdvth.com/), [x266](https://x266.mov/discord-embed/) or [Embed Generator](https://message.style/) - Embed Generators
|
* ⭐ **[Discohook](https://discohook.org/)**, [2](https://discohook.app/) / [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
|
* [BD Editor](https://bdeditor.dev/) - Client Theme Editor
|
||||||
* [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Chroma Light for Discord
|
* [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Chroma Light for Discord
|
||||||
|
@ -181,7 +181,7 @@
|
||||||
* ⭐ **[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
|
||||||
* [Libreddit](https://github.com/libreddit/libreddit-instances/blob/master/instances.md), [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib-instances/blob/main/instances.md) / [GitHub](https://github.com/redlib-org/redlib) - Reddit Frontends
|
* [Libreddit](https://github.com/libreddit/libreddit-instances/blob/master/instances.md), [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib-instances/blob/main/instances.md) / [GitHub](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||||
* [Redditp](https://redditp.com/) or [Reddit Viewer](https://reddit-viewer.com/) - Reddit TikTok Style Viewers
|
* [Redditp](https://redditp.com/) or [Reddit Viewer](https://reddit-viewer.com/) - Reddit TikTok Style Viewers
|
||||||
* [Beleave](https://beleave.virock.org/) or [SubCleaner](https://www.subcleaner.com/) - Subreddit Cleaners / Managers
|
* [Beleave](https://beleave.virock.org/) or [SubCleaner](https://www.subcleaner.com/) - Subreddit Cleaners / Managers
|
||||||
* [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
|
||||||
* [Reddit Preview](https://redditpreview.com/) - Preview Reddit Posts
|
* [Reddit Preview](https://redditpreview.com/) - Preview Reddit Posts
|
||||||
* [RedditRaffler](https://www.redditraffler.com/) - Reddit Raffle System
|
* [RedditRaffler](https://www.redditraffler.com/) - Reddit Raffle System
|
||||||
|
@ -294,7 +294,7 @@
|
||||||
|
|
||||||
## ▷ Telegram File Tools
|
## ▷ Telegram File Tools
|
||||||
|
|
||||||
* ⭐ **[Teldrive](https://github.com/tgdrive/teldrive)** - File Manager / Uploader
|
* ⭐ **[Teldrive](https://teldrive-docs.pages.dev/)** - File Manager / Uploader / [GitHub](https://github.com/tgdrive/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
|
* [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
|
||||||
* [MediaDownBot](https://t.me/mediadownbot), [WZML-X](https://github.com/SilentDemonSD/WZML-X), [Telegram Media Downloader](https://greasyfork.org/en/scripts/446342), [TopSaverBot](https://t.me/TopSaverBot), [CatdlBot](https://t.me/CatdlBot) or [DownloadsMasterBot](https://t.me/DownloadsMasterBot) - Media Downloaders
|
* [MediaDownBot](https://t.me/mediadownbot), [WZML-X](https://github.com/SilentDemonSD/WZML-X), [Telegram Media Downloader](https://greasyfork.org/en/scripts/446342), [TopSaverBot](https://t.me/TopSaverBot), [CatdlBot](https://t.me/CatdlBot) or [DownloadsMasterBot](https://t.me/DownloadsMasterBot) - Media Downloaders
|
||||||
* [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) - Google Drive 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) - Google Drive Upload Bots
|
||||||
|
@ -357,7 +357,7 @@
|
||||||
|
|
||||||
## ▷ YouTube Customization
|
## ▷ YouTube Customization
|
||||||
|
|
||||||
* ⭐ **[Return YouTube Dislike](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/), [2](https://jabrek.net/dislike-en) / [Discord](https://discord.com/invite/mYnESY4Md5)
|
* ⭐ **[Return YouTube Dislike](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/) / [Discord](https://discord.com/invite/mYnESY4Md5)
|
||||||
* ⭐ **[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
|
||||||
* ⭐ **[UnTrap](https://untrap.app/)**, [TubeMod](https://github.com/Pedro-Gregorio/TubeMod) or [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) - Distraction-Free YouTube
|
* ⭐ **[UnTrap](https://untrap.app/)**, [TubeMod](https://github.com/Pedro-Gregorio/TubeMod) or [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) - Distraction-Free YouTube
|
||||||
* [ImprovedTube](https://improvedtube.com/), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/), [Magic Actions](https://www.chromeactions.com/) or [Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#enhancer-for-yt-note) - YouTube Enhancement Extensions
|
* [ImprovedTube](https://improvedtube.com/), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/), [Magic Actions](https://www.chromeactions.com/) or [Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#enhancer-for-yt-note) - YouTube Enhancement Extensions
|
||||||
|
@ -383,7 +383,7 @@
|
||||||
## ▷ Players / Frontends
|
## ▷ Players / Frontends
|
||||||
|
|
||||||
* ↪️ **[Android YouTube Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_youtube_apps)**
|
* ↪️ **[Android YouTube Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_youtube_apps)**
|
||||||
* ⭐ **[FreeTube](https://freetubeapp.io/)** - YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
* ⭐ **[FreeTube](https://freetubeapp.io/)** - Local YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
||||||
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
||||||
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
||||||
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
|
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
|
||||||
|
@ -391,7 +391,6 @@
|
||||||
* [TwitchTheater](https://twitchtheater.tv/), [VidGrid](https://vidgrid.tk.gg/), [YouTube Multiplier](https://www.youtubemultiplier.com/) or [ViewSync](https://viewsync.net/) - Watch Multiple 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
|
||||||
* [YouTube Clone KMP](https://github.com/KhubaibKhan4/Youtube-Clone-KMP) - YouTube Frontend
|
* [YouTube Clone KMP](https://github.com/KhubaibKhan4/Youtube-Clone-KMP) - YouTube Frontend
|
||||||
* [Poke](https://poketube.fun/) - YouTube Frontend
|
* [Poke](https://poketube.fun/) - 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
|
* [Piped](https://github.com/TeamPiped/Piped) / [2](https://piped.kavin.rocks/) / [3](https://piped-material.১.net/) - YouTube Frontend
|
||||||
* [Tube Cadence](https://tube.cadence.moe/) - YouTube Frontend
|
* [Tube Cadence](https://tube.cadence.moe/) - YouTube Frontend
|
||||||
* [youtube-local](https://github.com/user234683/youtube-local) or [yt-local](https://git.sr.ht/~heckyel/yt-local) - YouTube Frontend
|
* [youtube-local](https://github.com/user234683/youtube-local) or [yt-local](https://git.sr.ht/~heckyel/yt-local) - YouTube Frontend
|
||||||
|
@ -406,6 +405,7 @@
|
||||||
* ↪️ **[Video Transcribers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25BA_subtitle_tools)**
|
* ↪️ **[Video Transcribers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25BA_subtitle_tools)**
|
||||||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored Video Segments / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored Video Segments / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
||||||
* ⭐ **[polsy.org.uk](https://polsy.org.uk/stuff/ytrestrict.cgi)** - Video Region Restriction Checker
|
* ⭐ **[polsy.org.uk](https://polsy.org.uk/stuff/ytrestrict.cgi)** - Video Region Restriction Checker
|
||||||
|
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Remembers Where You Left Off in Video
|
||||||
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
||||||
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate, Zoom, & Mirror Videos
|
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate, Zoom, & Mirror Videos
|
||||||
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check Exact Upload Time/Date of Videos
|
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check Exact Upload Time/Date of Videos
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
## Ambient Sound Mixers
|
## Ambient Sound Mixers
|
||||||
|
|
||||||
[myNoise](https://mynoise.net/), [ambiphone](https://ambiph.one/), [Moodist](https://moodist.app/), [Moodli](https://www.moodil.com/), [Soundscape](https://soundescape.io/), [Nature Mixer](https://naturemixer.com/), [CalmyLeon](https://calmyleon.com/), [Noises Online](https://noises.online/), [Relaxing Sounds](https://www.shuteye.ai/relaxing-sounds/), [A Soft Murmur](https://asoftmurmur.com/), [EcoSounds](https://en.ecosounds.net/), [VirtOcean](https://virtocean.com/), [ASMRion](https://asmrion.com/), [Defonic](https://defonic.com), [Sound Of Colleagues](https://soundofcolleagues.com/), [IMissTheOffice](https://imisstheoffice.eu/), [Homesick](https://scoreascore.com/homesick), [Click Bath](https://hamishlang.github.io/clickbath/), [imissmycafe](https://imissmycafe.com/), [coffitivity](https://coffitivity.com/)
|
[myNoise](https://mynoise.net/), [ambiphone](https://ambiph.one/), [Moodist](https://moodist.app/), [Moodli](https://www.moodil.com/), [Soundscape](https://soundescape.io/), [Nature Mixer](https://naturemixer.com/), [CalmyLeon](https://calmyleon.com/), [Noises Online](https://noises.online/), [Relaxing Sounds](https://www.shuteye.ai/relaxing-sounds/), [A Soft Murmur](https://asoftmurmur.com/), [EcoSounds](https://en.ecosounds.net/), [VirtOcean](https://virtocean.com/), [ASMRion](https://asmrion.com/), [Defonic](https://defonic.com), [IMissTheOffice](https://imisstheoffice.eu/), [Homesick](https://scoreascore.com/homesick), [Click Bath](https://hamishlang.github.io/clickbath/), [imissmycafe](https://imissmycafe.com/), [coffitivity](https://coffitivity.com/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -53,8 +53,8 @@
|
||||||
|
|
||||||
### Privacy Based
|
### Privacy Based
|
||||||
|
|
||||||
|
* ⭐ **[IronFox](https://gitlab.com/ironfox-oss/IronFox)**
|
||||||
* ⭐ **[Tor](https://tb-manual.torproject.org/mobile-tor/)** - Onion-Routed Browser
|
* ⭐ **[Tor](https://tb-manual.torproject.org/mobile-tor/)** - Onion-Routed Browser
|
||||||
* [IronFox](https://ironfoxoss.org/) / [GitLab](https://gitlab.com/ironfox-oss/IronFox)
|
|
||||||
* [DuckDuckGo Privacy Browser](https://duckduckgo.com/app)
|
* [DuckDuckGo Privacy Browser](https://duckduckgo.com/app)
|
||||||
* [Privacy Browser](https://www.stoutner.com/privacy-browser-android/)
|
* [Privacy Browser](https://www.stoutner.com/privacy-browser-android/)
|
||||||
* [Brave](https://brave.com/) - Chromium Based Browser
|
* [Brave](https://brave.com/) - Chromium Based Browser
|
||||||
|
@ -103,7 +103,6 @@
|
||||||
* [Tasky](https://thatsmanmeet.github.io/tasky-web/)
|
* [Tasky](https://thatsmanmeet.github.io/tasky-web/)
|
||||||
* [Alkaa](https://github.com/igorescodro/alkaa)
|
* [Alkaa](https://github.com/igorescodro/alkaa)
|
||||||
* [Twos](https://www.twosapp.com/)
|
* [Twos](https://www.twosapp.com/)
|
||||||
* [Grit](https://github.com/shub39/Grit)
|
|
||||||
* [Chaos Control 2](https://play.google.com/store/apps/details?id=com.tarasovmobile.cc2)
|
* [Chaos Control 2](https://play.google.com/store/apps/details?id=com.tarasovmobile.cc2)
|
||||||
* [EverydayTasks](https://everydaytasks.jepfa.de/)
|
* [EverydayTasks](https://everydaytasks.jepfa.de/)
|
||||||
* [Teuxdeux](https://teuxdeux.com/)
|
* [Teuxdeux](https://teuxdeux.com/)
|
||||||
|
@ -126,7 +125,7 @@
|
||||||
* [Really Good Emails](https://reallygoodemails.com/) - Product Email Mobile Designs and Templates
|
* [Really Good Emails](https://reallygoodemails.com/) - Product Email Mobile Designs and Templates
|
||||||
* [Screen from Traction](https://screen.traction.one/) - Create App Screenshots
|
* [Screen from Traction](https://screen.traction.one/) - Create App Screenshots
|
||||||
|
|
||||||
[Previewed](https://previewed.app/), [Mockup World](https://www.mockupworld.co/), [DeviceShots](https://deviceshots.com/), [DeviceFrames](https://deviceframes.com/), [shots.so](https://shots.so/), [medialoot](https://medialoot.com/free-mockups/), [MockMagic](https://www.mockmagic.com/), [MockupsForFree](https://mockupsforfree.com/), [zippypixels](https://zippypixels.com/), [Mockuphone](https://mockuphone.com/), [TheMockupClub](https://themockup.club/), [RiseShot](https://www.riseshot.com/), [Upmock](https://www.upmock.io/), [LS Graphics](https://www.ls.graphics/), [Picasso](https://getpicasso.com/), [minimalmockups](https://www.minimalmockups.com/), [mrmockup](https://mrmockup.com/free-mockups/), [mockupnest](https://mockupnest.com/), [Jam Mockup](http://t.me/+Hp5DjFnpWXdhMTBi)
|
[PostSpark](https://postspark.app/), [Previewed](https://previewed.app/), [Mockup World](https://www.mockupworld.co/), [DeviceShots](https://deviceshots.com/), [DeviceFrames](https://deviceframes.com/), [shots.so](https://shots.so/), [medialoot](https://medialoot.com/free-mockups/), [MockMagic](https://www.mockmagic.com/), [MockupsForFree](https://mockupsforfree.com/), [zippypixels](https://zippypixels.com/), [Mockuphone](https://mockuphone.com/), [TheMockupClub](https://themockup.club/), [RiseShot](https://www.riseshot.com/), [Upmock](https://www.upmock.io/), [LS Graphics](https://www.ls.graphics/), [Picasso](https://getpicasso.com/), [minimalmockups](https://www.minimalmockups.com/), [mrmockup](https://mrmockup.com/free-mockups/), [mockupnest](https://mockupnest.com/), [Jam Mockup](http://t.me/+Hp5DjFnpWXdhMTBi)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -145,9 +144,10 @@
|
||||||
|
|
||||||
## Background Removers
|
## Background Removers
|
||||||
|
|
||||||
* ⭐ **[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**
|
* ⭐ **[BGBye](https://bgbye.fyrean.com/)**
|
||||||
|
* ⭐ **[pixelcut](https://www.pixelcut.ai/)**
|
||||||
|
|
||||||
[RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [BGBye](https://bgbye.fyrean.com/), [Rembg](https://github.com/danielgatis/rembg), [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background), [magic-copy](https://github.com/kevmo314/magic-copy), [ormbg](https://huggingface.co/spaces/schirrmacher/ormbg), [pixelcut](https://www.pixelcut.ai/), [BRIA-RMBG](https://huggingface.co/spaces/briaai/BRIA-RMBG-1.4), [remove.bg](https://www.remove.bg/), [BRIAAI](https://briaai-bria-rmbg-2-0.hf.space/)
|
[ormbg](https://huggingface.co/spaces/schirrmacher/ormbg), [BRIAAI](https://briaai-bria-rmbg-2-0.hf.space/), [Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web), [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), [magic-copy](https://github.com/kevmo314/magic-copy), [BRIA-RMBG](https://huggingface.co/spaces/briaai/BRIA-RMBG-1.4), [remove.bg](https://www.remove.bg/)
|
||||||
|
|
||||||
### Object Removers
|
### Object Removers
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@
|
||||||
|
|
||||||
* ⭐ **[Reader View](https://webextension.org/listing/chrome-reader-view.html)**, [2](https://mybrowseraddon.com/reader-view.html)
|
* ⭐ **[Reader View](https://webextension.org/listing/chrome-reader-view.html)**, [2](https://mybrowseraddon.com/reader-view.html)
|
||||||
|
|
||||||
[Flow](https://www.flowoss.com/), [Online Cloud File Viewer](https://www.fviewer.com/), [Ebook Reader for web](https://www.loudreader.com/), [Readwok](https://readwok.com/), [ePub Reader Online](https://www.ofoct.com/viewer/epub-reader-online.html), [Ebook Reader](https://reader.ttsu.app/manage), [epub.js](https://github.com/johnfactotum/foliate-js), [minimalreader](https://www.minimalreader.xyz/)
|
[Flow](https://www.flowoss.com/), [Online Cloud File Viewer](https://www.fviewer.com/), [Readwok](https://readwok.com/), [ePub Reader Online](https://www.ofoct.com/viewer/epub-reader-online.html), [Ebook Reader](https://reader.ttsu.app/manage), [epub.js](https://github.com/johnfactotum/foliate-js), [minimalreader](https://www.minimalreader.xyz/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -170,9 +170,10 @@
|
||||||
* 🌐 **[Awesome Startpage](https://github.com/jnmcfly/awesome-startpage)** - Startpage Resources
|
* 🌐 **[Awesome Startpage](https://github.com/jnmcfly/awesome-startpage)** - Startpage Resources
|
||||||
* 🌐 **[Startpage Emporium](https://startpages.github.io/)** - Startpage Index
|
* 🌐 **[Startpage Emporium](https://startpages.github.io/)** - Startpage Index
|
||||||
* ⭐ **[WebOasis](https://weboasis.su/)**, [2](https://behu.io/), [3](https://ndsamuelson.github.io/weboas-is/) / [GitHub](https://github.com/ParrotDevelopers/WebOasis/)
|
* ⭐ **[WebOasis](https://weboasis.su/)**, [2](https://behu.io/), [3](https://ndsamuelson.github.io/weboas-is/) / [GitHub](https://github.com/ParrotDevelopers/WebOasis/)
|
||||||
|
* ⭐ **[ez.lol](https://ez.lol/)**
|
||||||
* ⭐ **[MONKNOW](https://www.monknow.com/)**
|
* ⭐ **[MONKNOW](https://www.monknow.com/)**
|
||||||
|
|
||||||
[8bitdash](https://www.8bitdash.com/), [8 Bit Dashboard](https://8bitdashboard.com/), [Clippingmini](https://www.clippingmini.com/), [Draggo](https://draggo.com/), [Pearltrees](https://www.pearltrees.com/), [Nextcloud](https://apps.nextcloud.com/apps/bookmarks), [Cling](https://cling.com/), [Symbaloo](https://www.symbaloo.com/), [Tixio](https://tixio.io/), [Bento](https://github.com/migueravila/Bento), [ez.lol](https://ez.lol/), [nightly](https://github.com/damnitharshit/nightly), [Protopage](https://www.protopage.com/), [tilde](https://github.com/xvvvyz/tilde), [Fluidity](https://prettycoffee.github.io/fluidity/) / [GitHub](https://github.com/PrettyCoffee/fluidity), [AllMyFaves](https://allmyfaves.com/), [start.me](https://start.me/start/int/startpage)
|
[8bitdash](https://www.8bitdash.com/), [8 Bit Dashboard](https://8bitdashboard.com/), [Clippingmini](https://www.clippingmini.com/), [Draggo](https://draggo.com/), [Pearltrees](https://www.pearltrees.com/), [Nextcloud](https://apps.nextcloud.com/apps/bookmarks), [Cling](https://cling.com/), [Symbaloo](https://www.symbaloo.com/), [Tixio](https://tixio.io/), [Bento](https://github.com/migueravila/Bento), [nightly](https://github.com/damnitharshit/nightly), [Protopage](https://www.protopage.com/), [tilde](https://github.com/xvvvyz/tilde), [Fluidity](https://prettycoffee.github.io/fluidity/) / [GitHub](https://github.com/PrettyCoffee/fluidity), [AllMyFaves](https://allmyfaves.com/), [start.me](https://start.me/start/int/startpage)
|
||||||
|
|
||||||
### Customizable New Tab Page
|
### Customizable New Tab Page
|
||||||
|
|
||||||
|
@ -200,7 +201,7 @@
|
||||||
|
|
||||||
## CLI Cheat Sheets
|
## CLI Cheat Sheets
|
||||||
|
|
||||||
* ⭐ **[Linux Command Library](https://linuxcommandlibrary.com/)**
|
* ⭐ **[Linux Command Library](https://linuxcommandlibrary.com/)** / [GitHub](https://github.com/SimonSchubert/LinuxCommandLibrary)
|
||||||
|
|
||||||
[Awesome for One Liner](https://github.com/sheepla/awesome-for-oneliner), [You Don't Need GUI](https://github.com/you-dont-need/You-Dont-Need-GUI), [CommandlineFU](https://www.commandlinefu.com/), [how2](https://github.com/santinic/how2), [Bash Academy](https://guide.bash.academy/), [ss64 Bash](https://ss64.com/bash/), [Bash Oneliner](https://onceupon.github.io/Bash-Oneliner/), [navi](https://github.com/denisidoro/navi)
|
[Awesome for One Liner](https://github.com/sheepla/awesome-for-oneliner), [You Don't Need GUI](https://github.com/you-dont-need/You-Dont-Need-GUI), [CommandlineFU](https://www.commandlinefu.com/), [how2](https://github.com/santinic/how2), [Bash Academy](https://guide.bash.academy/), [ss64 Bash](https://ss64.com/bash/), [Bash Oneliner](https://onceupon.github.io/Bash-Oneliner/), [navi](https://github.com/denisidoro/navi)
|
||||||
|
|
||||||
|
@ -266,7 +267,7 @@
|
||||||
* [Cascii](https://cascii.app/) / [GitHub](https://github.com/casparwylie/cascii-core), [ASCII Flow](https://asciiflow.com/) or [tree](https://tree.nathanfriend.com/) - Create ASCII Diagrams
|
* [Cascii](https://cascii.app/) / [GitHub](https://github.com/casparwylie/cascii-core), [ASCII Flow](https://asciiflow.com/) or [tree](https://tree.nathanfriend.com/) - Create ASCII Diagrams
|
||||||
* [SVGBob Editor](https://ivanceras.github.io/svgbob-editor/) - Convert ASCII Diagrams to SVG Images
|
* [SVGBob Editor](https://ivanceras.github.io/svgbob-editor/) - Convert ASCII Diagrams to SVG Images
|
||||||
|
|
||||||
[DGM](https://dgm.sh/), [DrawDB](https://www.drawdb.app/) / [Discord](https://discord.gg/BrjZgNrmR6), [Data GIF Maker](https://datagifmaker.withgoogle.com/), [Flourish](https://flourish.studio/), [Datawrapper](https://www.datawrapper.de/), [chartd](https://www.chartd.co/), [Chart.xkcd](https://timqian.com/chart.xkcd/), [QuickChart](https://quickchart.io/), [Percival](https://percival.ink/), [amCharts](https://live.amcharts.com/), [ACME Chartmaker](https://acme.com/chartmaker/), [ParaView](https://www.paraview.org/), [Dia](http://dia-installer.de/), [yEd Live](https://www.yworks.com/yed-live/), [Mermaid](https://mermaid.live/), [LineGraphMaker](https://linegraphmaker.co/), [SwimLanes](https://swimlanes.io/), [Quiver](https://q.uiver.app/), [Gephi](https://gephi.org/), [Graphviz](https://graphviz.org/) / [Editor](https://edotor.net/), [Graphonline](https://graphonline.top/en/), [Diagramify](https://diagramify.agiliq.com/), [Charts Builder](https://charts.hohli.com/), [diagramgpt](https://www.eraser.io/diagramgpt), [Diagram.codes](https://www.diagram.codes/), [text2diagram](https://text2diagram.com/), [SankeyMATIC](https://sankeymatic.com/), [app.diagrams](https://app.diagrams.net/), [histogrammaker](https://histogrammaker.net/), [flowgorithm](http://flowgorithm.org/), [Chart Builder](https://textquery.app/tools/chart-builder/)
|
[app.diagrams](https://app.diagrams.net/), [DGM](https://dgm.sh/), [DrawDB](https://www.drawdb.app/) / [Discord](https://discord.gg/BrjZgNrmR6), [Data GIF Maker](https://datagifmaker.withgoogle.com/), [Flourish](https://flourish.studio/), [Datawrapper](https://www.datawrapper.de/), [chartd](https://www.chartd.co/), [Chart.xkcd](https://timqian.com/chart.xkcd/), [QuickChart](https://quickchart.io/), [Percival](https://percival.ink/), [amCharts](https://live.amcharts.com/), [ACME Chartmaker](https://acme.com/chartmaker/), [ParaView](https://www.paraview.org/), [Dia](http://dia-installer.de/), [yEd Live](https://www.yworks.com/yed-live/), [Mermaid](https://mermaid.live/), [LineGraphMaker](https://linegraphmaker.co/), [SwimLanes](https://swimlanes.io/), [Quiver](https://q.uiver.app/), [Gephi](https://gephi.org/), [Graphviz](https://graphviz.org/) / [Editor](https://edotor.net/), [Graphonline](https://graphonline.top/en/), [Diagramify](https://diagramify.agiliq.com/), [Charts Builder](https://charts.hohli.com/), [diagramgpt](https://www.eraser.io/diagramgpt), [Diagram.codes](https://www.diagram.codes/), [text2diagram](https://text2diagram.com/), [SankeyMATIC](https://sankeymatic.com/), [histogrammaker](https://histogrammaker.net/), [flowgorithm](http://flowgorithm.org/), [Chart Builder](https://textquery.app/tools/chart-builder/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -274,7 +275,7 @@
|
||||||
|
|
||||||
* ⭐ **[Design Resources](https://rentry.co/dt92f)**
|
* ⭐ **[Design Resources](https://rentry.co/dt92f)**
|
||||||
|
|
||||||
[design-resources-for-developers](https://github.com/bradtraversy/design-resources-for-developers), [Freebies.ByPeople](https://freebies.bypeople.com/), [Design Bundles](https://designbundles.net/free-design-resources), [Design Resources](https://designresourc.es/), [PSDDD.co](https://psddd.co/), [GraphicsFuel](https://www.graphicsfuel.com/), [Pixeden](https://www.pixeden.com/), [Sketch Repo](https://sketchrepo.com/), [Interfacer](https://interfacer.xyz/), [Freebiesbug](https://freebiesbug.com/), [Sketch App Sources](https://www.sketchappsources.com/), [FreebiesUI](https://freebiesui.com/), [Envato Elements Downloader](https://t.me/Envato_Download_Bot), [Creative Fabrica](https://www.creativefabrica.com/freebies/), [Toools.design](https://www.toools.design/) / [2](https://t.me/envatoss) / [3](https://t.me/elements_downloader_bot), [Evernote.Design](https://www.evernote.design/), [GFXTRA](https://www.gfxtra31.com/), [XSGames](https://xsgames.co/devassets/), [design.dev](https://design.dev/), [UI STORE DESIGN](https://www.uistore.design/), [Charco](https://www.charco.design/), [Pixelbuddha](https://pixelbuddha.net/), [squax](https://t.me/squaxassets), [𝖌𝖗𝖕𝖍𝖈 𝖉𝖘𝖌𝖓 𝖇𝖆𝖈𝖐𝖚𝖕](https://t.me/designlabb), [all 4 designer](https://t.me/all4designer), [GFXMountain](https://gfxmountain.com/), [Buckets Of Bookmarks](https://buckets-of-bookmarks.daniebeler.com/), [degreeless](https://www.degreeless.design/), [CraftWork](https://craftwork.design/catalog/freebies), [Gift4Designer](https://gift4designer.net/)
|
[design-resources-for-developers](https://github.com/bradtraversy/design-resources-for-developers), [Freebies.ByPeople](https://freebies.bypeople.com/), [Design Bundles](https://designbundles.net/free-design-resources), [Design Resources](https://designresourc.es/), [PSDDD.co](https://psddd.co/), [GraphicsFuel](https://www.graphicsfuel.com/), [Pixeden](https://www.pixeden.com/), [Sketch Repo](https://sketchrepo.com/), [Interfacer](https://interfacer.xyz/), [Freebiesbug](https://freebiesbug.com/), [Sketch App Sources](https://www.sketchappsources.com/), [FreebiesUI](https://freebiesui.com/), [Creative Fabrica](https://www.creativefabrica.com/freebies/), [Toools.design](https://www.toools.design/) / [2](https://t.me/envatoss) / [3](https://t.me/elements_downloader_bot), [Evernote.Design](https://www.evernote.design/), [GFXTRA](https://www.gfxtra31.com/), [XSGames](https://xsgames.co/devassets/), [design.dev](https://design.dev/), [UI STORE DESIGN](https://www.uistore.design/), [Charco](https://www.charco.design/), [Pixelbuddha](https://pixelbuddha.net/), [squax](https://t.me/squaxassets), [𝖌𝖗𝖕𝖍𝖈 𝖉𝖘𝖌𝖓 𝖇𝖆𝖈𝖐𝖚𝖕](https://t.me/designlabb), [all 4 designer](https://t.me/all4designer), [GFXMountain](https://gfxmountain.com/), [degreeless](https://www.degreeless.design/), [CraftWork](https://craftwork.design/catalog/freebies), [Gift4Designer](https://gift4designer.net/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -283,7 +284,7 @@
|
||||||
* ⭐ **[vads](https://vads.ac.uk/digital/)**
|
* ⭐ **[vads](https://vads.ac.uk/digital/)**
|
||||||
* ⭐ **[Arts and Culture](https://artsandculture.google.com/)**
|
* ⭐ **[Arts and Culture](https://artsandculture.google.com/)**
|
||||||
|
|
||||||
[Painting Index](https://index-of.eu/Paintings/), [rijksstudio](https://www.rijksmuseum.nl/en/rijksstudio), [Haltadefinizione](https://www.haltadefinizione.com/en/), [Artcyclopedia](http://www.artcyclopedia.com/), [The Wolfman Museum of Art](https://wolfmanmuseum.org/), [DarkClassics](https://darkclassics.blogspot.com/), [European Art](https://photos.app.goo.gl/q5GRdpSvARAqhbSh6), [The Watercolour World](https://www.watercolourworld.org/), [Museo](https://museo.app/), [Arthur](https://arthur.io/), [WGA](https://www.wga.hu/), [Gallerix](https://gallerix.org/), [WikiArt](https://www.wikiart.org/), [Public Work](https://public.work/), [Public Domain Image Archive](https://pdimagearchive.org/), [V&A](https://www.vam.ac.uk/)
|
[Painting Index](https://index-of.eu/Paintings/), [rijksstudio](https://www.rijksmuseum.nl/en/rijksstudio), [Haltadefinizione](https://www.haltadefinizione.com/en/), [Artcyclopedia](http://www.artcyclopedia.com/), [The Wolfman Museum of Art](https://wolfmanmuseum.org/), [DarkClassics](https://darkclassics.blogspot.com/), [European Art](https://photos.app.goo.gl/q5GRdpSvARAqhbSh6), [The Watercolour World](https://www.watercolourworld.org/), [Museo](https://museo.app/), [Arthur](https://arthur.io/), [WGA](https://www.wga.hu/), [Gallerix](https://gallerix.org/), [WikiArt](https://www.wikiart.org/), [Public Work](https://public.work/), [Public Domain Image Archive](https://pdimagearchive.org/), [V&A](https://www.vam.ac.uk/), [Louvre](https://collections.louvre.fr/en/), [Artchive](https://www.artchive.com/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -332,7 +333,7 @@
|
||||||
* ⭐ **[Matrix](https://matrix.org/)**, [Nheko](https://nheko-reborn.github.io/), [Cinny](https://cinny.in/), [SchildiChat](https://schildi.chat/) or [Fluffy](https://fluffychat.im) - Matrix Clients / [Mod Tools](https://github.com/matrix-org/mjolnir)
|
* ⭐ **[Matrix](https://matrix.org/)**, [Nheko](https://nheko-reborn.github.io/), [Cinny](https://cinny.in/), [SchildiChat](https://schildi.chat/) or [Fluffy](https://fluffychat.im) - Matrix Clients / [Mod Tools](https://github.com/matrix-org/mjolnir)
|
||||||
* ⭐ **[Signal](https://signal.org/)** / [Extract Messages](https://github.com/tbvdm/sigtop)
|
* ⭐ **[Signal](https://signal.org/)** / [Extract Messages](https://github.com/tbvdm/sigtop)
|
||||||
|
|
||||||
[Element](https://element.io/) / [GitHub](https://github.com/element-hq), [Cwtch](https://docs.cwtch.im/), [Speek](https://speek.network/), [Retroshare](https://retroshare.cc/), [Off-the-Record Messaging](https://otr.cypherpunks.ca/), [Session](https://getsession.org/), [Enigma](https://enigma-reloaded.github.io/enigma-reloaded), [mx moment](https://mx-moment.xyz/), [Keybase](https://keybase.io/), [BiP](https://bip.com/en/), [SimpleX](https://simplex.chat/), [emberclear](https://emberclear.io/), [CoyIM](https://coy.im/), [RicochetRefresh](https://www.ricochetrefresh.net/), [Linphone](https://www.linphone.org/) / [GitLab](https://gitlab.linphone.org/explore/projects), [Jami](https://jami.net/) / [GitLab](https://git.jami.net/savoirfairelinux), [Tox](https://tox.chat/) / [GitHub](https://github.com/TokTok/c-toxcore), [Teleguard](https://teleguard.com/en)
|
[Element](https://element.io/) / [GitHub](https://github.com/element-hq), [Cwtch](https://docs.cwtch.im/), [Speek](https://speek.network/), [Retroshare](https://retroshare.cc/), [Off-the-Record Messaging](https://otr.cypherpunks.ca/), [Session](https://getsession.org/), [Enigma](https://enigma-reloaded.github.io/enigma-reloaded), [mx moment](https://mx-moment.xyz/), [Keybase](https://keybase.io/), [BiP](https://bip.com/en/), [SimpleX](https://simplex.chat/), [emberclear](https://emberclear.io/), [CoyIM](https://coy.im/), [RicochetRefresh](https://www.ricochetrefresh.net/), [Linphone](https://www.linphone.org/) / [GitLab](https://gitlab.linphone.org/explore/projects), [Jami](https://jami.net/) / [GitLab](https://git.jami.net/savoirfairelinux), [Tox](https://tox.chat/) / [GitHub](https://github.com/TokTok/c-toxcore), [qTox](https://qtox.github.io/) / [GitHub](https://github.com/TokTok/qTox), [Teleguard](https://teleguard.com/en)
|
||||||
|
|
||||||
### Matrix Home Servers
|
### Matrix Home Servers
|
||||||
|
|
||||||
|
@ -378,13 +379,10 @@
|
||||||
|
|
||||||
* [RaceVPN](https://www.racevpn.com/)
|
* [RaceVPN](https://www.racevpn.com/)
|
||||||
* [GreenSSH](https://www.greenssh.com/)
|
* [GreenSSH](https://www.greenssh.com/)
|
||||||
* [CyberSSH](https://cyberssh.com/vpn/config)
|
|
||||||
* [vpn.fail](https://vpn.fail/)
|
* [vpn.fail](https://vpn.fail/)
|
||||||
* [VPN Jantit](https://www.vpnjantit.com/)
|
* [VPN Jantit](https://www.vpnjantit.com/)
|
||||||
* [PisoVPN](https://pisovpn.com)
|
|
||||||
* [sshOcean](https://sshocean.com/) / [2](https://sshocean.net/)
|
* [sshOcean](https://sshocean.com/) / [2](https://sshocean.net/)
|
||||||
* [FreeVPN](https://www.freevpn.us/)
|
* [FreeVPN](https://www.freevpn.us/)
|
||||||
* [StarSSH](https://starssh.com/)
|
|
||||||
* [Goodssh](https://www.goodssh.com/)
|
* [Goodssh](https://www.goodssh.com/)
|
||||||
* [SSHKit](https://sshkit.com/)
|
* [SSHKit](https://sshkit.com/)
|
||||||
* [JagoanSSH](https://www.jagoanssh.com/)
|
* [JagoanSSH](https://www.jagoanssh.com/)
|
||||||
|
@ -539,15 +537,15 @@
|
||||||
* ⭐ **[Dortania](https://dortania.github.io/OpenCore-Install-Guide/)** - Hackintosh Building Guides
|
* ⭐ **[Dortania](https://dortania.github.io/OpenCore-Install-Guide/)** - Hackintosh Building Guides
|
||||||
* ⭐ **[/r/Hackintosh](https://www.reddit.com/r/hackintosh/)** - Hackintosh Community / Subreddit / [Discord](https://discord.gg/u8V7N5C)
|
* ⭐ **[/r/Hackintosh](https://www.reddit.com/r/hackintosh/)** - Hackintosh Community / Subreddit / [Discord](https://discord.gg/u8V7N5C)
|
||||||
* [/r/Hackintosh Tools](https://www.reddit.com/r/hackintosh/comments/npvuqg/hackintosh_macos_free_tools/) or [hackintosh-tools](https://rentry.org/hackintosh-tools) - Hackintosh Tools
|
* [/r/Hackintosh Tools](https://www.reddit.com/r/hackintosh/comments/npvuqg/hackintosh_macos_free_tools/) or [hackintosh-tools](https://rentry.org/hackintosh-tools) - Hackintosh Tools
|
||||||
* [Hackintosh Graphics Fix](https://rentry.org/fix-graphics)
|
|
||||||
* [OneClick-macOS](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) - macOS Virtual Machines using QEMU
|
* [OneClick-macOS](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) - macOS Virtual Machines using QEMU
|
||||||
|
* [OSX-PROXMOX](https://rentry.co/FMHYBase64#osx-proxmox) - macOS on Proxmox
|
||||||
|
* [OCLP](https://github.com/dortania/OpenCore-Legacy-Patcher) - Hackintosh for Unsupported Hardware
|
||||||
* [VMware Workstation Hackintosh](https://docs.bluebubbles.app/server/advanced/macos-virtualization/running-a-macos-vm/deploying-macos-in-vmware-on-windows-full-guide) - Install macOS in Vmware Workstation
|
* [VMware Workstation Hackintosh](https://docs.bluebubbles.app/server/advanced/macos-virtualization/running-a-macos-vm/deploying-macos-in-vmware-on-windows-full-guide) - Install macOS in Vmware Workstation
|
||||||
* [Download VMware](https://softwareupdate.vmware.com/cds/vmw-desktop/ws/) - Download VMware Workstation from VMware / [Notes](https://rentry.org/VMware-guide)
|
|
||||||
* [Ryzen-hackintosh](https://github.com/mikigal/ryzen-hackintosh) - Hackintosh for Ryzen
|
* [Ryzen-hackintosh](https://github.com/mikigal/ryzen-hackintosh) - Hackintosh for Ryzen
|
||||||
* [Xiaomi-Pro-Hackintosh](https://github.com/daliansky/XiaoMi-Pro-Hackintosh) - Hackintosh for Xiaomi
|
* [Xiaomi-Pro-Hackintosh](https://github.com/daliansky/XiaoMi-Pro-Hackintosh) - Hackintosh for Xiaomi
|
||||||
* [unplugged-macos](https://rentry.org/unplugged-macos) - Unplugged Hackintosh
|
* [Unplugged](https://github.com/corpnewt/UnPlugged) - Bash Script for macOS Offline Installer
|
||||||
* [EFI-Agent](https://github.com/benbaker76/EFI-Agent) - GUI App to Mount EFI Partitions
|
* [EFI-Agent](https://github.com/benbaker76/EFI-Agent) - GUI App to Mount EFI Partitions
|
||||||
* [Vmware Tools](https://packages.vmware.com/tools/frozen/darwin/) - VMware Tools ISO for macOS VM / [Unlocker](https://github.com/BDisp/unlocker/)
|
* [Vmware Tools](https://packages.vmware.com/tools/frozen/darwin/) - VMware Tools ISO for macOS VM / [Unlocker](https://rentry.co/FMHYBase64#vmware-workstation)
|
||||||
* [Emaculation](https://www.emaculation.com/) or [felixrieseberg](https://github.com/felixrieseberg/macintosh.js/) - Virtual macOS
|
* [Emaculation](https://www.emaculation.com/) or [felixrieseberg](https://github.com/felixrieseberg/macintosh.js/) - Virtual macOS
|
||||||
* [macOS for all computers](https://github.com/yusufklncc/Hackintosh-for-All-Computers) - Contains Prebuilt EFI for Systems
|
* [macOS for all computers](https://github.com/yusufklncc/Hackintosh-for-All-Computers) - Contains Prebuilt EFI for Systems
|
||||||
* [Tonymacx86](https://www.tonymacx86.com/) or [Olarilla](https://olarila.com/) - Customized macOS for Intel and AMD / [Notes](https://rentry.org/what-to-choose)
|
* [Tonymacx86](https://www.tonymacx86.com/) or [Olarilla](https://olarila.com/) - Customized macOS for Intel and AMD / [Notes](https://rentry.org/what-to-choose)
|
||||||
|
@ -558,7 +556,6 @@
|
||||||
|
|
||||||
* https://techy-transistor.notion.site/Team-drives-ab7ebffc1e5040b5b5362e9d70fca4d5
|
* https://techy-transistor.notion.site/Team-drives-ab7ebffc1e5040b5b5362e9d70fca4d5
|
||||||
* https://groups.google.com/forum/#!forum/sammytorrents
|
* https://groups.google.com/forum/#!forum/sammytorrents
|
||||||
* https://groups.google.com/g/team-drive99
|
|
||||||
* https://groups.google.com/g/rdrivelinks
|
* https://groups.google.com/g/rdrivelinks
|
||||||
* https://groups.google.com/g/torrentleech-gdrive
|
* https://groups.google.com/g/torrentleech-gdrive
|
||||||
* https://groups.google.com/g/monarch-cloud
|
* https://groups.google.com/g/monarch-cloud
|
||||||
|
@ -580,9 +577,9 @@
|
||||||
## Instagram Viewers / Downloaders
|
## Instagram Viewers / Downloaders
|
||||||
|
|
||||||
* [IG Helper](https://greasyfork.org/en/scripts/404535) or [IG Download Button](https://greasyfork.org/en/scripts/406535-instagram-download-button) - Userscripts
|
* [IG Helper](https://greasyfork.org/en/scripts/404535) or [IG Download Button](https://greasyfork.org/en/scripts/406535-instagram-download-button) - Userscripts
|
||||||
* [ESUIT](https://chromewebstore.google.com/detail/esuit-photos-downloader-f/adighedbfmnpjcjlloooichmbjdefane) or [Mass Downloader](https://chromewebstore.google.com/detail/mass-downloader-for-insta/ldoldiahbhnbfdihknppjbhgjngibdbe) - Chrome Extensions
|
* [ESUIT](https://chromewebstore.google.com/detail/esuit-photos-downloader-f/adighedbfmnpjcjlloooichmbjdefane) or [Mass Downloader](https://chromewebstore.google.com/detail/jmpdoloapmhninneneekkepmkpmpkhjn) - Chrome Extensions
|
||||||
|
|
||||||
[Pixwox](https://www.pixwox.com/) / [2](https://www.piokok.com/) / [3](https://www.picnob.com/), [instasaved](https://instasaved.net/en), [insta-stories-viewer](https://insta-stories-viewer.com/), [Instagram PHP Scraper](https://github.com/postaddictme/instagram-php-scraper), [FastDL](https://fastdl.app/en), [SaveFromWeb](https://www.savefromweb.com/), [Downloadgram](https://downloadgram.org/), [Dumpor](https://dumpor.io/), [GreatFon](https://greatfon.io/), [ThumbTube](https://thumbtube.com/download-instagram-photos-videos), [scraper-instagram-gui-desktop](https://git.kaki87.net/KaKi87/scraper-instagram-gui-desktop), [Instaloader](https://github.com/instaloader/instaloader), [InstaLoader](https://instaloader.github.io/), [Weynstag](https://www.google.com/amp/s/weynstag.com/amp.php/), [anonyig](https://anonyig.com/), [mollygram](https://mollygram.com/)
|
[Pixnoy](https://www.pixnoy.com/), [instasaved](https://instasaved.net/en), [insta-stories-viewer](https://insta-stories-viewer.com/), [Instagram PHP Scraper](https://github.com/postaddictme/instagram-php-scraper), [FastDL](https://fastdl.app/en), [SaveFromWeb](https://www.savefromweb.com/), [Downloadgram](https://downloadgram.org/), [Dumpor](https://dumpor.io/), [GreatFon](https://greatfon.io/), [ThumbTube](https://thumbtube.com/download-instagram-photos-videos), [Instaloader](https://instaloader.github.io/) / [GitHub]https://github.com/instaloader/instaloader), [Weynstag](https://www.google.com/amp/s/weynstag.com/amp.php/), [anonyig](https://anonyig.com/), [mollygram](https://mollygram.com/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -729,7 +726,7 @@
|
||||||
|
|
||||||
### Mod / Resource Pack Indexes
|
### Mod / Resource Pack Indexes
|
||||||
|
|
||||||
* ⭐ **[Modrinth](https://modrinth.com/)** / [Redirector](https://github.com/devBoi76/modrinthify) / [Ad-Free App](https://github.com/DIDIRUS4/AstralRinth)
|
* ⭐ **[Modrinth](https://modrinth.com/)** / [Redirector](https://github.com/devBoi76/modrinthify)
|
||||||
* ⭐ **[UsefulMods](https://github.com/TheUsefulLists/UsefulMods)**
|
* ⭐ **[UsefulMods](https://github.com/TheUsefulLists/UsefulMods)**
|
||||||
* [ModBay](https://modbay.org/) - Bedrock Edition Content
|
* [ModBay](https://modbay.org/) - Bedrock Edition Content
|
||||||
* [CurseForge](https://www.curseforge.com/minecraft) / [QOL Fixes](https://greasyfork.org/en/scripts/389255-curseforge-qol-fixes), [2](https://greasyfork.org/en/scripts/445993-modrinthify)
|
* [CurseForge](https://www.curseforge.com/minecraft) / [QOL Fixes](https://greasyfork.org/en/scripts/389255-curseforge-qol-fixes), [2](https://greasyfork.org/en/scripts/445993-modrinthify)
|
||||||
|
@ -761,7 +758,7 @@
|
||||||
|
|
||||||
* ⭐ **[Free for Developers](https://free-for.dev/)**
|
* ⭐ **[Free for Developers](https://free-for.dev/)**
|
||||||
|
|
||||||
[Free For Life](https://free.hrsn.dev/) / [GitHub](https://github.com/wdhdev/free-for-life/), [SmallDev.tools](https://smalldev.tools/), [WebdevHome](https://webdevhome.github.io/), [Eclipse Foundation](https://www.eclipse.org/), [DevBox](https://intab.io/resources/), [Free Developer Stuff](https://freestuff.dev/), [Tiny Tools](https://tinytools.directory/), [Clean CSS](https://www.cleancss.com/), [Dev Resources](https://devresourc.es/), [FreeFormatter.com](https://freeformatter.com/), [Utilities and Tools Online](https://utilities-online.info/), [Online String Tools](https://onlinestringtools.com/), [Coders Tool](https://www.coderstool.com/), [Prototypr](https://prototypr.io/toolbox/page/1), [AppDevTools](https://appdevtools.com/), [IT Tools](https://it-tools.tech/), [Omatsuri](https://omatsuri.app/), [devina](https://devina.io/), [wangchujiang](https://wangchujiang.com/tools/), [Addy](https://toolkit.addy.codes/)
|
[Free For Life](https://free.hrsn.dev/) / [GitHub](https://github.com/wdhdev/free-for-life/), [SmallDev.tools](https://smalldev.tools/), [WebdevHome](https://webdevhome.github.io/), [Eclipse Foundation](https://www.eclipse.org/), [DevBox](https://intab.io/resources/), [Free Developer Stuff](https://freestuff.dev/), [Tiny Tools](https://tinytools.directory/), [Clean CSS](https://www.cleancss.com/), [Dev Resources](https://devresourc.es/), [FreeFormatter.com](https://freeformatter.com/), [Utilities and Tools Online](https://utilities-online.info/), [Online String Tools](https://onlinestringtools.com/), [Coders Tool](https://www.coderstool.com/), [Prototypr](https://prototypr.io/toolbox/page/1), [AppDevTools](https://appdevtools.com/), [IT Tools](https://it-tools.tech/), [Omatsuri](https://omatsuri.app/), [devina](https://devina.io/), [wangchujiang](https://wangchujiang.com/tools/), [Addy](https://toolkit.addy.codes/), [Web Toolbox](https://web-toolbox.dev/en)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -898,7 +895,7 @@
|
||||||
* ⭐ **[BBC Sounds](https://www.bbc.co.uk/sounds)** / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
* ⭐ **[BBC Sounds](https://www.bbc.co.uk/sounds)** / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||||
* [StreamURL](https://streamurl.link/) - Radio URL Search
|
* [StreamURL](https://streamurl.link/) - Radio URL Search
|
||||||
|
|
||||||
[iHeartRadio](https://www.iheart.com/), [Flicker Radio](https://flickermini.netlify.app/radiostations), [OnlineRadioBox](https://onlineradiobox.com/), [LiveOnlineRadio](https://liveonlineradio.net/), [WebSDR](http://www.websdr.org/), [System Bus Radio](https://fulldecent.github.io/system-bus-radio/), [myTuner](https://mytuner-radio.com/), [Zeno](https://zeno.fm/), [TuneYou](https://tuneyou.com/), [Tvradiotuner](https://tvradiotuner.com/), [Instant.audio](https://instant.audio/), [Radiodeck](https://www.radiodeck.com/), [VRadio](https://www.akouradio.com/), [WorldRadioMap](https://worldradiomap.com/), [Streema](https://streema.com/), [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp), [Radio.net](https://www.radio.net/), [TheOneStopRadio](https://theonestopradio.com/), [Radio Guide](https://www.radioguide.fm/), [Xiph](https://dir.xiph.org/), [raddio](https://raddio.net/), [ilovemusic](https://ilovemusic.de/), [0nRadio](https://www.0nradio.com/), [1a Radio](https://www.1aradio.com/), [radioline](https://www.radioline.co/), [QMPlay2](https://github.com/zaps166/QMPlay2), [UKRadioLive](https://ukradiolive.com/), [Quasar Radio](https://kuasark.com/en/)
|
[iHeartRadio](https://www.iheart.com/), [Flicker Radio](https://flickermini.pages.dev/radiostations), [OnlineRadioBox](https://onlineradiobox.com/), [LiveOnlineRadio](https://liveonlineradio.net/), [WebSDR](http://www.websdr.org/), [System Bus Radio](https://fulldecent.github.io/system-bus-radio/), [myTuner](https://mytuner-radio.com/), [Zeno](https://zeno.fm/), [TuneYou](https://tuneyou.com/), [Tvradiotuner](https://tvradiotuner.com/), [Instant.audio](https://instant.audio/), [Radiodeck](https://www.radiodeck.com/), [VRadio](https://www.akouradio.com/), [WorldRadioMap](https://worldradiomap.com/), [Streema](https://streema.com/), [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp), [Radio.net](https://www.radio.net/), [TheOneStopRadio](https://theonestopradio.com/), [Radio Guide](https://www.radioguide.fm/), [Xiph](https://dir.xiph.org/), [raddio](https://raddio.net/), [ilovemusic](https://ilovemusic.de/), [0nRadio](https://www.0nradio.com/), [1a Radio](https://www.1aradio.com/), [radioline](https://www.radioline.co/), [QMPlay2](https://github.com/zaps166/QMPlay2), [UKRadioLive](https://ukradiolive.com/), [Quasar Radio](https://kuasark.com/en/)
|
||||||
|
|
||||||
### Internet Radio
|
### Internet Radio
|
||||||
|
|
||||||
|
@ -906,7 +903,9 @@
|
||||||
|
|
||||||
[deepcut.fm](https://deepcut.live/), [CoreRadio](https://coreradio.online/listen), [RadioParadise](https://radioparadise.com/), [IndieSHuffle](https://www.indieshuffle.com/), [You42](https://www.you42.com/), [Jango](https://www.jango.com/), [RadioTunes](https://www.radiotunes.com/), [Live365](https://live365.com/), [AccuRadio](https://www.accuradio.com/), [Radio.dubbeh](https://radio.dubbeh.net/), [Tilderadio](https://tilderadio.org/), [AnonRadio](https://anonradio.net/), [UpBeat](https://upbeatradio.net/) / [Discord](https://upbeat.pw/discord), [Radios.yt](https://radios.yt/), [ShoutCast](https://directory.shoutcast.com/), [Internet-Radio](https://internet-radio.com/), [Radiolise](https://radiolise.gitlab.io/), [JetSetRadio](https://jetsetradio.live/) / [2](https://jetsetradiofuture.live/), [radio.uwu](https://radio.uwu.network/), [radcap](http://radcap.ru/), [Audiophile](https://audiophile.fm/), [NTS Radio](https://www.nts.live/) / [SoundCloud](https://soundcloud.com/user-643553014), [You Radio](https://play.you.radio/), [rivestream](https://rivestream.org/radio), [SEDR](https://www.sedr.space/)
|
[deepcut.fm](https://deepcut.live/), [CoreRadio](https://coreradio.online/listen), [RadioParadise](https://radioparadise.com/), [IndieSHuffle](https://www.indieshuffle.com/), [You42](https://www.you42.com/), [Jango](https://www.jango.com/), [RadioTunes](https://www.radiotunes.com/), [Live365](https://live365.com/), [AccuRadio](https://www.accuradio.com/), [Radio.dubbeh](https://radio.dubbeh.net/), [Tilderadio](https://tilderadio.org/), [AnonRadio](https://anonradio.net/), [UpBeat](https://upbeatradio.net/) / [Discord](https://upbeat.pw/discord), [Radios.yt](https://radios.yt/), [ShoutCast](https://directory.shoutcast.com/), [Internet-Radio](https://internet-radio.com/), [Radiolise](https://radiolise.gitlab.io/), [JetSetRadio](https://jetsetradio.live/) / [2](https://jetsetradiofuture.live/), [radio.uwu](https://radio.uwu.network/), [radcap](http://radcap.ru/), [Audiophile](https://audiophile.fm/), [NTS Radio](https://www.nts.live/) / [SoundCloud](https://soundcloud.com/user-643553014), [You Radio](https://play.you.radio/), [rivestream](https://rivestream.org/radio), [SEDR](https://www.sedr.space/)
|
||||||
|
|
||||||
### Random Image Sites
|
***
|
||||||
|
|
||||||
|
## Random Image Sites
|
||||||
|
|
||||||
* ⭐ **[iFunny](https://ifunny.co/)**
|
* ⭐ **[iFunny](https://ifunny.co/)**
|
||||||
|
|
||||||
|
@ -978,23 +977,6 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## Streaming Site Clones
|
|
||||||
|
|
||||||
### M4UFree Clones
|
|
||||||
|
|
||||||
* [M4uFree.com](https://ww2.m4ufree.com/)
|
|
||||||
* [M4uFree.se](https://m4ufree.se/)
|
|
||||||
* [m4ufree.to](https://ww1.m4ufree.to/) / [2](https://m4ufree.vip/) / [3](https://m4ufree.pw/)
|
|
||||||
* [M4uHD.tv](https://ww2.m4uhd.tv/) / [2](https://ww2.m4uhd.cc/) / [3](https://m4uhd.to/)
|
|
||||||
* [Streamm4u](https://ww1.streamm4u.tv/) / [2](https://ww1.streamm4u.net/)
|
|
||||||
* [M4uMV.org](https://m4umv.org/)
|
|
||||||
* [MoviesM4U](https://moviesm4u.net/)
|
|
||||||
* [Filmzie](https://filmzie.cc/)
|
|
||||||
* [Andyday](https://andyday.cc/)
|
|
||||||
* [FouMovies](https://foumovies.tv/)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## Spotify Playlist Generators
|
## Spotify Playlist Generators
|
||||||
|
|
||||||
[Spotalike](https://spotalike.com/), [playlist-generator](https://www.playlist-generator.com/), [Chat Jams](https://www.chatjams.ai/), [MagicPlaylist](https://magicplaylist.co/), [Vibesition](https://vibesition.jordantwells.com/), [Groovifi](https://groovifi.com/), [spotgen](https://epsil.github.io/spotgen), [Highlights2SPotify](https://highlights2spotify.com/), [RadioNewify](https://radionewify.com/), [Predominantly](https://predominant.ly/)
|
[Spotalike](https://spotalike.com/), [playlist-generator](https://www.playlist-generator.com/), [Chat Jams](https://www.chatjams.ai/), [MagicPlaylist](https://magicplaylist.co/), [Vibesition](https://vibesition.jordantwells.com/), [Groovifi](https://groovifi.com/), [spotgen](https://epsil.github.io/spotgen), [Highlights2SPotify](https://highlights2spotify.com/), [RadioNewify](https://radionewify.com/), [Predominantly](https://predominant.ly/)
|
||||||
|
@ -1031,7 +1013,7 @@
|
||||||
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
|
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
|
||||||
* [HealthIcons](https://healthicons.org/) - Medical Icons
|
* [HealthIcons](https://healthicons.org/) - Medical Icons
|
||||||
|
|
||||||
[Icofont](https://icofont.com/icons), [Google Icons](https://fonts.google.com/icons), [svgl](https://svgl.app/), [iconer](https://iconer.app/), [SimpleIcons](https://simpleicons.org/), [xIcons](https://xicons.org), [Polaris](https://polaris.shopify.com/icons), [Phosphor Icons](https://phosphoricons.com/), [iCongo](https://icongo.github.io/), [IconFinder](https://www.iconfinder.com/), [Lucide](https://lucide.dev/icons/), [Ant Design](https://ant.design/components/icon/), [IconPacks](https://www.iconpacks.net/), [svgmix](https://svgmix.com/), [Iconbuddy](https://iconbuddy.com/), [Noun Project](https://thenounproject.com/), [cappuccicons](https://cappuccicons.com/), [Orion](https://www.orioniconlibrary.com/), [Flaticon](https://www.flaticon.com/), [Devicon](https://devicon.dev/), [Glyphs](https://glyphs.fyi/), [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/), [Icones](https://icones.js.org/), [CaptainIconWeb](https://mariodelvalle.github.io/CaptainIconWeb/), [IconNinja](https://www.iconninja.com/), [Teenyicons](https://teenyicons.com/), [awsicons](https://awsicons.dev/), [iconoir](https://iconoir.com/), [heroicons](https://heroicons.dev/), [composeicons](https://composeicons.com/), [iconmonstr](https://iconmonstr.com/), [Nerd Fonts](https://www.nerdfonts.com/), [websvg](https://websvg.com/)
|
[Icofont](https://icofont.com/icons), [VisualPharm](https://visualpharm.com/), [Google Icons](https://fonts.google.com/icons), [svgl](https://svgl.app/), [iconer](https://iconer.app/), [SimpleIcons](https://simpleicons.org/), [xIcons](https://xicons.org), [Polaris](https://polaris.shopify.com/icons), [Phosphor Icons](https://phosphoricons.com/), [iCongo](https://icongo.github.io/), [IconFinder](https://www.iconfinder.com/), [Lucide](https://lucide.dev/icons/), [Ant Design](https://ant.design/components/icon/), [IconPacks](https://www.iconpacks.net/), [svgmix](https://svgmix.com/), [Iconbuddy](https://iconbuddy.com/), [Noun Project](https://thenounproject.com/), [Orion](https://www.orioniconlibrary.com/), [Flaticon](https://www.flaticon.com/), [Devicon](https://devicon.dev/), [Glyphs](https://glyphs.fyi/), [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/), [Icones](https://icones.js.org/), [CaptainIconWeb](https://mariodelvalle.github.io/CaptainIconWeb/), [IconNinja](https://www.iconninja.com/), [Teenyicons](https://teenyicons.com/), [awsicons](https://awsicons.dev/), [iconoir](https://iconoir.com/), [heroicons](https://heroicons.dev/), [composeicons](https://composeicons.com/), [iconmonstr](https://iconmonstr.com/), [Nerd Fonts](https://www.nerdfonts.com/), [websvg](https://websvg.com/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -1093,16 +1075,11 @@
|
||||||
|
|
||||||
## Torrent to Google Drive
|
## Torrent to Google Drive
|
||||||
|
|
||||||
* **Note** - Use throwaway accounts with these.
|
* **Note** - Use throwaway google accounts with these.
|
||||||
|
|
||||||
### Collab
|
* [QBit to Google Drive](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent.ipynb) / [How-To](https://rentry.co/TorrentColab) - Google Colab
|
||||||
|
* [Torrent_To_Google_Drive_Downloader](https://colab.research.google.com/github/FKLC/Torrent-To-Google-Drive-Downloader/blob/master/Torrent_To_Google_Drive_Downloader.ipynb) - Google Colab
|
||||||
[QBit to Google Drive](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent.ipynb) / [How-To](https://rentry.co/TorrentColab), [Torrent_To_Google_Drive_Downloader](https://colab.research.google.com/github/FKLC/Torrent-To-Google-Drive-Downloader/blob/master/Torrent_To_Google_Drive_Downloader.ipynb)
|
* [TorToolkit-Telegram](https://github.com/yash-dk/TorToolkit-Telegram) - Telegram Bot
|
||||||
|
|
||||||
### Telegram Bots
|
|
||||||
|
|
||||||
* https://t.me/+qkrAOiq7k7ozNzRk
|
|
||||||
* https://github.com/yash-dk/TorToolkit-Telegram
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -1150,6 +1127,7 @@
|
||||||
* [Cool Fonts Online](https://coolfont.org/)
|
* [Cool Fonts Online](https://coolfont.org/)
|
||||||
* [FontMaker.io](https://fontmaker.io/)
|
* [FontMaker.io](https://fontmaker.io/)
|
||||||
* [Aesthetic Font Generator](https://www.tesms.net/)
|
* [Aesthetic Font Generator](https://www.tesms.net/)
|
||||||
|
* [BoldTextGenerator](https://boldtextgenerator.org/)
|
||||||
* [Font Generator Online](https://www.fontgeneratoronline.com/)
|
* [Font Generator Online](https://www.fontgeneratoronline.com/)
|
||||||
* [FontGenerator.cc](https://fontgenerator.cc/)
|
* [FontGenerator.cc](https://fontgenerator.cc/)
|
||||||
* [FontGenerator.cool](https://fontgenerator.cool/)
|
* [FontGenerator.cool](https://fontgenerator.cool/)
|
||||||
|
|
|
@ -163,7 +163,7 @@
|
||||||
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** or [Simone's Computer](https://simone.computer/#/webdesktops) - OS Emulators / VMs
|
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** or [Simone's Computer](https://simone.computer/#/webdesktops) - OS Emulators / VMs
|
||||||
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||||
* ↪️ **[Hackintosh Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_hackintosh)**
|
* ↪️ **[Hackintosh Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_hackintosh)**
|
||||||
* ⭐ **[VMware Workstation](https://rentry.co/FMHYBase64#vmware), [2](https://softwareupdate.vmware.com/cds/vmw-desktop/ws/), [3](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#vmware-workstation-note) or [VirtualBox](https://www.virtualbox.org/)** / [Portable](https://www.vbox.me/) - Virtual Machines
|
* ⭐ **[VMware Workstation](https://rentry.co/FMHYBase64#vmware), [2](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#vmware-workstation-note) or [VirtualBox](https://www.virtualbox.org/)** / [Portable](https://www.vbox.me/) - Virtual Machines
|
||||||
* ⭐ **[Virt-Manager](https://virt-manager.org/)** / [GitHub](https://github.com/virt-manager/virt-manager), [MultiPass](https://canonical.com/multipass) / [GitHub](https://github.com/canonical/multipass) or [Vagrantup](https://www.vagrantup.com/) / [GitHub](https://github.com/hashicorp/vagrant) - Virtual Machine Managers
|
* ⭐ **[Virt-Manager](https://virt-manager.org/)** / [GitHub](https://github.com/virt-manager/virt-manager), [MultiPass](https://canonical.com/multipass) / [GitHub](https://github.com/canonical/multipass) or [Vagrantup](https://www.vagrantup.com/) / [GitHub](https://github.com/hashicorp/vagrant) - Virtual Machine Managers
|
||||||
* [Looking Glass](https://looking-glass.io/) - App for Using Kernel-Based Virtual Machine Configured for VGA PCI Pass-Through / [GitHub](https://github.com/gnif/LookingGlass)
|
* [Looking Glass](https://looking-glass.io/) - App for Using Kernel-Based Virtual Machine Configured for VGA PCI Pass-Through / [GitHub](https://github.com/gnif/LookingGlass)
|
||||||
* [Qemu](https://gitlab.com/qemu-project/qemu), [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/) or [Denodo Test](https://community.denodo.com/test-drives/) - Virtual Machines
|
* [Qemu](https://gitlab.com/qemu-project/qemu), [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/) or [Denodo Test](https://community.denodo.com/test-drives/) - Virtual Machines
|
||||||
|
@ -186,7 +186,7 @@
|
||||||
* ↪️ **[PC Building / Shopping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)**
|
* ↪️ **[PC Building / Shopping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)**
|
||||||
* ⭐ **[PSU Calculator](https://www.newegg.com/tools/power-supply-calculator/)** - Find Compatible Power Supplies
|
* ⭐ **[PSU Calculator](https://www.newegg.com/tools/power-supply-calculator/)** - Find Compatible Power Supplies
|
||||||
* [DeviceTests](https://devicetests.com/) - Multiple Device Tests
|
* [DeviceTests](https://devicetests.com/) - Multiple Device Tests
|
||||||
* [NotCPUCores](https://github.com/rcmaehl/NotCPUCores), [ParkControl](https://bitsum.com/parkcontrol/), [QuickCPU](https://coderbag.com/product/quickcpu) or [Process Lasso](https://bitsum.com/) - CPU Optimizer
|
* [NotCPUCores](https://github.com/rcmaehl/NotCPUCores), [BES](https://mion.yosei.fi/BES/), [ParkControl](https://bitsum.com/parkcontrol/), [QuickCPU](https://coderbag.com/product/quickcpu) or [Process Lasso](https://bitsum.com/) - CPU Optimizer
|
||||||
* [Ozone3D](https://www.ozone3d.net/index_softwares.php), [UNIGINE Benchmarks](https://benchmark.unigine.com/) or [OCCT](https://www.ocbase.com/occt/personal) - System Benchmarking
|
* [Ozone3D](https://www.ozone3d.net/index_softwares.php), [UNIGINE Benchmarks](https://benchmark.unigine.com/) or [OCCT](https://www.ocbase.com/occt/personal) - System Benchmarking
|
||||||
* [Testmem5](https://www.overclock.net/threads/memory-testing-with-testmem5-tm5-with-custom-configs.1751608/) - Memory Benchmarking
|
* [Testmem5](https://www.overclock.net/threads/memory-testing-with-testmem5-tm5-with-custom-configs.1751608/) - Memory Benchmarking
|
||||||
* [MemTest](https://www.memtest.org/) - Memory Diagnostic Tool
|
* [MemTest](https://www.memtest.org/) - Memory Diagnostic Tool
|
||||||
|
@ -330,7 +330,7 @@
|
||||||
## ▷ USB / Bootloaders
|
## ▷ USB / Bootloaders
|
||||||
|
|
||||||
* ⭐ **[Rufus](https://rufus.ie/)** - Create Bootable USB Drives
|
* ⭐ **[Rufus](https://rufus.ie/)** - Create Bootable USB Drives
|
||||||
* [YUMI](https://pendrivelinux.com/yumi-multiboot-usb-creator/) - Create Bootable USB Drives
|
* ⭐ **[YUMI](https://pendrivelinux.com/yumi-multiboot-usb-creator/)** - Create Bootable USB Drives
|
||||||
* [MediaCreationTool](https://github.com/AveYo/MediaCreationTool.bat) - Windows Deployment Automation
|
* [MediaCreationTool](https://github.com/AveYo/MediaCreationTool.bat) - Windows Deployment Automation
|
||||||
* [USBTreeView](https://www.uwe-sieber.de/usbtreeview_e.html) - USB Device Tree Viewer
|
* [USBTreeView](https://www.uwe-sieber.de/usbtreeview_e.html) - USB Device Tree Viewer
|
||||||
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) or [EasyBCD](https://neosmart.net/EasyBCD/) - Bootloaders / [Config](https://mackie100projects.altervista.org/)
|
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) or [EasyBCD](https://neosmart.net/EasyBCD/) - Bootloaders / [Config](https://mackie100projects.altervista.org/)
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
|
|
||||||
# ► Text Tools
|
# ► Text Tools
|
||||||
|
|
||||||
* 🌐 **[ASR Leaderboard](https://huggingface.co/spaces/hf-audio/open_asr_leaderboard)** - Speech to Text Leaderboard
|
|
||||||
* ↪️ **[Image to Text](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_image_to_text_.2F_ocr)**
|
* ↪️ **[Image to Text](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_image_to_text_.2F_ocr)**
|
||||||
* ↪️ **[Text to Speech](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_text_to_speech)**
|
* ↪️ **[Text to Speech](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_text_to_speech)**
|
||||||
* ↪️ **[Study / Research](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_study_.2F_research)**
|
* ↪️ **[Study / Research](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_study_.2F_research)**
|
||||||
|
@ -20,7 +19,7 @@
|
||||||
* [Textify](https://ramensoftware.com/textify) - Copy Text from Any Dialog
|
* [Textify](https://ramensoftware.com/textify) - Copy Text from Any Dialog
|
||||||
* [BeefText](https://beeftext.org/) - Text Substitution Tool
|
* [BeefText](https://beeftext.org/) - Text Substitution Tool
|
||||||
* [Scanner](https://simon-knuth.github.io/scanner/index) or [NAPS2](https://www.naps2.com/) - Scanner Apps / [GitHub](https://github.com/simon-knuth/scanner)
|
* [Scanner](https://simon-knuth.github.io/scanner/index) or [NAPS2](https://www.naps2.com/) - Scanner Apps / [GitHub](https://github.com/simon-knuth/scanner)
|
||||||
* [Text to Handwriting](https://saurabhdaware.github.io/text-to-handwriting/), [texttohandwriting](https://texttohandwriting.com/) or [HandWrittner](https://handwrittner.com/?lang=en) - Text to Handwriting Converters
|
* [Calligrapher.ai](https://www.calligrapher.ai/), [Text to Handwriting](https://saurabhdaware.github.io/text-to-handwriting/), [texttohandwriting](https://texttohandwriting.com/) or [HandWrittner](https://handwrittner.com/?lang=en) - Text to Handwriting Converters
|
||||||
* [StegCloak](https://stegcloak.surge.sh/) - Hide Messages in Text
|
* [StegCloak](https://stegcloak.surge.sh/) - Hide Messages in Text
|
||||||
* [telescopictext](https://www.telescopictext.org/) - Write Text Within Text
|
* [telescopictext](https://www.telescopictext.org/) - Write Text Within Text
|
||||||
* [quipqiup](https://www.quipqiup.com/) or [dCode](https://www.dcode.fr/en) - Cryptogram Solvers
|
* [quipqiup](https://www.quipqiup.com/) or [dCode](https://www.dcode.fr/en) - Cryptogram Solvers
|
||||||
|
@ -36,7 +35,7 @@
|
||||||
* ⭐ **[GitHub Gists](https://gist.github.com/)** - Multi-Syntax / Account Needed
|
* ⭐ **[GitHub Gists](https://gist.github.com/)** - Multi-Syntax / Account Needed
|
||||||
* ⭐ **[Stellular](https://stellular.net/)**, [2](https://bundlrs.cc/), [3](https://www.sentrytwo.com/) - Markdown Support
|
* ⭐ **[Stellular](https://stellular.net/)**, [2](https://bundlrs.cc/), [3](https://www.sentrytwo.com/) - Markdown Support
|
||||||
* ⭐ **[pastes.dev](https://pastes.dev/)** - Multi-Syntax / Markdown Support / [GitHub](https://github.com/lucko/paste)
|
* ⭐ **[pastes.dev](https://pastes.dev/)** - Multi-Syntax / Markdown Support / [GitHub](https://github.com/lucko/paste)
|
||||||
* ⭐ **[PrivateBin](https://privatebin.net/)** - Markdown Support / Syntax Highlighting / [GitHub](https://github.com/PrivateBin/PrivateBin)
|
* ⭐ **[PrivateBin](https://privatebin.net/)**, [2](https://notebin.de/) - Markdown Support / Syntax Highlighting / [GitHub](https://github.com/PrivateBin/PrivateBin)
|
||||||
* ⭐ **[Katbin](https://katb.in/)** - Plain Text / [GitHub](https://github.com/sphericalkat/katbin)
|
* ⭐ **[Katbin](https://katb.in/)** - Plain Text / [GitHub](https://github.com/sphericalkat/katbin)
|
||||||
* [snowbin](https://pastes.fmhy.net/), [2](https://paste.fmhy.net/) - Markdown Support / [GitHub](https://github.com/fmhy/snowbin)
|
* [snowbin](https://pastes.fmhy.net/), [2](https://paste.fmhy.net/) - Markdown Support / [GitHub](https://github.com/fmhy/snowbin)
|
||||||
* [Text.is](https://text.is/) - Markdown Support / Rentry Clone
|
* [Text.is](https://text.is/) - Markdown Support / Rentry Clone
|
||||||
|
@ -103,11 +102,13 @@
|
||||||
|
|
||||||
## ▷ Audio Transcription
|
## ▷ Audio Transcription
|
||||||
|
|
||||||
|
* 🌐 **[ASR Leaderboard](https://huggingface.co/spaces/hf-audio/open_asr_leaderboard)** - Speech to Text Leaderboard
|
||||||
* [Whisper](https://github.com/openai/whisper) - Audio Transcription / [WebUI](https://huggingface.co/spaces/hf-audio/whisper-large-v3), [2](https://whisper.ggerganov.com/)
|
* [Whisper](https://github.com/openai/whisper) - Audio Transcription / [WebUI](https://huggingface.co/spaces/hf-audio/whisper-large-v3), [2](https://whisper.ggerganov.com/)
|
||||||
* [mp4grep](https://github.com/o-oconnell/mp4grep) - MP4 File Transcription Tool
|
* [mp4grep](https://github.com/o-oconnell/mp4grep) - MP4 File Transcription Tool
|
||||||
* [SpeechTexter](https://www.speechtexter.com/), [VoiceToText](https://voicetotext.org/), [Dictation](https://dictation.io/speech), [oTranscribe](https://otranscribe.com/) or [TalkTyper](https://talktyper.com/) - Browser-Based Speech-To-Text Tools
|
* [SpeechTexter](https://www.speechtexter.com/), [VoiceToText](https://voicetotext.org/), [Dictation](https://dictation.io/speech), [oTranscribe](https://otranscribe.com/) or [TalkTyper](https://talktyper.com/) - Browser-Based Speech-To-Text Tools
|
||||||
* [Revoldiv](https://revoldiv.com/) or [Turboscribe](https://turboscribe.ai/) - AI-Based Transcriptions
|
* [Revoldiv](https://revoldiv.com/) or [Turboscribe](https://turboscribe.ai/) - AI-Based Transcriptions
|
||||||
* [Vibe](https://thewh1teagle.github.io/vibe/) - Audio Transcription Software
|
* [Vibe](https://thewh1teagle.github.io/vibe/) - Audio Transcription Software
|
||||||
|
* [WhisperX](https://github.com/m-bain/whisperX) - Audio Transcription Tool
|
||||||
* [SpeechNotes](https://speechnotes.co/) - Speech Recognition Notes App
|
* [SpeechNotes](https://speechnotes.co/) - Speech Recognition Notes App
|
||||||
* [LilySpeech](https://lilyspeech.com/) - Fast Voice-To-Text Software
|
* [LilySpeech](https://lilyspeech.com/) - Fast Voice-To-Text Software
|
||||||
* [VoiceNotebook](https://voicenotebook.com/) - Speech Transcription Notebook
|
* [VoiceNotebook](https://voicenotebook.com/) - Speech Transcription Notebook
|
||||||
|
@ -119,9 +120,10 @@
|
||||||
* 🌐 **[DecodeUnicode](https://decodeunicode.org/)** - Unicode Decoding Database
|
* 🌐 **[DecodeUnicode](https://decodeunicode.org/)** - Unicode Decoding Database
|
||||||
* ⭐ **[CyberChef](https://gchq.github.io/CyberChef/)** - Encode / Decode Text / [GitHub](https://github.com/gchq/CyberChef)
|
* ⭐ **[CyberChef](https://gchq.github.io/CyberChef/)** - Encode / Decode Text / [GitHub](https://github.com/gchq/CyberChef)
|
||||||
* ⭐ **[Base64 Decode](https://www.base64decode.org/)** or [Base64 Editor](https://nimadez.github.io/base64/) - Encode / Decode Base64
|
* ⭐ **[Base64 Decode](https://www.base64decode.org/)** or [Base64 Editor](https://nimadez.github.io/base64/) - Encode / Decode Base64
|
||||||
|
* ⭐ **[Auto Decoder](https://greasyfork.org/en/scripts/485772)** - Auto-Decode B64 Links on Pastebins
|
||||||
* [Ciphey](https://github.com/Ciphey/Ciphey) - Automated Decryption Tool
|
* [Ciphey](https://github.com/Ciphey/Ciphey) - Automated Decryption Tool
|
||||||
* [Universal Encoding Tool](https://unenc.com/) - Encode / Convert Text
|
* [Universal Encoding Tool](https://unenc.com/) - Encode / Convert Text
|
||||||
* [cryptii](https://cryptii.com/), [DenCode](https://dencode.com/) - Text / URL Encoding
|
* [cryptii](https://cryptii.com/) or [DenCode](https://dencode.com/) - Text / URL Encoding
|
||||||
* [Coder](https://www.den4b.com/tools/coder) - Text / File / URL Encoding
|
* [Coder](https://www.den4b.com/tools/coder) - Text / File / URL Encoding
|
||||||
* [Online Tools](https://emn178.github.io/online-tools/index.html) - Text / URL Encoding and Decoding
|
* [Online Tools](https://emn178.github.io/online-tools/index.html) - Text / URL Encoding and Decoding
|
||||||
* [URL Decode](https://url-decode.com/) / [Encode](https://url-decode.com/tool/url-encode) - URL Encoding / Decoding
|
* [URL Decode](https://url-decode.com/) / [Encode](https://url-decode.com/tool/url-encode) - URL Encoding / Decoding
|
||||||
|
@ -300,7 +302,6 @@
|
||||||
## ▷ Mind Mapping
|
## ▷ Mind Mapping
|
||||||
|
|
||||||
* ⭐ **[Obsidian Canvas](https://obsidian.md/canvas)**
|
* ⭐ **[Obsidian Canvas](https://obsidian.md/canvas)**
|
||||||
* [MindMup](https://www.mindmup.com/)
|
|
||||||
* [FreeMind](https://freemind.sourceforge.net/)
|
* [FreeMind](https://freemind.sourceforge.net/)
|
||||||
* [Kinopio](https://kinopio.club/)
|
* [Kinopio](https://kinopio.club/)
|
||||||
* [Freeplane](https://github.com/freeplane/freeplane)
|
* [Freeplane](https://github.com/freeplane/freeplane)
|
||||||
|
@ -309,6 +310,7 @@
|
||||||
* [MindMapp](https://mindmapp.cedoor.dev/app)
|
* [MindMapp](https://mindmapp.cedoor.dev/app)
|
||||||
* [are.na](https://www.are.na/)
|
* [are.na](https://www.are.na/)
|
||||||
* [Domino](https://kool.tools/domino)
|
* [Domino](https://kool.tools/domino)
|
||||||
|
* [MindMapWizard](https://mindmapwizard.com/)
|
||||||
* [GitMind](https://gitmind.com/)
|
* [GitMind](https://gitmind.com/)
|
||||||
* [xTiles](https://xtiles.app/en)
|
* [xTiles](https://xtiles.app/en)
|
||||||
* [Capacities](https://capacities.io/)
|
* [Capacities](https://capacities.io/)
|
||||||
|
@ -484,8 +486,8 @@
|
||||||
* ⭐ **[Fonts CSE](https://cse.google.com/cse?cx=82154ebab193e493d)** - Multi-Site Font Search
|
* ⭐ **[Fonts CSE](https://cse.google.com/cse?cx=82154ebab193e493d)** - Multi-Site Font Search
|
||||||
* ⭐ **[Font Piracy 101](https://rentry.co/FontPiracy)** - Font Download Guide
|
* ⭐ **[Font Piracy 101](https://rentry.co/FontPiracy)** - Font Download Guide
|
||||||
* ⭐ **[Font Drives](https://rentry.co/FMHYBase64#font-collections)**
|
* ⭐ **[Font Drives](https://rentry.co/FMHYBase64#font-collections)**
|
||||||
|
* ⭐ **[BeFonts](https://befonts.com/)**
|
||||||
* [Windows Fonts](https://wfonts.com/)
|
* [Windows Fonts](https://wfonts.com/)
|
||||||
* [BeFonts](https://befonts.com/)
|
|
||||||
* [Free Fonts Family](https://freefontsfamily.org/)
|
* [Free Fonts Family](https://freefontsfamily.org/)
|
||||||
* [Cufon Fonts](https://www.cufonfonts.com/)
|
* [Cufon Fonts](https://www.cufonfonts.com/)
|
||||||
* [FontsFree](https://fontsfree.net)
|
* [FontsFree](https://fontsfree.net)
|
||||||
|
|
|
@ -165,7 +165,7 @@
|
||||||
* 🌐 **[ngosang](https://ngosang.github.io/trackerslist/)** / [2](https://ngosang.github.io/trackerslist/trackers_all.txt) / [3](https://github.com/ngosang/trackerslist), [trackerslist](https://trackerslist.com/) / [GitHub](https://github.com/XIU2/TrackersListCollection) or [NewTrackOn](https://newtrackon.com/list) - Tracker Lists
|
* 🌐 **[ngosang](https://ngosang.github.io/trackerslist/)** / [2](https://ngosang.github.io/trackerslist/trackers_all.txt) / [3](https://github.com/ngosang/trackerslist), [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)
|
* 🌐 **[Auto Torrent Tools List](https://redd.it/hbwnb2)** / [2](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps)
|
||||||
* ⭐ **[Milkie](https://milkie.cc)** / [Discord](https://discord.com/invite/E4khNy5dz3) or [Scnlog](https://scnlog.me) - Scene Release Download
|
* ⭐ **[Milkie](https://milkie.cc)** / [Discord](https://discord.com/invite/E4khNy5dz3) or [Scnlog](https://scnlog.me) - Scene Release Download
|
||||||
* ⭐ **[PreDB.net](https://predb.net/)**, **[PreDataBA](https://predataba.se)**, [Xrel](https://www.xrel.to), [PreDB.me](https://predb.me), [NGP](https://ngp.re/), [Archiv.pw](https://archiv.pw/), [PreDB.org](https://predb.org/), [srrDB](https://www.srrdb.com) or [M2V](https://m2v.ru) - Scene Release Info
|
* ⭐ **[PreDB.net](https://predb.net/)** / [Site List](https://en.wikipedia.org/wiki/Nuke_(warez)#List_of_public_predb_websites), **[PreDataBA](https://predataba.se)**, [Xrel](https://www.xrel.to), [NGP](https://ngp.re/), [Archiv.pw](https://archiv.pw/), [srrDB](https://www.srrdb.com) or [M2V](https://m2v.ru) - Scene Release Info
|
||||||
* ⭐ **[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
|
* ⭐ **[T2M](https://nutbread.github.io/t2m/)** / [2](https://github.com/nutbread/t2m), [btsow](https://btsow.motorcycles/) or [Torrent Kitty](https://www.torrentkitty.tv/) / [2](https://www.torrentkitty.net/) / [3](https://www.torrentkitty.lol/) - Torrent to Magnet Converters
|
||||||
* ⭐ **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter
|
* ⭐ **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter
|
||||||
* ⭐ **[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country
|
* ⭐ **[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country
|
||||||
|
@ -173,7 +173,6 @@
|
||||||
* [btcache](https://btcache.me/), [iTorrents](https://itorrents.org) or [Torrage](https://torrage.info/) - Torrent Storage Cache
|
* [btcache](https://btcache.me/), [iTorrents](https://itorrents.org) or [Torrage](https://torrage.info/) - Torrent Storage Cache
|
||||||
* [InfoTorrent](https://infotorrent.tnl.one/) or [Webtorrent Checker](https://checker.openwebtorrent.com/) - Check Torrent File Health
|
* [InfoTorrent](https://infotorrent.tnl.one/) or [Webtorrent Checker](https://checker.openwebtorrent.com/) - Check Torrent File Health
|
||||||
* [TorrentTags](https://torrenttags.com/) - Check Torrents for Copyright Claims
|
* [TorrentTags](https://torrenttags.com/) - Check Torrents for Copyright Claims
|
||||||
* [MagLit](https://maglit.me/) - Magnet Link Shorteners / [GitHub](https://github.com/NayamAmarshe/thiss.link)
|
|
||||||
* [Magnet Link Generator](https://magnetlinkgenerator.com/) - Magnet Link Generator
|
* [Magnet Link Generator](https://magnetlinkgenerator.com/) - Magnet Link Generator
|
||||||
* [magnet2list](https://hutstep.github.io/magnet2list/) - Convert Magnets to Tracker Lists
|
* [magnet2list](https://hutstep.github.io/magnet2list/) - Convert Magnets to Tracker Lists
|
||||||
* [OpenWebTorrent](https://openwebtorrent.com/) - Free Webtorrent Tracker
|
* [OpenWebTorrent](https://openwebtorrent.com/) - Free Webtorrent Tracker
|
||||||
|
|
|
@ -9,19 +9,23 @@
|
||||||
* 🌐 **[Digital Video Intro](https://github.com/leandromoreira/digital_video_introduction)** - Digital Video Guides / Resources
|
* 🌐 **[Digital Video Intro](https://github.com/leandromoreira/digital_video_introduction)** - Digital Video Guides / Resources
|
||||||
* ↪️ **[AI Video Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_video_generation)**
|
* ↪️ **[AI Video Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_video_generation)**
|
||||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)** - Use Any Camera as Webcam
|
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)** - Use Any Camera as Webcam
|
||||||
* ⭐ **[Waifu2x GUI](https://github.com/AaronFeng753/Waifu2x-Extension-GUI)**, [Video2x](https://github.com/k4yt3x/video2x), [Enhancr](https://github.com/mafiosnik777/enhancr), [Lossless Scaling](https://rentry.co/FMHYBase64#lossless-scaling) or [Dandere2x](https://github.com/akai-katto/dandere2x) - Video Upscaling
|
|
||||||
* [Deep-Live-Cam](https://github.com/hacksider/Deep-Live-Cam), [Rope](https://github.com/Hillobar/Rope), [SimSwap](https://github.com/neuralchen/SimSwap) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
|
* [Deep-Live-Cam](https://github.com/hacksider/Deep-Live-Cam), [Rope](https://github.com/Hillobar/Rope), [SimSwap](https://github.com/neuralchen/SimSwap) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
|
||||||
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media / Video
|
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media / Video
|
||||||
* [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) - Video Quality Comparison & Analysis Tool
|
* [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) - Video Quality Comparison & Analysis Tool
|
||||||
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
|
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
|
||||||
|
* [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder
|
||||||
|
* [VidClue](https://vidclue.com/) - Short Form Video Inspiration
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ Disc Utilities
|
||||||
|
|
||||||
* [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
|
* [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
|
||||||
* [MakeMKV](https://www.makemkv.com/) - Create MKV From Blu-ray / DVD / [Beta Keys](https://rentry.co/FMHYBase64#makemkv-beta)
|
* [MakeMKV](https://www.makemkv.com/) - Create MKV From Blu-ray / DVD / [Beta Keys](https://rentry.co/FMHYBase64#makemkv-beta)
|
||||||
* [VidCoder](https://vidcoder.net/) or [DVDDecrypter](http://dvddecrypter.org.uk/) - DVD / Blu-ray Ripping
|
* [VidCoder](https://vidcoder.net/) or [DVDDecrypter](http://dvddecrypter.org.uk/) - DVD / Blu-ray Ripping
|
||||||
* [DGDemux](https://www.rationalqm.us/dgdemux/dgdemux.html) - Blu-Ray/UHD Disk Demuxer
|
* [DGDemux](https://www.rationalqm.us/dgdemux/dgdemux.html) - Blu-Ray/UHD Disk Demuxer
|
||||||
* [PgcDemux](https://www.videohelp.com/software/PgcDemux) - DVD Disk Demuxer
|
* [PgcDemux](https://www.videohelp.com/software/PgcDemux) - DVD Disk Demuxer
|
||||||
* [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
|
|
||||||
* [VidClue](https://vidclue.com/) - Short Form Video Inspiration
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -34,7 +38,7 @@
|
||||||
* ⭐ **[DoodStream](https://doodstream.com/)** - 5GB / 60 Days / Account Required
|
* ⭐ **[DoodStream](https://doodstream.com/)** - 5GB / 60 Days / Account Required
|
||||||
* ⭐ **[Litterbox](https://litterbox.catbox.moe/)** - 1GB / 3 Days
|
* ⭐ **[Litterbox](https://litterbox.catbox.moe/)** - 1GB / 3 Days
|
||||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / Allows Hotlinking
|
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / Allows Hotlinking
|
||||||
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 Days
|
* ⭐ **[Gofile](https://gofile.io/)** - 100GB Monthly / 10 Days
|
||||||
* ⭐ **[Send.now](https://send.now/)** - Unlimited / 30 Days
|
* ⭐ **[Send.now](https://send.now/)** - Unlimited / 30 Days
|
||||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX)
|
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX)
|
||||||
* [Files.vc](https://files.vc/) - Unlimited / 10GB / Forever
|
* [Files.vc](https://files.vc/) - Unlimited / 10GB / Forever
|
||||||
|
@ -169,6 +173,14 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ [Linux Video Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_video)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ [Mac Video Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_video)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# ► Video Players
|
# ► Video Players
|
||||||
|
|
||||||
* 🌐 **[Awesome Video](https://github.com/krzemienski/awesome-video)** - Video Streaming Resources
|
* 🌐 **[Awesome Video](https://github.com/krzemienski/awesome-video)** - Video Streaming Resources
|
||||||
|
@ -176,10 +188,10 @@
|
||||||
* ⭐ **[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 / [YT-DL Support](https://www.free-codecs.com/guides/how_to_stream_videos_with_mpc-hc.htm)
|
* ⭐ **[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 / [YT-DL Support](https://www.free-codecs.com/guides/how_to_stream_videos_with_mpc-hc.htm)
|
||||||
* ⭐ **[MPV](https://mpv.io/)** - Video Player / [Frontends](https://github.com/mpv-player/mpv/wiki/Applications-using-mpv)
|
* ⭐ **[MPV](https://mpv.io/)** - Video Player / [Frontends](https://github.com/mpv-player/mpv/wiki/Applications-using-mpv)
|
||||||
* ⭐ **[VLC](https://www.videolan.org/)** - Video Player
|
* ⭐ **[VLC](https://www.videolan.org/)** - Video Player
|
||||||
* ⭐ **[Screenbox](https://github.com/huynhsontung/Screenbox)** - Video Player
|
* [Screenbox](https://github.com/huynhsontung/Screenbox) - Video Player
|
||||||
* [AVPlayer](http://www.awesomevideoplayer.com/), [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) or [GridPlayer](https://github.com/vzhd1701/gridplayer) - Multi-Video Players
|
* [AVPlayer](http://www.awesomevideoplayer.com/), [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) or [GridPlayer](https://github.com/vzhd1701/gridplayer) - Multi-Video Players
|
||||||
* [SPlayer](https://www.splayer.org/) - Video Player with Smart Translation
|
* [SPlayer](https://www.splayer.org/) - Video Player with Smart Translation
|
||||||
* [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)
|
* [PotPlayer](https://potplayer.daum.net/) - Video Player / [Twitch Addon](https://github.com/TwitchPotPlayer/TwitchPotPlayer) / [YouTube Addon](https://chromewebstore.google.com/detail/potplayer-youtube-shortcu/cfdpeaefecdlkdlgdpjjllmhlnckcodp)
|
||||||
* [ImPlay](https://github.com/tsl0922/ImPlay) - Video Player
|
* [ImPlay](https://github.com/tsl0922/ImPlay) - Video Player
|
||||||
* [SMPlayer](https://www.smplayer.info/) / [2](https://sourceforge.net/projects/smplayer/) - Video Player / [YouTube](https://www.smtube.org/)
|
* [SMPlayer](https://www.smplayer.info/) / [2](https://sourceforge.net/projects/smplayer/) - Video Player / [YouTube](https://www.smtube.org/)
|
||||||
* [uView](https://www.idruf.com/) - Video Player
|
* [uView](https://www.idruf.com/) - Video Player
|
||||||
|
@ -280,7 +292,6 @@
|
||||||
* [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Live Channel Media Servers
|
* [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Live Channel Media Servers
|
||||||
* [YTDL-Sub](https://ytdl-sub.readthedocs.io/en/) - Add YouTube Channels to Media Servers / [GitHub](https://github.com/jmbannon/ytdl-sub)
|
* [YTDL-Sub](https://ytdl-sub.readthedocs.io/en/) - Add YouTube Channels to Media Servers / [GitHub](https://github.com/jmbannon/ytdl-sub)
|
||||||
* [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy
|
* [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy
|
||||||
* [Autoscan](https://github.com/Cloudbox/autoscan) - Real-Time Plex & Emby File Changes
|
|
||||||
* [Ombi](https://github.com/Ombi-app/Ombi) - Plex / Emby User Request Management
|
* [Ombi](https://github.com/Ombi-app/Ombi) - Plex / Emby User Request Management
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -340,11 +351,9 @@
|
||||||
* ⭐ **[yt-dlp](https://github.com/yt-dlp/yt-dlp)** or [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - Multi-Site / [Commands](https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection) / [Zoom Fix](https://github.com/yt-dlp/yt-dlp/issues/2299) / [Discord](https://discord.gg/H5MNcFW63r)
|
* ⭐ **[yt-dlp](https://github.com/yt-dlp/yt-dlp)** or [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - Multi-Site / [Commands](https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection) / [Zoom Fix](https://github.com/yt-dlp/yt-dlp/issues/2299) / [Discord](https://discord.gg/H5MNcFW63r)
|
||||||
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online / [Instances](https://instances.cobalt.best/) / [Playlist Support](https://playlist.kwiatekmiki.pl/), [2](https://playlist.kwiatekmiki.com/)
|
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online / [Instances](https://instances.cobalt.best/) / [Playlist Support](https://playlist.kwiatekmiki.pl/), [2](https://playlist.kwiatekmiki.com/)
|
||||||
* ⭐ **[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.online/), [3](https://9xbuddy.in/) - Multi-Site / Online
|
* ⭐ **[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.online/), [3](https://9xbuddy.in/) - Multi-Site / Online
|
||||||
* ⭐ **[Lux](https://github.com/iawia002/lux)** - Multi-Site / CLI
|
|
||||||
* ⭐ **[Download Helper](https://www.downloadhelper.net/)**, [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
|
* ⭐ **[Download Helper](https://www.downloadhelper.net/)**, [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
|
||||||
* [CD(R)M-Project](https://cdm-project.com/explore/repos) - DRM Tools / [Discord](https://discord.gg/zvGBza34JP)
|
* [CD(R)M-Project](https://cdm-project.com/explore/repos) - DRM Tools / [Discord](https://discord.gg/zvGBza34JP)
|
||||||
* [VideoFK](https://www.videofk.com/) - Multi-Site / Online
|
* [VideoFK](https://www.videofk.com/) - Multi-Site / Online
|
||||||
* [YouTubeDownload](https://youtubedownload.uk/) - Multi-Site / Online
|
|
||||||
* [you-get](https://you-get.org/) - Multi-Site / CLI
|
* [you-get](https://you-get.org/) - Multi-Site / CLI
|
||||||
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site / Software
|
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site / Software
|
||||||
* [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site / Software / [Discord](https://discord.gg/uFNUXvFFmg)
|
* [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site / Software / [Discord](https://discord.gg/uFNUXvFFmg)
|
||||||
|
@ -362,6 +371,7 @@
|
||||||
* ⭐ **[/r/VideoEditing](https://www.reddit.com/r/VideoEditing/)** - Video Editing Subreddit / [Wiki](https://www.reddit.com/r/VideoEditing/wiki/index/)
|
* ⭐ **[/r/VideoEditing](https://www.reddit.com/r/VideoEditing/)** - Video Editing Subreddit / [Wiki](https://www.reddit.com/r/VideoEditing/wiki/index/)
|
||||||
* ⭐ **[Eyecandy](https://eyecannndy.com/)** - Visual Technique Examples
|
* ⭐ **[Eyecandy](https://eyecannndy.com/)** - Visual Technique Examples
|
||||||
* [Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers) - Info on Codecs & Containers
|
* [Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers) - Info on Codecs & Containers
|
||||||
|
* ⭐ **[Waifu2x GUI](https://github.com/AaronFeng753/Waifu2x-Extension-GUI)**, [Video2x](https://github.com/k4yt3x/video2x), [Enhancr](https://github.com/mafiosnik777/enhancr), [Lossless Scaling](https://rentry.co/FMHYBase64#lossless-scaling) or [Dandere2x](https://github.com/akai-katto/dandere2x) - Video Upscaling
|
||||||
* [ALF FreeWare VideoCODECs](https://codec.kyiv.ua/), [Codec Guide](https://www.codecguide.com/) or [Free-Codecs](https://www.free-codecs.com/) - Video Codec Collections
|
* [ALF FreeWare VideoCODECs](https://codec.kyiv.ua/), [Codec Guide](https://www.codecguide.com/) or [Free-Codecs](https://www.free-codecs.com/) - Video Codec Collections
|
||||||
* [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums
|
* [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
|
* [Blaine's Movie Maker Blog](https://movies.blainesville.com/p/wmm-60-on-windows-7.html) - Windows Movie Maker Tutorials
|
||||||
|
@ -390,16 +400,8 @@
|
||||||
* [Visla](https://www.visla.us/) - Video Editor
|
* [Visla](https://www.visla.us/) - 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
|
* [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
|
||||||
* [Avidemux](http://fixounet.free.fr/avidemux/) - Cut / Filter / Encode
|
* [Avidemux](http://fixounet.free.fr/avidemux/) - Cut / Filter / Encode
|
||||||
* [Video Enhance AI](https://lrepacks.net/repaki-programm-dlya-grafiki/) - Video Enhancement Tool / Search "Topaz" on LR
|
|
||||||
* [Gyroflow](https://gyroflow.xyz/) - Video Stabilization / [GitHub](https://github.com/gyroflow/gyroflow)
|
|
||||||
* [Flowframes](https://nmkd.itch.io/flowframes) / [Beta](https://kemono.su/patreon/user/19695417) or [SVP](https://www.svp-team.com/) / [Guide](https://www.svp-team.com/wiki/Manual:SVPcode) - Video Interpolation / Increase FPS
|
|
||||||
* [VideoColorizerColab](https://colab.research.google.com/github/jantic/DeOldify/blob/master/VideoColorizerColab.ipynb) - Video Colorization Colab
|
|
||||||
* [OpenColorIO](https://opencolorio.org/) - Video Color Manager
|
|
||||||
* [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
|
* [suckless-cut](https://github.com/couleur-tweak-tips/suckless-cut) or [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos
|
||||||
* [Opus](https://www.opus.pro/) - Clip Creator
|
* [Opus](https://www.opus.pro/) - Clip Creator
|
||||||
* [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)
|
|
||||||
* [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting
|
|
||||||
* [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools
|
* [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools
|
||||||
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM
|
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM
|
||||||
|
|
||||||
|
@ -430,6 +432,19 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ Video Enhancement / Effects
|
||||||
|
|
||||||
|
* [Video Enhance AI](https://lrepacks.net/repaki-programm-dlya-grafiki/) - Video Enhancement Tool / Search "Topaz" on LR
|
||||||
|
* [Gyroflow](https://gyroflow.xyz/) - Video Stabilization / [GitHub](https://github.com/gyroflow/gyroflow)
|
||||||
|
* [Flowframes](https://nmkd.itch.io/flowframes) / [Beta](https://kemono.su/patreon/user/19695417) or [SVP](https://www.svp-team.com/) / [Guide](https://www.svp-team.com/wiki/Manual:SVPcode) - Video Interpolation / Increase FPS
|
||||||
|
* [VideoColorizerColab](https://colab.research.google.com/github/jantic/DeOldify/blob/master/VideoColorizerColab.ipynb) - Video Colorization Colab
|
||||||
|
* [OpenColorIO](https://opencolorio.org/) - Video Color Manager
|
||||||
|
* [FreshLUTs](https://freshluts.com/) - Free LUTs (Color Filters)
|
||||||
|
* [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)
|
||||||
|
* [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
## ▷ VFX Sites
|
## ▷ VFX Sites
|
||||||
|
|
||||||
* [FootageCrate](https://footagecrate.com/)
|
* [FootageCrate](https://footagecrate.com/)
|
||||||
|
@ -475,6 +490,7 @@
|
||||||
* [BestSnip](https://bestsnip.com/animation/), [Sketch Machine](https://sketchmachine.net/), [Plask](https://plask.ai/) or [Rive](https://rive.app/) - Online Animation Tools
|
* [BestSnip](https://bestsnip.com/animation/), [Sketch Machine](https://sketchmachine.net/), [Plask](https://plask.ai/) or [Rive](https://rive.app/) - Online Animation Tools
|
||||||
* [Glaxnimate](https://glaxnimate.mattbas.org/) or [Trangram](https://www.trangram.com/) - Vector Animation Tools
|
* [Glaxnimate](https://glaxnimate.mattbas.org/) or [Trangram](https://www.trangram.com/) - Vector Animation Tools
|
||||||
* [LibreSprite](https://libresprite.github.io/), [GraphicsGale](https://graphicsgale.com/us/), [Pixel Compresor](https://makham.itch.io/pixel-composer), [JPixel](https://emad.itch.io/jpixel), [Aseprite](https://github.com/aseprite/aseprite) / [Guide](https://youtu.be/Z4Enx-Nb43E) or [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Animation Tools
|
* [LibreSprite](https://libresprite.github.io/), [GraphicsGale](https://graphicsgale.com/us/), [Pixel Compresor](https://makham.itch.io/pixel-composer), [JPixel](https://emad.itch.io/jpixel), [Aseprite](https://github.com/aseprite/aseprite) / [Guide](https://youtu.be/Z4Enx-Nb43E) or [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Animation Tools
|
||||||
|
* [Spritesheet Generator](https://sprite-gen.xvx.sh/) - Spritesheet Generator / [Gitea](https://gitea.directonline.io/noxious/spritesheet-generator)
|
||||||
* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings
|
* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings
|
||||||
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks
|
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks
|
||||||
* [Viggle](https://viggle.ai/) / [Discord](https://discord.com/invite/viggle) or [Picrew](https://picrew.me/) - Animated Character Creators
|
* [Viggle](https://viggle.ai/) / [Discord](https://discord.com/invite/viggle) or [Picrew](https://picrew.me/) - Animated Character Creators
|
||||||
|
|
|
@ -6,93 +6,94 @@
|
||||||
|
|
||||||
# ► Streaming Sites
|
# ► Streaming Sites
|
||||||
|
|
||||||
* **Note** - Check our [site grading system](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to see scores for each site, as well as their respective pros & cons.
|
* **Note** - Check our [grading system](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to see scores for each site, as well as their respective pros & cons, [non-eng](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/non-eng) for languages other than English, and remember to use throwaway emails or [aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing) when signing up for streaming sites.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* 🌟 **[movie-web](https://erynith.github.io/movie-web-instances/)**, [2](https://github.com/erynith/movie-web-instances/blob/main/page.md) - Movies / TV / Anime / Auto-Next / [Setup / 4K](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web) / [GitHub](https://github.com/erynith/movie-web-instances)
|
* 🌟 **[movie-web](https://erynith.github.io/movie-web-instances/)**, [2](https://github.com/erynith/movie-web-instances/blob/main/page.md) - Movies / TV / Anime / Auto-Next / [Setup / 4K](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web) / [GitHub](https://github.com/erynith/movie-web-instances)
|
||||||
|
* 🌟 **[Hexa](https://hexa.watch/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
||||||
* 🌟 **[XPrime](https://xprime.tv/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/ZKcN9KNdn6)
|
* 🌟 **[XPrime](https://xprime.tv/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/ZKcN9KNdn6)
|
||||||
* 🌟 **[Vidbox](https://vidbox.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
|
||||||
* 🌟 **[Rive](https://rivestream.org/)**, [2](https://rivestream.xyz/), [3](https://cinemaos-v2.vercel.app/) - Movies / TV / Anime / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
* 🌟 **[Rive](https://rivestream.org/)**, [2](https://rivestream.xyz/), [3](https://cinemaos-v2.vercel.app/) - Movies / TV / Anime / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||||
* ⭐ **[Hexa](https://hexa.watch/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
|
||||||
* ⭐ **[uira.live](https://uira.live/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/5ACWhK4Dzf)
|
* ⭐ **[uira.live](https://uira.live/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/5ACWhK4Dzf)
|
||||||
* ⭐ **[FlickyStream](https://flickystream.com/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/FlickyStream)
|
* ⭐ **[FlickyStream](https://flickystream.com/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/FlickyStream)
|
||||||
|
* ⭐ **[Vidbox](https://vidbox.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||||
* ⭐ **[Cineby](https://www.cineby.app/)** or [Bitcine](https://www.bitcine.app/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
* ⭐ **[Cineby](https://www.cineby.app/)** or [Bitcine](https://www.bitcine.app/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||||
* ⭐ **[Freek](https://freek.to/)**, [2](https://freeky.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/q8Y9FmYFPR)
|
* ⭐ **[Freek](https://freek.to/)**, [2](https://freeky.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/q8Y9FmYFPR)
|
||||||
|
* ⭐ **[HydraHD](https://hydrahd.ac/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||||
* ⭐ **[Nunflix](https://nunflix.org/)**, [2](https://nunflix-firebase.web.app/), [3](https://nunflix-ey9.pages.dev/), [4](https://nunflix-firebase.firebaseapp.com/) - Movies / TV / Anime / Auto-Next / [Docs](https://nunflix-doc.pages.dev/) / [Discord](https://discord.gg/CXVyfhgn26)
|
* ⭐ **[Nunflix](https://nunflix.org/)**, [2](https://nunflix-firebase.web.app/), [3](https://nunflix-ey9.pages.dev/), [4](https://nunflix-firebase.firebaseapp.com/) - Movies / TV / Anime / Auto-Next / [Docs](https://nunflix-doc.pages.dev/) / [Discord](https://discord.gg/CXVyfhgn26)
|
||||||
* ⭐ **[1Shows](https://www.1shows.com/)** or [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / [Auto Next Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#rgshows-autoplay) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
* ⭐ **[1Shows](https://www.1shows.live/)** or [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / [Auto Next Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#rgshows-autoplay) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||||
|
* ⭐ **[Ronny Flix](https://ronnyflix.xyz/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/ronnyflix) / [Discord](https://discord.gg/ygsNU4Ac)
|
||||||
* ⭐ **[PopcornMovies](https://popcornmovies.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
* ⭐ **[PopcornMovies](https://popcornmovies.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||||
* ⭐ **[Ronny Flix](https://ronnyflix.xyz/)** or [RonnyStream](https://ronnystream.ronnyflix.xyz/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/ronnyflix) / [Discord](https://discord.gg/ygsNU4Ac)
|
* ⭐ **[Vidora](https://watch.vidora.su/)** - Movies / TV / Anime / Auto-Next
|
||||||
|
* ⭐ **[7Xtream](https://cinema.7xtream.com/)** - Movies / TV / Anime / [Auto Next Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#7xtream-autoplay) / [Discord](https://discord.gg/TXqWTKeAAu)
|
||||||
* ⭐ **[SpenFlix](https://watch.spencerdevs.xyz/)** - Movies / TV / [Discord](https://discord.gg/RF8vMBRtTs)
|
* ⭐ **[SpenFlix](https://watch.spencerdevs.xyz/)** - Movies / TV / [Discord](https://discord.gg/RF8vMBRtTs)
|
||||||
* ⭐ **[Bingeflex](https://bingeflex.vercel.app/)** - Movies / TV / Auto-Next / [Discord](https://discord.gg/ajRY6Bn3rr)
|
* ⭐ **[Bingeflex](https://bingeflex.vercel.app/)** - Movies / TV / Auto-Next / [Discord](https://discord.gg/ajRY6Bn3rr)
|
||||||
* ⭐ **[HydraHD](https://hydrahd.ac/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
* ⭐ **[456movie](https://456movie.net/)**, [2](https://345movie.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/4SJ5c9gZUQ)
|
||||||
* ⭐ **[456movie](https://456movie.net/)**, [3](https://345movie.net/), [4](https://456movie.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/456movies)
|
|
||||||
* ⭐ **[AlienFlix](https://alienflix.net/)** - Movies / TV / Anime / Auto-Next
|
* ⭐ **[AlienFlix](https://alienflix.net/)** - Movies / TV / Anime / Auto-Next
|
||||||
* ⭐ **[Cinemull](https://cinemull.space/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/watch2dayonline)
|
|
||||||
* ⭐ **[7Xtream](https://movies.7xtream.com/)**, [2](https://cinema.7xtream.com/) - Movies / TV / Anime / [Auto Next Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#7xtream-autoplay) / [Discord](https://discord.gg/TXqWTKeAAu)
|
|
||||||
* [Broflix](https://broflix.ci/) - Movies / TV / Anime / Auto-Next
|
* [Broflix](https://broflix.ci/) - Movies / TV / Anime / Auto-Next
|
||||||
* [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/V8XUhQb2MZ)
|
* [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||||
* [NetPlay](https://netplayz.ru/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36)
|
* [NetPlay](https://netplayz.ru/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36)
|
||||||
* [StreamFlix](https://watch.streamflix.one/) - Movies / TV / Anime / [4K Guide](https://youtu.be/cj5gRXBnWDA), [2](https://i.ibb.co/PDnw1nh/image.png) / [Discord](https://discord.gg/streamflix)
|
|
||||||
* [Arabflix](https://www.arabiflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/AMQdQehThg)
|
* [Arabflix](https://www.arabiflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/AMQdQehThg)
|
||||||
* [Flicker](https://flickermini.netlify.app/), [2](https://flickermini.pages.dev/), [3](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/flickermini/)
|
* [Cinemull](https://cinemull.space/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/watch2dayonline)
|
||||||
|
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / 720p
|
||||||
* [catflix](https://catflix.su/) - Movies / TV
|
* [catflix](https://catflix.su/) - Movies / TV
|
||||||
|
* [StreamFlix](https://watch.streamflix.one/) - Movies / TV / Anime / [4K Guide](https://youtu.be/cj5gRXBnWDA), [2](https://i.ibb.co/PDnw1nh/image.png) / [Discord](https://discord.gg/streamflix)
|
||||||
|
* [Flicker](https://flickermini.pages.dev/), [2](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/flickermini/)
|
||||||
* [Lekuluent](https://lekuluent.et/) - Movies / TV / Anime
|
* [Lekuluent](https://lekuluent.et/) - Movies / TV / Anime
|
||||||
* [AbleFlix](https://ableflix.xyz/), [2](https://ableflix.cc/) - Movies / TV / Anime / [Discord](https://discord.gg/tDKYeh9eQn)
|
|
||||||
* [StigStream](https://stigstream.com/), [2](https://stigstream.xyz), [3](https://stigstream.co.uk) - Movies / TV / Anime / [Discord](https://discord.gg/xxefFT8uEY)
|
* [StigStream](https://stigstream.com/), [2](https://stigstream.xyz), [3](https://stigstream.co.uk) - Movies / TV / Anime / [Discord](https://discord.gg/xxefFT8uEY)
|
||||||
* [Soaper.TV](https://soaper.top/), [2](https://soaper.vip/), [3](https://soaper.cc/), [4](https://soaper.live/) - Movies / TV / Anime / Auto-Next / [Mirrors](https://www.soaperpage.com/)
|
* [Soaper.TV](https://soaper.top/), [2](https://soaper.vip/), [3](https://soaper.cc/), [4](https://soaper.live/) - Movies / TV / Anime / Auto-Next / [Mirrors](https://www.soaperpage.com/)
|
||||||
* [ValhallaStream](https://valhallastream.com/), [2](https://valhallastream.pages.dev/) - Movies / TV / Anime
|
* [ValhallaStream](https://valhallastream.com/), [2](https://valhallastream.pages.dev/) - Movies / TV / Anime
|
||||||
* [EE3](https://ee3.me/), [2](https://rips.cc/) - Movies / Invite Code: fmhy / Sign-Up Required
|
* [EE3](https://ee3.me/), [2](https://rips.cc/) - Movies / Invite Code: fmhy / Sign-Up Required
|
||||||
* [Smashystream](https://smashystream.xyz/), [2](https://flix.smashystream.xyz/), [3](https://smashystream.com/) or [Smashy](https://smashy.stream/) - Movies / TV / Anime / [Telegram](https://telegram.me/+vekZX4KtMPtiYmRl) / [Discord](https://discord.com/invite/tcdcxrbDkE)
|
* [AbleFlix](https://ableflix.xyz/), [2](https://ableflix.cc/) - Movies / TV / Anime / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||||
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4)
|
|
||||||
* [Vidjoy](https://vidjoy.pro/) - Movies / TV / Anime / [Telegram](https://t.me/vidjoy) / [Discord](https://discord.gg/4cq9vkerA3)
|
* [Vidjoy](https://vidjoy.pro/) - Movies / TV / Anime / [Telegram](https://t.me/vidjoy) / [Discord](https://discord.gg/4cq9vkerA3)
|
||||||
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime
|
|
||||||
* [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/)
|
* [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/)
|
||||||
|
* [Smashystream](https://smashystream.xyz/), [2](https://flix.smashystream.xyz/), [3](https://smashystream.com/) or [Smashy](https://smashy.stream/) - Movies / TV / Anime / [Telegram](https://telegram.me/+vekZX4KtMPtiYmRl) / [Discord](https://discord.com/invite/tcdcxrbDkE)
|
||||||
* [Noxe](https://noxe.live/) - Movies / TV / Anime / Auto-Next
|
* [Noxe](https://noxe.live/) - Movies / TV / Anime / Auto-Next
|
||||||
* [Mokmobi](https://mokmobi.ovh/), [2](https://mokmobi.site/) - Movies / TV / Anime
|
|
||||||
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Discord](https://l.cinemadeck.com/discord)
|
|
||||||
* [Let's Stream](https://www.letstream.site/) - Movies / TV / Anime
|
|
||||||
* [Nkiri](https://nkiri.cc/), [2](https://soapertv.cc/), [3](https://popcorntimeonline.cc/), [4](https://streammovies.to/) - Movies / TV
|
* [Nkiri](https://nkiri.cc/), [2](https://soapertv.cc/), [3](https://popcorntimeonline.cc/), [4](https://streammovies.to/) - Movies / TV
|
||||||
* [LookMovie](https://lookmovie2.to/) - Movies / TV / Auto-Next / 480p / [Clones](https://proxymirrorlookmovie.github.io/)
|
* [LookMovie](https://lookmovie2.to/) - Movies / TV / Auto-Next / 480p / [Clones](https://proxymirrorlookmovie.github.io/)
|
||||||
* [CorsFlix](https://corsflix.net/) - Movies / TV / Anime
|
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4)
|
||||||
* [watch.inzi](https://watch.inzi.dev/) - Movies / TV / Anime
|
* [ZILLAXR](https://zilla-xr.xyz/) - Movies / TV / Anime / [Discord](https://discord.gg/ynfvjgHrBd)
|
||||||
* [PressPlay](https://www.pressplay.top/), [2](https://pressplay.cam/) - Movies / TV / [Discord](https://discord.gg/r4QrghF4B9)
|
* [Eliteflix](https://eliteflix.shit.vc/) - Movies / TV / Anime
|
||||||
* [Novafork](https://novafork.cc/) - Movies / TV / [Discord](https://discord.gg/XbDBBmh5FY) / [GitHub](https://github.com/noname25495/novafork)
|
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Discord](https://l.cinemadeck.com/discord)
|
||||||
|
* [Let's Stream](https://www.letstream.site/) - Movies / TV / Anime
|
||||||
|
* [Mokmobi](https://mokmobi.ovh/), [2](https://mokmobi.site/) - Movies / TV / Anime
|
||||||
* [NET3LIX](https://net3lix.world/) - Movies / TV / Anime / [Discord](https://discord.gg/bstJfQT3AZ)
|
* [NET3LIX](https://net3lix.world/) - Movies / TV / Anime / [Discord](https://discord.gg/bstJfQT3AZ)
|
||||||
* [uFlix](https://uflix.cc/), [2](https://uflix.to/) - Movies / TV / Anime
|
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime
|
||||||
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
|
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
|
||||||
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / 720p
|
* [uFlix](https://uflix.to/), [2](https://uflix.cc/) - Movies / TV / Anime
|
||||||
* [NEPU](https://nepu.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/nepu)
|
* [NEPU](https://nepu.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/nepu)
|
||||||
|
* [BFLIX](https://bflix.sh/) - Movies / TV
|
||||||
|
* [Novafork](https://novafork.cc/) - Movies / TV / [Discord](https://discord.gg/XbDBBmh5FY) / [GitHub](https://github.com/noname25495/novafork)
|
||||||
* [FshareTV](https://fsharetv.co/) - Movies
|
* [FshareTV](https://fsharetv.co/) - Movies
|
||||||
* [Mp4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies / [Mirrors](https://mp4hydra.org/about#domains)
|
* [Mp4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies / [Mirrors](https://mp4hydra.org/about#domains)
|
||||||
* [FlixWatch](https://flixwatch.site/) - Movies / TV / Anime / [Discord](https://discord.com/invite/5MJhpjzv)
|
* [PressPlay](https://www.pressplay.top/), [2](https://pressplay.cam/) - Movies / TV / [Discord](https://discord.gg/r4QrghF4B9)
|
||||||
* [zmov](https://zmov.vercel.app/), [2](https://watch.coen.ovh/), [3](https://plexmovies.online/) - Movies / TV / Anime / [GitHub](https://github.com/coen-h/zmov)
|
* [CorsFlix](https://corsflix.net/) - Movies / TV / Anime
|
||||||
* [Qstream](https://qstream.pages.dev/) - Movies / TV / Anime
|
|
||||||
* [YoYoMovies](https://yoyomovies.net/), [2](https://fmovies-hd.to/) - Movies / TV / Anime
|
* [YoYoMovies](https://yoyomovies.net/), [2](https://fmovies-hd.to/) - Movies / TV / Anime
|
||||||
* [SlideMovies](https://slidemovies.org/) - Movies / TV / Anime / [Discord](https://discord.gg/mh2Bte8Kfj)
|
* [SlideMovies](https://slidemovies.org/) - Movies / TV / Anime / [Discord](https://discord.gg/mh2Bte8Kfj)
|
||||||
* [Wovie](https://watchstream.site/), [2](https://wovie.vercel.app/) - Movies / TV / Anime / [GitHub](https://github.com/iswilljr/wovie)
|
|
||||||
* [SoaPy](https://soapy.to/) - Movies / TV / Anime
|
* [SoaPy](https://soapy.to/) - Movies / TV / Anime
|
||||||
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
||||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / Use Throwaway Gmail / [4K Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / Use Throwaway Gmail / [4K Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
||||||
* [Heartive](https://heartive.pages.dev/) - Movies / TV / Anime
|
* [Heartive](https://heartive.pages.dev/) - Movies / TV / Anime
|
||||||
* [M4uFree](https://m4ufree.se/) - Movies / TV / Anime / [Clones](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_m4ufree_clones)
|
* [zmov](https://zmov.vercel.app/), [2](https://watch.coen.ovh/), [3](https://plexmovies.online/) - Movies / TV / Anime / [GitHub](https://github.com/coen-h/zmov)
|
||||||
* [EnjoyTown](https://enjoytown.pro/) - Movies / TV / Anime / [GitHub](https://github.com/avalynndev/enjoytown)
|
* [Qstream](https://qstream.pages.dev/) - Movies / TV / Anime
|
||||||
* [Hopcorn+](https://c.hopmarks.com/), [2](https://p.hopmarks.com/) - Movies / TV / Anime
|
* [Hopcorn+](https://c.hopmarks.com/), [2](https://p.hopmarks.com/) - Movies / TV / Anime
|
||||||
|
* [Wovie](https://watchstream.site/), [2](https://wovie.vercel.app/) - Movies / TV / Anime / [GitHub](https://github.com/iswilljr/wovie)
|
||||||
* [PrimeWire](https://www.primewire.tf/) - Movies / TV / Anime
|
* [PrimeWire](https://www.primewire.tf/) - Movies / TV / Anime
|
||||||
* [BrocoFlix](https://brocoflix.com/) - Movies / TV / Anime
|
* [BrocoFlix](https://brocoflix.com/) - Movies / TV / Anime
|
||||||
* [UniqueStream](https://uniquestream.net/) - Movies / TV / Anime / 720p
|
* [EnjoyTown](https://enjoytown.pro/) - Movies / TV / Anime / [GitHub](https://github.com/avalynndev/enjoytown)
|
||||||
* [SFlix](https://sflix2.to/) - Movies / TV / [Clones](https://rentry.co/sflix)
|
* [SFlix](https://sflix2.to/) - Movies / TV / [Clones](https://rentry.co/sflix)
|
||||||
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - Movies / TV / Anime
|
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - Movies / TV / Anime
|
||||||
|
* [FlixWatch](https://flixwatch.site/) - Movies / TV / Anime / [Discord](https://discord.com/invite/5MJhpjzv)
|
||||||
* [YassFlix](https://yassflix.net/) - Movies / TV / Anime
|
* [YassFlix](https://yassflix.net/) - Movies / TV / Anime
|
||||||
* [VidPlay](https://vidplay.tv/) - Movies / TV / Anime / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#vidplay-note)
|
* [VidPlay](https://vidplay.tv/) - Movies / TV / Anime / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#vidplay-note)
|
||||||
* [Way2Movies](https://way2movies.fun/), [2](https://way2movies.vercel.app/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/way2movies/) / [Telegram](https://t.me/Way2MoviesFun) / [Discord](https://discord.gg/mH4zsaAmv7)
|
* [Way2Movies](https://way2movies.fun/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/way2movies/) / [Telegram](https://t.me/Way2MoviesFun) / [Discord](https://discord.gg/mH4zsaAmv7)
|
||||||
|
* [UniqueStream](https://uniquestream.net/) - Movies / TV / Anime / 720p
|
||||||
* [YesMovie](https://yesmovies.ag/), [2](https://solarmovieru.com/home.html) - Movies / TV / 720p
|
* [YesMovie](https://yesmovies.ag/), [2](https://solarmovieru.com/home.html) - Movies / TV / 720p
|
||||||
* [ReelZone](https://reelzone.vercel.app/) - Movies / TV / Anime / [Discord](https://discord.gg/zArgTukX3Z)
|
* [ReelZone](https://reelzone.vercel.app/) - Movies / TV / Anime / [Discord](https://discord.gg/zArgTukX3Z)
|
||||||
* [PrimeFlix](https://primeflix-web.vercel.app/), [2](https://www.primeflix.lol/), [3](https://primeflix-web.me/) - Movies / TV / Anime / [Discord](https://discord.gg/GbW6gzAKgc)
|
|
||||||
* [FireFlix](https://fireflix.fun/) - Movies / TV / Anime / [Discord](https://discord.gg/aMEGepsr5A)
|
|
||||||
* [AZMovies](https://azmovies.ag/) - Movies
|
* [AZMovies](https://azmovies.ag/) - Movies
|
||||||
* [TVids](https://www.tvids.net/), [2](https://watch-tvseries.net/) - Movies / TV / Anime
|
* [TVids](https://www.tvids.net/), [2](https://watch-tvseries.net/) - Movies / TV / Anime
|
||||||
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / [Clones](https://hollymoviehd-official.com/)
|
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / [Clones](https://hollymoviehd-official.com/)
|
||||||
|
* [FireFlix](https://fireflix.fun/) - Movies / TV / Anime / [Discord](https://discord.gg/aMEGepsr5A)
|
||||||
* [Cataz](https://cataz.ru/), [2](https://projectfreetv.sx/) - Movies / TV / Anime
|
* [Cataz](https://cataz.ru/), [2](https://projectfreetv.sx/) - Movies / TV / Anime
|
||||||
* [NetMirror](https://netfree.cc/home) - Movies / TV / 720p
|
* [NetMirror](https://netfree.cc/home) - Movies / TV / 720p
|
||||||
* [Zoechip](https://zoechip.org/) - Movies / TV
|
* [Zoechip](https://zoechip.org/) - Movies / TV
|
||||||
|
@ -106,7 +107,7 @@
|
||||||
## ▷ Free w/ Ads
|
## ▷ Free w/ Ads
|
||||||
|
|
||||||
* ↪️ **[YouTube Movie Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_youtube_movies)**
|
* ↪️ **[YouTube Movie Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_youtube_movies)**
|
||||||
* ⭐ **[Tubi](https://tubitv.com)** - Movies / TV / 720p / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv)
|
* ⭐ **[Tubi](https://tubitv.com)** - Movies / TV / 720p / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv) / [Countries](https://corporate.tubitv.com/)
|
||||||
* ⭐ **[Plex](https://watch.plex.tv/)** - Movies / TV / 720p
|
* ⭐ **[Plex](https://watch.plex.tv/)** - Movies / TV / 720p
|
||||||
* ⭐ **[Pluto](https://pluto.tv/)** - Movies / TV / 720p
|
* ⭐ **[Pluto](https://pluto.tv/)** - Movies / TV / 720p
|
||||||
* [Crackle](https://www.crackle.com/) - Movies / TV / US Only
|
* [Crackle](https://www.crackle.com/) - Movies / TV / US Only
|
||||||
|
@ -132,8 +133,9 @@
|
||||||
## ▷ Anime Streaming
|
## ▷ Anime Streaming
|
||||||
|
|
||||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites)** / [Discord](https://discord.gg/vShRGx8ZBC) / [GitHub](https://github.com/wotakumoe/Wotaku), [The Index](https://theindex.moe/library/anime) / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox) or [EverythingMoe](https://everythingmoe.com/), [2](https://everythingmoe.org/) / [Discord](https://discord.gg/GuueaDgKdS)
|
* 🌐 **[Wotaku](https://wotaku.wiki/websites)** / [Discord](https://discord.gg/vShRGx8ZBC) / [GitHub](https://github.com/wotakumoe/Wotaku), [The Index](https://theindex.moe/library/anime) / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox) or [EverythingMoe](https://everythingmoe.com/), [2](https://everythingmoe.org/) / [Discord](https://discord.gg/GuueaDgKdS)
|
||||||
* ⭐ **[Miruro](https://www.miruro.tv/)**, [2](https://www.miruro.online/) - Sub / Dub / Auto-Next / [Mirrors](https://www.miruro.com/) / [Subreddit](https://www.reddit.com/r/miruro/) / [Discord](https://discord.gg/miruro) / [GitHub](https://github.com/Miruro-no-kuon/Miruro)
|
* ⭐ **[AnimeKai](https://animekai.to/home)**, [2](https://animekai.bz/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/at5d9rkfUy) / [Subreddit](https://www.reddit.com/r/Animekaito)
|
||||||
* ⭐ **[HiAnime](https://hianime.to/)**, [2](https://hianime.nz/), [3](https://hianime.sx/) - Sub / Dub / Auto-Next / [Subreddit](https://reddit.com/r/HiAnimeZone/) / [Telegram](https://t.me/HiAnimeLobby) / [Discord](https://discord.gg/hianime)
|
* ⭐ **[Miruro](https://www.miruro.com/)** - Sub / Dub / Auto-Next / [Subreddit](https://www.reddit.com/r/miruro/) / [Discord](https://discord.gg/miruro) / [GitHub](https://github.com/Miruro-no-kuon/Miruro)
|
||||||
|
* ⭐ **[HiAnime](https://hianime.to/)**, [2](https://hianime.nz/), [3](https://hianime.sx/), [4](https://hianime.bz/), [5](https://hianime.pe/) - Sub / Dub / Auto-Next / [Subreddit](https://reddit.com/r/HiAnimeZone/) / [Telegram](https://t.me/HiAnimeLobby) / [Discord](https://discord.gg/hianime)
|
||||||
* ⭐ **HiAnime Resources** - [Official Mirrors](https://hianime.tv/) / [Enhancements](https://greasyfork.org/en/scripts/506340) / [Auto-Focus](https://greasyfork.org/en/scripts/506891)
|
* ⭐ **HiAnime Resources** - [Official Mirrors](https://hianime.tv/) / [Enhancements](https://greasyfork.org/en/scripts/506340) / [Auto-Focus](https://greasyfork.org/en/scripts/506891)
|
||||||
* ⭐ **[All Manga](https://allmanga.to/)** - Sub / Dub / [Discord](https://discord.gg/YbuYYUwhpP)
|
* ⭐ **[All Manga](https://allmanga.to/)** - Sub / Dub / [Discord](https://discord.gg/YbuYYUwhpP)
|
||||||
* ⭐ **[animepahe](https://animepahe.ru/)** - Sub / Dub / [Downloader](https://github.com/KevCui/animepahe-dl)
|
* ⭐ **[animepahe](https://animepahe.ru/)** - Sub / Dub / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||||
|
@ -141,9 +143,7 @@
|
||||||
* ⭐ **[Animag](https://animag.to/)** - Sub / Dub
|
* ⭐ **[Animag](https://animag.to/)** - Sub / Dub
|
||||||
* ⭐ **[AnimeZ](https://animez.org/)** - Sub / Dub
|
* ⭐ **[AnimeZ](https://animez.org/)** - Sub / Dub
|
||||||
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** or **[Kuroiru](https://kuroiru.co/)** - Multi-Site Anime Search
|
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** or **[Kuroiru](https://kuroiru.co/)** - Multi-Site Anime Search
|
||||||
* [Layendimator](https://github.com/Layendan/Layendanimator), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.rahim.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime), [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) or [Migu](https://miguapp.pages.dev/) / [GitHub](https://github.com/NoCrypt/migu) Desktop Streaming Apps
|
|
||||||
* [Rivekun](https://rivekun.rivestream.org/) - Sub / Dub / [Discord](https://discord.com/invite/6xJmJja8fV)
|
* [Rivekun](https://rivekun.rivestream.org/) - Sub / Dub / [Discord](https://discord.com/invite/6xJmJja8fV)
|
||||||
* [AnimeKai](https://animekai.to/home), [2](https://animekai.bz/) - Sub / Dub
|
|
||||||
* [Anify](https://anify.to/) - Sub / Dub / [Discord](https://discord.com/invite/79GgUXYwey)
|
* [Anify](https://anify.to/) - Sub / Dub / [Discord](https://discord.com/invite/79GgUXYwey)
|
||||||
* [123anime](https://123animes.ru/) - Sub / Dub / Auto-Next
|
* [123anime](https://123animes.ru/) - Sub / Dub / Auto-Next
|
||||||
* [Vumeto](https://vumeto.com/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/se4NzzY5R7)
|
* [Vumeto](https://vumeto.com/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/se4NzzY5R7)
|
||||||
|
@ -168,6 +168,7 @@
|
||||||
* [Crunchyroll](https://www.crunchyroll.com/videos/anime) - Sub / Dub / Auto-Next / [US Proxy](https://addons.mozilla.org/en-US/firefox/addon/crunchy-unblocker/) / [Intro Skip](https://github.com/aniskip/aniskip-extension)
|
* [Crunchyroll](https://www.crunchyroll.com/videos/anime) - Sub / Dub / Auto-Next / [US Proxy](https://addons.mozilla.org/en-US/firefox/addon/crunchy-unblocker/) / [Intro Skip](https://github.com/aniskip/aniskip-extension)
|
||||||
* [Miu](https://discord.gg/pwkuanXBJh) or [AnimeThemes](https://animethemes.moe/) / [Discord](https://discord.com/invite/m9zbVyQ) / [GitHub](https://github.com/AnimeThemes) - Anime Themes
|
* [Miu](https://discord.gg/pwkuanXBJh) or [AnimeThemes](https://animethemes.moe/) / [Discord](https://discord.com/invite/m9zbVyQ) / [GitHub](https://github.com/AnimeThemes) - Anime Themes
|
||||||
* [AnimeMusicVideos](https://www.animemusicvideos.org/) - Fan-Made Anime Music Videos
|
* [AnimeMusicVideos](https://www.animemusicvideos.org/) - Fan-Made Anime Music Videos
|
||||||
|
* [Layendimator](https://github.com/Layendan/Layendanimator), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.rahim.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime), [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) or [Migu](https://miguapp.pages.dev/) / [GitHub](https://github.com/NoCrypt/migu) Desktop Streaming Apps
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -226,7 +227,6 @@
|
||||||
* [DramaFire](https://dramafire.com.pl/) - TV / Movies
|
* [DramaFire](https://dramafire.com.pl/) - TV / Movies
|
||||||
* [AsianCrush](https://www.asiancrush.com/) - TV / Movies
|
* [AsianCrush](https://www.asiancrush.com/) - TV / Movies
|
||||||
* [KissAsian](https://kissasian.video/) - TV / Movies
|
* [KissAsian](https://kissasian.video/) - TV / Movies
|
||||||
* [OFWShow](https://dulichsaigon.site/list/engsub/) - TV / Movies
|
|
||||||
* [KissAsianTV](https://kissasiantv.blog/) - TV / Movies
|
* [KissAsianTV](https://kissasiantv.blog/) - TV / Movies
|
||||||
* [AsiaFlix](https://asiaflix.net/) - TV / Movies
|
* [AsiaFlix](https://asiaflix.net/) - TV / Movies
|
||||||
* [Dramacool.org](https://dramacooll.com.de/) - TV / Movies
|
* [Dramacool.org](https://dramacooll.com.de/) - TV / Movies
|
||||||
|
@ -245,7 +245,7 @@
|
||||||
* ⭐ **[GizmoPlex](https://www.gizmoplex.com/mst3k)** - MST3K Movies
|
* ⭐ **[GizmoPlex](https://www.gizmoplex.com/mst3k)** - MST3K Movies
|
||||||
* ⭐ **[RiffTrax Twitch](https://www.twitch.tv/rifftrax)** or [RiffTrax Pluto](https://pluto.tv/live-tv/rifftrax) - RiffTrax Live Streams
|
* ⭐ **[RiffTrax Twitch](https://www.twitch.tv/rifftrax)** or [RiffTrax Pluto](https://pluto.tv/live-tv/rifftrax) - RiffTrax Live Streams
|
||||||
* ⭐ **[Ubu](https://ubu.com/film/)** - Short Films / Avant-Garde
|
* ⭐ **[Ubu](https://ubu.com/film/)** - Short Films / Avant-Garde
|
||||||
* [Classic Cinema Online](https://classiccinemaonline.com/), [ClassixApp](https://www.classixapp.com/), [BnWMovies](https://bnwmovies.com/), [The Classic Movies](https://www.the-classic-movies.com/), [WikiFlix](https://wikiflix.toolforge.org/), [FilmsByTheYear](https://www.youtube.com/@FilmsbytheYear/playlists), [RetroFlix](https://retroflix.org/) or [Dumb Classic Movies](https://www.dumb.com/movies/) - Classic Films
|
* [Classic Cinema Online](https://classiccinemaonline.com/), [ClassixApp](https://www.classixapp.com/), [BnWMovies](https://bnwmovies.com/), [The Classic Movies](https://www.the-classic-movies.com/), [WikiFlix](https://wikiflix.toolforge.org/), [FilmsByTheYear](https://www.youtube.com/@FilmsbytheYear/playlists) or [RetroFlix](https://retroflix.org/) - Classic Films
|
||||||
* [RetroStrange](https://live.retrostrange.com/) - Live Retro Streams
|
* [RetroStrange](https://live.retrostrange.com/) - Live Retro Streams
|
||||||
* [Silent Hall of Fame](https://silent-hall-of-fame.org/) - Silent Films
|
* [Silent Hall of Fame](https://silent-hall-of-fame.org/) - Silent Films
|
||||||
* [Wu Tang Collection](https://www.thewutangcollection.com/) - Martial Arts Films
|
* [Wu Tang Collection](https://www.thewutangcollection.com/) - Martial Arts Films
|
||||||
|
@ -347,7 +347,7 @@
|
||||||
|
|
||||||
* ⭐ **[TheTVApp](https://thetvapp.to/)**, [2](https://tvpass.org/) - TV / Sports / US Only
|
* ⭐ **[TheTVApp](https://thetvapp.to/)**, [2](https://tvpass.org/) - TV / Sports / US Only
|
||||||
* ⭐ **[tv.garden](https://tv.garden/)** - TV / Sports
|
* ⭐ **[tv.garden](https://tv.garden/)** - TV / Sports
|
||||||
* ⭐ **[DaddyLive](https://thedaddy.to/)** or [miztv](https://miztv.shop/) - TV / Sport / [Telegram](https://t.me/dlhdlive)
|
* ⭐ **[DaddyLive](https://daddylive.mp/)** or [miztv](https://miztv.shop/) - TV / Sport / [Telegram](https://t.me/dlhdlive)
|
||||||
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports
|
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports
|
||||||
* ⭐ **[RgShows](https://www.rgshows.me/livetv/)** or **[Heartive](https://heartive.pages.dev/live/)** - TV / Sports
|
* ⭐ **[RgShows](https://www.rgshows.me/livetv/)** or **[Heartive](https://heartive.pages.dev/live/)** - TV / Sports
|
||||||
* [Xumo Play](https://play.xumo.com/networks) - TV / US Only
|
* [Xumo Play](https://play.xumo.com/networks) - TV / US Only
|
||||||
|
@ -367,10 +367,8 @@
|
||||||
* [FreeInterTV](http://www.freeintertv.com/) - TV / Sports
|
* [FreeInterTV](http://www.freeintertv.com/) - TV / Sports
|
||||||
* [huhu.to](http://huhu.to/), [vavoo.to](http://vavoo.to/), [kool.to](http://kool.to/) or [oha.to](http://oha.to/) - TV / Sports
|
* [huhu.to](http://huhu.to/), [vavoo.to](http://vavoo.to/), [kool.to](http://kool.to/) or [oha.to](http://oha.to/) - TV / Sports
|
||||||
* [vipotv](https://vipotv.com/) - TV / Sports
|
* [vipotv](https://vipotv.com/) - TV / Sports
|
||||||
* [WwiTv](https://wwitv.com/) - TV
|
|
||||||
* [SquidTV](https://www.squidtv.net/) - TV
|
* [SquidTV](https://www.squidtv.net/) - TV
|
||||||
* [s7-tv](https://s7-tv.blogspot.com/p/t.html) - TV
|
* [s7-tv](https://s7-tv.blogspot.com/p/t.html) - TV
|
||||||
* [PhotoCall](https://photocall.xyz/) - TV
|
|
||||||
* [DistroTV](https://distro.tv/) - TV
|
* [DistroTV](https://distro.tv/) - TV
|
||||||
* [Puffer](https://puffer.stanford.edu/) - San Fran TV
|
* [Puffer](https://puffer.stanford.edu/) - San Fran TV
|
||||||
* [Funcube](https://funcube.space/) - Random Streams
|
* [Funcube](https://funcube.space/) - Random Streams
|
||||||
|
@ -380,7 +378,7 @@
|
||||||
* [Channel 99](http://www.pracdev.org/channel99/) - Random Streams
|
* [Channel 99](http://www.pracdev.org/channel99/) - Random Streams
|
||||||
* [EXP TV](https://exptv.org/) - Rare / Vintage / Obscure Media Stream
|
* [EXP TV](https://exptv.org/) - Rare / Vintage / Obscure Media Stream
|
||||||
* [YTCH](https://ytch.xyz/) or [FreeTVz](https://freetvz.com/) - Random TV Style YouTube
|
* [YTCH](https://ytch.xyz/) or [FreeTVz](https://freetvz.com/) - Random TV Style YouTube
|
||||||
* [TV.Jest](https://tv.jest.one/) - News
|
* [TV.Jest](https://tv.jest.one/) or [WorldNews24](https://worldnews24.tv/) - News
|
||||||
* [SHOWROOM](https://showroom-live.com/) - Live Performance Broadcasts
|
* [SHOWROOM](https://showroom-live.com/) - Live Performance Broadcasts
|
||||||
* [KCNA](https://kcnawatch.us/korea-central-tv-livestream) - North Korean Live TV
|
* [KCNA](https://kcnawatch.us/korea-central-tv-livestream) - North Korean Live TV
|
||||||
* [TitanTV](https://titantv.com/) - Live TV Listings
|
* [TitanTV](https://titantv.com/) - Live TV Listings
|
||||||
|
@ -391,7 +389,7 @@
|
||||||
|
|
||||||
* 🌐 **[/sport calendars/](https://rentry.co/sportcalendars)** - Importable Sports Calendars
|
* 🌐 **[/sport calendars/](https://rentry.co/sportcalendars)** - Importable Sports Calendars
|
||||||
* ⭐ **[Streamed](https://streamed.su/)** / [Discord](https://discord.gg/streamed)
|
* ⭐ **[Streamed](https://streamed.su/)** / [Discord](https://discord.gg/streamed)
|
||||||
* ⭐ **[PPV.land](https://ppv.land/)** - Live Events / [Discord](https://discord.gg/cSDJu4juQx)
|
* ⭐ **[PPV.wtf](https://ppv.wtf/)** - Live Events / [Mirrors](https://ppv.zone/) / [Discord](https://discord.gg/5AMPdpckjH)
|
||||||
* ⭐ **[SportyHunter](https://sportyhunter.com/)** - Stream Aggregator / [Discord](https://discord.gg/zbxWcejadm)
|
* ⭐ **[SportyHunter](https://sportyhunter.com/)** - Stream Aggregator / [Discord](https://discord.gg/zbxWcejadm)
|
||||||
* ⭐ **[WatchSports](https://watchsports.to/)** - Stream Aggregator
|
* ⭐ **[WatchSports](https://watchsports.to/)** - Stream Aggregator
|
||||||
* ⭐ **[Sports Plus](https://en12.sportplus.live/)**
|
* ⭐ **[Sports Plus](https://en12.sportplus.live/)**
|
||||||
|
@ -406,13 +404,6 @@
|
||||||
* [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/)
|
* [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/)
|
||||||
* [MrGamingStreams](https://mrgamingstreams.app/) / [Discord](https://discord.gg/BCtqVn5JKR)
|
* [MrGamingStreams](https://mrgamingstreams.app/) / [Discord](https://discord.gg/BCtqVn5JKR)
|
||||||
* [MutStreams](https://mutstreams.com)
|
* [MutStreams](https://mutstreams.com)
|
||||||
* [HydraHD Sports](https://hydrahd.ac/livesports)
|
|
||||||
* [RiveStream](https://rivestream.org/livesports)
|
|
||||||
* [AlienFlix Sports](https://alienflix.net/live/matches)
|
|
||||||
* [NunFlix Sports](https://nunflix.org/sports)
|
|
||||||
* [VidBox Sports](https://vidbox.to/sports)
|
|
||||||
* [Bingeflex Sports](https://bingeflex.vercel.app/livesports)
|
|
||||||
* [Broflix Sports](https://broflix.ci/live/sports)
|
|
||||||
* [Sportsurge.club](https://sportsurge.club/) - Stream Aggregator
|
* [Sportsurge.club](https://sportsurge.club/) - Stream Aggregator
|
||||||
* [TFLIX](https://tv.tflix.app/)
|
* [TFLIX](https://tv.tflix.app/)
|
||||||
* [Sportea](https://s1.sportea.link/)
|
* [Sportea](https://s1.sportea.link/)
|
||||||
|
@ -423,18 +414,27 @@
|
||||||
* [KobeStreams](http://watchkobestreams.info/) / [Discord](https://discord.com/invite/SEmFE8bdtR)
|
* [KobeStreams](http://watchkobestreams.info/) / [Discord](https://discord.com/invite/SEmFE8bdtR)
|
||||||
* [720pStream](https://720pstream.nu/)
|
* [720pStream](https://720pstream.nu/)
|
||||||
* [BuffStream](https://app.buffstream.io/)
|
* [BuffStream](https://app.buffstream.io/)
|
||||||
* [GiveMeRedditStreams](https://givemeredditstreams.xyz/)
|
* [HydraHD Sports](https://hydrahd.ac/livesports)
|
||||||
|
* [RiveStream](https://rivestream.org/livesports)
|
||||||
|
* [AlienFlix Sports](https://alienflix.net/live/matches)
|
||||||
|
* [NunFlix Sports](https://nunflix.org/sports)
|
||||||
|
* [VidBox Sports](https://vidbox.to/sports)
|
||||||
|
* [FlickyStream Sports](https://flickystream.com/sports)
|
||||||
|
* [Bingeflex Sports](https://bingeflex.vercel.app/livesports)
|
||||||
|
* [Broflix Sports](https://broflix.ci/live/sports)
|
||||||
* [LiveTV](https://livetv.sx/enx/)
|
* [LiveTV](https://livetv.sx/enx/)
|
||||||
* [Strims](https://strimsy.top/)
|
* [Strims](https://strimsy.top/)
|
||||||
* [SportsLive](https://sportslive.me/)
|
* [SportsLive](https://sportslive.me/)
|
||||||
* [Sport365](https://sport365.stream/) - Stream Aggregator
|
* [Sport365](https://sport365.stream/) - Stream Aggregator
|
||||||
|
* [TopSport](https://topsport.live/) - Stream Aggregator
|
||||||
* [RedditSport](https://redditsport.cc/)
|
* [RedditSport](https://redditsport.cc/)
|
||||||
* [Raket TV](https://rakettvv.blogspot.com/), [2](https://www.rakettv.win/)
|
* [Raket TV](https://www.rakettv.win/)
|
||||||
* [CrackStreams](https://crackstreams.blog/)
|
* [CrackStreams](https://crackstreams.blog/)
|
||||||
* [BuffStreams](https://buffstreams.app/)
|
* [BuffStreams](https://buffstreams.app/)
|
||||||
* [SportHD](https://sporthd.live/)
|
* [SportHD](https://sporthd.live/)
|
||||||
* [NET3LIX](https://net3lix.world/live) / [Discord](https://discord.gg/bstJfQT3AZ)
|
* [NET3LIX](https://net3lix.world/live) / [Discord](https://discord.gg/bstJfQT3AZ)
|
||||||
* [SportsOnline](https://sportsonline.gl/)
|
* [SportsOnline](https://sportsonline.gl/)
|
||||||
|
* [Sport7](https://sport7.pro/)
|
||||||
* [WorldStreams](https://worldstreams.net/)
|
* [WorldStreams](https://worldstreams.net/)
|
||||||
* [StreamLiveTV](https://streamlivetv.site/)
|
* [StreamLiveTV](https://streamlivetv.site/)
|
||||||
* [StrikeOut](https://strikeout.im/)
|
* [StrikeOut](https://strikeout.im/)
|
||||||
|
@ -559,7 +559,7 @@
|
||||||
* [KPFire](https://linktr.ee/kpfire) - Firestick Apps
|
* [KPFire](https://linktr.ee/kpfire) - Firestick Apps
|
||||||
* [YTCast](https://github.com/MarcoLucidi01/ytcast) - Cast YouTube Videos to Smart TV
|
* [YTCast](https://github.com/MarcoLucidi01/ytcast) - Cast YouTube Videos to Smart TV
|
||||||
* [iSponsorBlockTV](https://github.com/dmunozv04/iSponsorBlockTV) - SponsorBlock App
|
* [iSponsorBlockTV](https://github.com/dmunozv04/iSponsorBlockTV) - SponsorBlock App
|
||||||
* [Playlet](https://channelstore.roku.com/en-ca/details/840aec36f51bfe6d96cf6db9055a372a/playlet) - Ad-Free YouTube Roku Client / [GitHub](https://github.com/iBicha/playlet)
|
* [Playlet](https://channelstore.roku.com/details/4a41d0921265a5e31429a7679442153f:b5bcb5b630c28b01e93bf59856317b43/playlet) - Ad-Free YouTube Roku Client / [GitHub](https://github.com/iBicha/playlet)
|
||||||
* [SmartTwitchTV](https://github.com/fgl27/SmartTwitchTV) - Smart TV Twitch Player
|
* [SmartTwitchTV](https://github.com/fgl27/SmartTwitchTV) - Smart TV Twitch Player
|
||||||
* [Go2TV](https://github.com/alexballas/go2tv) or [FCast](https://fcast.org/) - Cast to Smart TVs
|
* [Go2TV](https://github.com/alexballas/go2tv) or [FCast](https://fcast.org/) - Cast to Smart TVs
|
||||||
* [StreamFire](https://rentry.co/FMHYBase64#streamfire), [2](https://streamfireapp.tv/) - Live TV for Smart TV & Firestick
|
* [StreamFire](https://rentry.co/FMHYBase64#streamfire), [2](https://streamfireapp.tv/) - Live TV for Smart TV & Firestick
|
||||||
|
@ -573,7 +573,7 @@
|
||||||
## ▷ Android TV
|
## ▷ Android TV
|
||||||
|
|
||||||
* 🌐 **[Awesome Android TV](https://github.com/Generator/Awesome-Android-TV-FOSS-Apps)** - Android TV App Index
|
* 🌐 **[Awesome Android TV](https://github.com/Generator/Awesome-Android-TV-FOSS-Apps)** - Android TV App Index
|
||||||
* ⭐ **[SmartTube](https://smarttubeapp.github.io/)** - Ad-Free Android TV YouTube / [GitHub](https://github.com/yuliskov/SmartTube)
|
* ⭐ **[SmartTube](https://github.com/yuliskov/SmartTube)**, [2](https://smarttubeapp.github.io/) - Ad-Free Android TV YouTube
|
||||||
* [Android TV Tools v3](https://xdaforums.com/t/tool-all-in-one-tool-for-windows-android-tv-tools-v3.4648239/) - Multiple Android TV Tools
|
* [Android TV Tools v3](https://xdaforums.com/t/tool-all-in-one-tool-for-windows-android-tv-tools-v3.4648239/) - Multiple Android TV Tools
|
||||||
* [Android TV Guide](https://www.androidtv-guide.com/) - Android TV Piracy Guide / [Spreadsheet](https://docs.google.com/spreadsheets/d/1kdnHLt673EjoAJisOal2uIpcmVS2Defbgk1ntWRLY3E/)
|
* [Android TV Guide](https://www.androidtv-guide.com/) - Android TV Piracy Guide / [Spreadsheet](https://docs.google.com/spreadsheets/d/1kdnHLt673EjoAJisOal2uIpcmVS2Defbgk1ntWRLY3E/)
|
||||||
* [S0undTV](https://github.com/S0und/S0undTV) - Android TV Twitch Player / [Discord](https://discord.gg/zmNjK2S)
|
* [S0undTV](https://github.com/S0und/S0undTV) - Android TV Twitch Player / [Discord](https://discord.gg/zmNjK2S)
|
||||||
|
@ -629,7 +629,6 @@
|
||||||
* [UHDMovies](https://modlist.in/?type=uhdmovies) - Movies / 4K
|
* [UHDMovies](https://modlist.in/?type=uhdmovies) - Movies / 4K
|
||||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / 4K / Use Throwaway Gmail / [Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / 4K / Use Throwaway Gmail / [Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
||||||
* [Onkyo4k](https://onkyo4k.com/) - Movies / TV / 4K
|
* [Onkyo4k](https://onkyo4k.com/) - Movies / TV / 4K
|
||||||
* [MoviPlus](https://moviplus.net/) - Movies / TV
|
|
||||||
* [SlideMovies](https://slidemovies.org/) - Movies / TV / Anime / [Discord](https://discord.gg/mh2Bte8Kfj)
|
* [SlideMovies](https://slidemovies.org/) - Movies / TV / Anime / [Discord](https://discord.gg/mh2Bte8Kfj)
|
||||||
* [HDHub4u](https://hdhublist.com/?re=hollywood) - Movies / TV / 4K / [Telegram](https://hdhublist.com/?re=telegram)
|
* [HDHub4u](https://hdhublist.com/?re=hollywood) - Movies / TV / 4K / [Telegram](https://hdhublist.com/?re=telegram)
|
||||||
* [ShareSpark](https://ww1.sharespark.cfd/) - Movies / TV
|
* [ShareSpark](https://ww1.sharespark.cfd/) - Movies / TV
|
||||||
|
@ -674,7 +673,6 @@
|
||||||
* ⭐ **[PK Movies](https://rentry.co/FMHYBase64#pk-movies)** - Movies / TV / Anime
|
* ⭐ **[PK Movies](https://rentry.co/FMHYBase64#pk-movies)** - Movies / TV / Anime
|
||||||
* [Vadapav](https://rentry.co/FMHYBase64#vadapav) - Movies / TV
|
* [Vadapav](https://rentry.co/FMHYBase64#vadapav) - Movies / TV
|
||||||
* [One Eighty Eight](https://rentry.co/FMHYBase64#one-eighty-eight) - Movies / TV
|
* [One Eighty Eight](https://rentry.co/FMHYBase64#one-eighty-eight) - Movies / TV
|
||||||
* [GDex](https://rentry.co/FMHYBase64#gdex) - Movies / TV
|
|
||||||
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies / Telegram
|
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies / Telegram
|
||||||
* [SeriesBayX](https://t.me/SeriesBayX) - TV / Telegram
|
* [SeriesBayX](https://t.me/SeriesBayX) - TV / Telegram
|
||||||
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
||||||
|
@ -751,7 +749,7 @@
|
||||||
## ▷ Stremio Tools
|
## ▷ Stremio Tools
|
||||||
|
|
||||||
* 🌐 **[Stremio Addons](https://www.stremio-addons.com/)** - Stremio Addons / [Subreddit](https://www.reddit.com/r/StremioAddons/) / [Discord](https://discord.com/invite/zNRf6YF)
|
* 🌐 **[Stremio Addons](https://www.stremio-addons.com/)** - Stremio Addons / [Subreddit](https://www.reddit.com/r/StremioAddons/) / [Discord](https://discord.com/invite/zNRf6YF)
|
||||||
* ⭐ **[Viren070's Guides](https://guides.viren070.me/stremio)** or [Bye Sudo](https://rentry.co/bye-sudo) - Stremio Guides
|
* ⭐ **[Bye Sudo](https://bye.undi.rest/)** or [Viren070's Guides](https://guides.viren070.me/stremio) - Stremio Guides
|
||||||
* [Stremio Addon Manager](https://addon-manager.viren070.me/), [2](https://stremio-addon-manager.vercel.app/), [3](https://github.com/pancake3000/stremio-addon-manager) - Addons Manager
|
* [Stremio Addon Manager](https://addon-manager.viren070.me/), [2](https://stremio-addon-manager.vercel.app/), [3](https://github.com/pancake3000/stremio-addon-manager) - Addons Manager
|
||||||
* [Stremio Account Bootstrapper](https://stremio-account-bootstrapper.vercel.app/) - Easy Stremio Setup
|
* [Stremio Account Bootstrapper](https://stremio-account-bootstrapper.vercel.app/) - Easy Stremio Setup
|
||||||
* [Up Next](https://up-next.dontwanttos.top/) - Stremio Catalogs
|
* [Up Next](https://up-next.dontwanttos.top/) - Stremio Catalogs
|
||||||
|
@ -770,12 +768,11 @@
|
||||||
* ⭐ **[Heartive](https://heartive.pages.dev/)** - Movies / TV / Anime / Magnets on Files
|
* ⭐ **[Heartive](https://heartive.pages.dev/)** - Movies / TV / Anime / Magnets on Files
|
||||||
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / Sign-Up Required
|
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / Sign-Up Required
|
||||||
* ⭐ **[EZTV](https://eztvx.to/)** - TV / Anime
|
* ⭐ **[EZTV](https://eztvx.to/)** - TV / Anime
|
||||||
* ⭐ **[Video Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:gaoebxgop7j)**
|
* ⭐ **[Voyage](https://cobrakiki.lol/)**, **[Video Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:gaoebxgop7j)**, [RGShows](https://www.rgshows.me/torrent/) or [Broflix](https://broflix.ci/) - Multi-Site Search
|
||||||
* [RGShows](https://www.rgshows.me/torrent/) or [Broflix](https://broflix.ci/) - Multi-Site Search
|
|
||||||
* [TPB Movies](https://thepiratebay.org/search.php?q=top100:200) - Movies / TV / 4K / **Avoid Software / Games**
|
* [TPB Movies](https://thepiratebay.org/search.php?q=top100:200) - Movies / TV / 4K / **Avoid Software / Games**
|
||||||
|
* [LimeTorrents](https://www.limetorrents.lol/) - Movies / TV
|
||||||
* [Youplex Torrents](https://torrents.youplex.site/) - Movies / TV / Anime / 4K
|
* [Youplex Torrents](https://torrents.youplex.site/) - Movies / TV / Anime / 4K
|
||||||
* [MSearch](https://msearch.vercel.app/) - Movies / TV
|
* [MSearch](https://msearch.vercel.app/) - Movies / TV
|
||||||
* [GaoQing](https://gaoqing.fm/) - Movies / TV / Anime / [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
|
||||||
* [Play](http://127.0.0.1:43110/1PLAYgDQboKojowD3kwdb3CtWmWaokXvfp/), [2](https://proxy.zeronet.dev/1PLAYgDQboKojowD3kwdb3CtWmWaokXvfp/) - [ZeroNet Required](https://zeronet.io/) / Movies / TV
|
* [Play](http://127.0.0.1:43110/1PLAYgDQboKojowD3kwdb3CtWmWaokXvfp/), [2](https://proxy.zeronet.dev/1PLAYgDQboKojowD3kwdb3CtWmWaokXvfp/) - [ZeroNet Required](https://zeronet.io/) / Movies / TV
|
||||||
* [Vuze](https://www.vuze.com/content/) - Movies / TV
|
* [Vuze](https://www.vuze.com/content/) - Movies / TV
|
||||||
* [YAPs](https://yaps.therarbg.to/) - Movies / TV / [GitHub](https://github.com/the-rarbg/yaps)
|
* [YAPs](https://yaps.therarbg.to/) - Movies / TV / [GitHub](https://github.com/the-rarbg/yaps)
|
||||||
|
@ -818,7 +815,6 @@
|
||||||
* ⭐ **[Trakt](https://trakt.tv/)** - TV / Anime / Movies / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_trakt_tools)
|
* ⭐ **[Trakt](https://trakt.tv/)** - TV / Anime / Movies / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_trakt_tools)
|
||||||
* ⭐ **[Letterboxd](https://letterboxd.com/)** - Movies / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_letterboxd_tools)
|
* ⭐ **[Letterboxd](https://letterboxd.com/)** - Movies / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_letterboxd_tools)
|
||||||
* ⭐ **[ICheckMovies](https://www.icheckmovies.com/)** - Movies / List Database / [Enhanced](https://greasyfork.org/en/scripts/11541-icheckmovies-enhanced)
|
* ⭐ **[ICheckMovies](https://www.icheckmovies.com/)** - Movies / List Database / [Enhanced](https://greasyfork.org/en/scripts/11541-icheckmovies-enhanced)
|
||||||
* ⭐ **[FlickMetrix](https://flickmetrix.com/)** - Combine IMDb, Rotten Tomatoes & Letterboxd Ratings
|
|
||||||
* ⭐ **[RatS](https://github.com/StegSchreck/RatS)** - Transfer Ratings between Services
|
* ⭐ **[RatS](https://github.com/StegSchreck/RatS)** - Transfer Ratings between Services
|
||||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools) / [Discord](https://discord.com/invite/myanimelist)
|
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools) / [Discord](https://discord.com/invite/myanimelist)
|
||||||
* ⭐ **[AniList](https://anilist.co/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_anilist_tools) / [Discord](https://discord.com/invite/TF428cr)
|
* ⭐ **[AniList](https://anilist.co/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_anilist_tools) / [Discord](https://discord.com/invite/TF428cr)
|
||||||
|
@ -858,6 +854,7 @@
|
||||||
|
|
||||||
* 🌐 **[Movie Recs](https://rentry.co/MovieRecs)** - Movie Recommendation Sites / Tools
|
* 🌐 **[Movie Recs](https://rentry.co/MovieRecs)** - Movie Recommendation Sites / Tools
|
||||||
* ⭐ **[/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/)** - Movie, TV & Anime Recommendations
|
* ⭐ **[/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/)** - Movie, TV & Anime Recommendations
|
||||||
|
* ⭐ **[FlickMetrix](https://flickmetrix.com/)** - Combine IMDb, Rotten Tomatoes & Letterboxd Ratings
|
||||||
* ⭐ **[TasteDive](https://tastedive.com/)** - Recommendations
|
* ⭐ **[TasteDive](https://tastedive.com/)** - Recommendations
|
||||||
* ⭐ **[RatingsGraph](https://www.ratingraph.com/)** - Movie / TV Ratings Graphs
|
* ⭐ **[RatingsGraph](https://www.ratingraph.com/)** - Movie / TV Ratings Graphs
|
||||||
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Movie / TV / Anime Recommendation Guides
|
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Movie / TV / Anime Recommendation Guides
|
||||||
|
@ -916,7 +913,7 @@
|
||||||
* [Subshifter](https://subshifter.bitsnbites.eu/), [subsync](https://github.com/sc0ty/subsync), [ffsubsync](https://github.com/smacke/ffsubsync), [autosubsync-mpv](https://github.com/joaquintorres/autosubsync-mpv) or [autosubsync](https://github.com/oseiskar/autosubsync) - Sync Subtitles
|
* [Subshifter](https://subshifter.bitsnbites.eu/), [subsync](https://github.com/sc0ty/subsync), [ffsubsync](https://github.com/smacke/ffsubsync), [autosubsync-mpv](https://github.com/joaquintorres/autosubsync-mpv) or [autosubsync](https://github.com/oseiskar/autosubsync) - Sync Subtitles
|
||||||
* [asstosrt-wasm](https://sorz.github.io/asstosrt-wasm/) - ASS / SSA to SRT Subtitles Converter
|
* [asstosrt-wasm](https://sorz.github.io/asstosrt-wasm/) - ASS / SSA to SRT Subtitles Converter
|
||||||
* [WithSubtitles](https://withsubtitles.com/), [Revoldiv](https://revoldiv.com/), [pyTranscriber](https://pytranscriber.github.io/), [Auto-Subtitle](https://www.veed.io/tools/auto-subtitle-generator-online), [FreeSubtitlesAI](https://freesubtitles.ai/), [Whisper](https://huggingface.co/spaces/BatuhanYilmaz/Whisper-Auto-Subtitled-Video-Generator), [Vibe](https://thewh1teagle.github.io/vibe/) or [Turboscribe](https://turboscribe.ai/) - Video Transcribers
|
* [WithSubtitles](https://withsubtitles.com/), [Revoldiv](https://revoldiv.com/), [pyTranscriber](https://pytranscriber.github.io/), [Auto-Subtitle](https://www.veed.io/tools/auto-subtitle-generator-online), [FreeSubtitlesAI](https://freesubtitles.ai/), [Whisper](https://huggingface.co/spaces/BatuhanYilmaz/Whisper-Auto-Subtitled-Video-Generator), [Vibe](https://thewh1teagle.github.io/vibe/) or [Turboscribe](https://turboscribe.ai/) - Video Transcribers
|
||||||
* [TranslatesSubtitles](https://translatesubtitles.com/) or [GPTSubtitler](https://gptsubtitler.com/) - Translate Subtitles
|
* [TranslatesSubtitles](https://translatesubtitles.com/), [SRT AI Translator](https://github.com/passthesh3ll/srt-ai-translator) or [GPTSubtitler](https://gptsubtitler.com/) - Translate Subtitles
|
||||||
* [Auto Synced & Translated Dubs](https://github.com/ThioJoe/Auto-Synced-Translated-Dubs) - Create Translated Dubs
|
* [Auto Synced & Translated Dubs](https://github.com/ThioJoe/Auto-Synced-Translated-Dubs) - Create Translated Dubs
|
||||||
* [SoniTranslate](https://github.com/R3gm/SoniTranslate) - Video Translator
|
* [SoniTranslate](https://github.com/R3gm/SoniTranslate) - Video Translator
|
||||||
* [asbplayer](https://killergerbah.github.io/asbplayer/) - Subtitle Sentence Mining
|
* [asbplayer](https://killergerbah.github.io/asbplayer/) - Subtitle Sentence Mining
|
||||||
|
@ -970,8 +967,8 @@
|
||||||
* ⭐ **[Release Group Qualities](https://docs.google.com/spreadsheets/u/0/d/1xz5zqrBumfMtLGA4VMt1VtOyh-47HDTv_swIYktX6AQ/htmlview)** - Movie / TV Release Group Quality Indexes
|
* ⭐ **[Release Group Qualities](https://docs.google.com/spreadsheets/u/0/d/1xz5zqrBumfMtLGA4VMt1VtOyh-47HDTv_swIYktX6AQ/htmlview)** - Movie / TV Release Group Quality Indexes
|
||||||
* ⭐ **[AnimeFillerList](https://www.animefillerlist.com/)** or [AnimeFillerGuide](https://www.animefillerguide.com/) - Anime Filler Guides
|
* ⭐ **[AnimeFillerList](https://www.animefillerlist.com/)** or [AnimeFillerGuide](https://www.animefillerguide.com/) - Anime Filler Guides
|
||||||
* [mov-cli](https://mov-cli.github.io/) - Streaming / Downloading CLI / [Plugins](https://github.com/topics/mov-cli-plugin) / [GitHub](https://github.com/mov-cli/mov-cli)
|
* [mov-cli](https://mov-cli.github.io/) - Streaming / Downloading CLI / [Plugins](https://github.com/topics/mov-cli-plugin) / [GitHub](https://github.com/mov-cli/mov-cli)
|
||||||
|
* [IMDb-Scout-Mod](https://greasyfork.org/en/scripts/407284) - Add Streaming Site Results to IMDb
|
||||||
* [TG-FileStreamBot](https://github.com/EverythingSuckz/TG-FileStreamBot) - Telegram File Streaming
|
* [TG-FileStreamBot](https://github.com/EverythingSuckz/TG-FileStreamBot) - Telegram File Streaming
|
||||||
* [IMDb Scout](https://greasyfork.org/en/scripts/407284-imdb-scout-mod) - Add Stream Search Buttons to IMDb
|
|
||||||
* [FlickChart](https://www.flickchart.com/) - Rank Your Movies
|
* [FlickChart](https://www.flickchart.com/) - Rank Your Movies
|
||||||
* [Find Movie](https://find-movie.info/) or [QuoDB](https://www.quodb.com/) - Movie Quote Databases / Search
|
* [Find Movie](https://find-movie.info/) or [QuoDB](https://www.quodb.com/) - Movie Quote Databases / Search
|
||||||
* [SimplyScripts](https://www.simplyscripts.com/), [ScriptSlug](https://www.scriptslug.com/), [Scripts Onscreen](https://scripts-onscreen.com/), [Scripts.com](https://www.scripts.com/), [IMSDB](https://imsdb.com/), [DailyScript](https://www.dailyscript.com/) or [SubsLikeScript](https://subslikescript.com/) - Media Scripts
|
* [SimplyScripts](https://www.simplyscripts.com/), [ScriptSlug](https://www.scriptslug.com/), [Scripts Onscreen](https://scripts-onscreen.com/), [Scripts.com](https://www.scripts.com/), [IMSDB](https://imsdb.com/), [DailyScript](https://www.dailyscript.com/) or [SubsLikeScript](https://subslikescript.com/) - Media Scripts
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
"docs:dev": "vitepress dev docs/",
|
"docs:dev": "vitepress dev docs/",
|
||||||
"docs:preview": "vitepress preview docs/",
|
"docs:preview": "vitepress preview docs/",
|
||||||
"format": "prettier -w --cache --check .",
|
"format": "prettier -w --cache --check .",
|
||||||
|
"licenser": "deno run --allow-read jsr:@kt3k/license-checker@3.3.1/main",
|
||||||
"og:dev": "x-satori -t ./docs/.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev"
|
"og:dev": "x-satori -t ./docs/.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -31,6 +32,7 @@
|
||||||
"nitropack": "^2.11.6",
|
"nitropack": "^2.11.6",
|
||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
"pathe": "^2.0.1",
|
"pathe": "^2.0.1",
|
||||||
|
"reka-ui": "^2.1.1",
|
||||||
"unocss": "66.1.0-beta.3",
|
"unocss": "66.1.0-beta.3",
|
||||||
"vitepress": "^1.6.3",
|
"vitepress": "^1.6.3",
|
||||||
"vue": "^3.5.13",
|
"vue": "^3.5.13",
|
||||||
|
@ -44,6 +46,7 @@
|
||||||
"@iconify-json/heroicons-solid": "^1.2.0",
|
"@iconify-json/heroicons-solid": "^1.2.0",
|
||||||
"@iconify-json/lucide": "^1.2.10",
|
"@iconify-json/lucide": "^1.2.10",
|
||||||
"@iconify-json/mdi": "^1.2.1",
|
"@iconify-json/mdi": "^1.2.1",
|
||||||
|
"@iconify-json/ph": "^1.2.2",
|
||||||
"@iconify-json/simple-icons": "^1.2.12",
|
"@iconify-json/simple-icons": "^1.2.12",
|
||||||
"@iconify-json/twemoji": "^1.2.1",
|
"@iconify-json/twemoji": "^1.2.1",
|
||||||
"@iconify/utils": "^2.3.0",
|
"@iconify/utils": "^2.3.0",
|
||||||
|
|
129
pnpm-lock.yaml
generated
129
pnpm-lock.yaml
generated
|
@ -44,6 +44,9 @@ importers:
|
||||||
pathe:
|
pathe:
|
||||||
specifier: ^2.0.1
|
specifier: ^2.0.1
|
||||||
version: 2.0.1
|
version: 2.0.1
|
||||||
|
reka-ui:
|
||||||
|
specifier: ^2.1.1
|
||||||
|
version: 2.1.1(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))
|
||||||
unocss:
|
unocss:
|
||||||
specifier: 66.1.0-beta.3
|
specifier: 66.1.0-beta.3
|
||||||
version: 66.1.0-beta.3(vite@5.4.14(@types/node@20.16.12)(sass@1.85.1)(terser@5.39.0))(vue@3.5.13(typescript@5.8.2))
|
version: 66.1.0-beta.3(vite@5.4.14(@types/node@20.16.12)(sass@1.85.1)(terser@5.39.0))(vue@3.5.13(typescript@5.8.2))
|
||||||
|
@ -78,6 +81,9 @@ importers:
|
||||||
'@iconify-json/mdi':
|
'@iconify-json/mdi':
|
||||||
specifier: ^1.2.1
|
specifier: ^1.2.1
|
||||||
version: 1.2.1
|
version: 1.2.1
|
||||||
|
'@iconify-json/ph':
|
||||||
|
specifier: ^1.2.2
|
||||||
|
version: 1.2.2
|
||||||
'@iconify-json/simple-icons':
|
'@iconify-json/simple-icons':
|
||||||
specifier: ^1.2.12
|
specifier: ^1.2.12
|
||||||
version: 1.2.12
|
version: 1.2.12
|
||||||
|
@ -973,6 +979,18 @@ packages:
|
||||||
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
|
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
|
|
||||||
|
'@floating-ui/core@1.6.9':
|
||||||
|
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
|
||||||
|
|
||||||
|
'@floating-ui/dom@1.6.13':
|
||||||
|
resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
|
||||||
|
|
||||||
|
'@floating-ui/utils@0.2.9':
|
||||||
|
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
|
||||||
|
|
||||||
|
'@floating-ui/vue@1.1.6':
|
||||||
|
resolution: {integrity: sha512-XFlUzGHGv12zbgHNk5FN2mUB7ROul3oG2ENdTpWdE+qMFxyNxWSRmsoyhiEnpmabNm6WnUvR1OvJfUfN4ojC1A==}
|
||||||
|
|
||||||
'@fmhy/colors@0.0.11':
|
'@fmhy/colors@0.0.11':
|
||||||
resolution: {integrity: sha512-sNwSoifyPi+9s/wOXXl9B3qpcfMDNj4HtNlxtf6FQs2LUshcxx226KIJgnxRwawGmQq26Vck1dcJESC6s4QwiA==}
|
resolution: {integrity: sha512-sNwSoifyPi+9s/wOXXl9B3qpcfMDNj4HtNlxtf6FQs2LUshcxx226KIJgnxRwawGmQq26Vck1dcJESC6s4QwiA==}
|
||||||
engines: {node: '>=18.16.1'}
|
engines: {node: '>=18.16.1'}
|
||||||
|
@ -1012,6 +1030,9 @@ packages:
|
||||||
'@iconify-json/mdi@1.2.1':
|
'@iconify-json/mdi@1.2.1':
|
||||||
resolution: {integrity: sha512-dSkQU78gsZV6Yxnq78+LuX7jzeFC/5NAmz7O3rh558GimGFcwMVY/OtqRowIzjqJBmMmWZft7wkFV4TrwRXjlg==}
|
resolution: {integrity: sha512-dSkQU78gsZV6Yxnq78+LuX7jzeFC/5NAmz7O3rh558GimGFcwMVY/OtqRowIzjqJBmMmWZft7wkFV4TrwRXjlg==}
|
||||||
|
|
||||||
|
'@iconify-json/ph@1.2.2':
|
||||||
|
resolution: {integrity: sha512-PgkEZNtqa8hBGjHXQa4pMwZa93hmfu8FUSjs/nv4oUU6yLsgv+gh9nu28Kqi8Fz9CCVu4hj1MZs9/60J57IzFw==}
|
||||||
|
|
||||||
'@iconify-json/simple-icons@1.2.12':
|
'@iconify-json/simple-icons@1.2.12':
|
||||||
resolution: {integrity: sha512-lRNORrIdeLStShxAjN6FgXE1iMkaAgiAHZdP0P0GZecX91FVYW58uZnRSlXLlSx5cxMoELulkAAixybPA2g52g==}
|
resolution: {integrity: sha512-lRNORrIdeLStShxAjN6FgXE1iMkaAgiAHZdP0P0GZecX91FVYW58uZnRSlXLlSx5cxMoELulkAAixybPA2g52g==}
|
||||||
|
|
||||||
|
@ -1132,6 +1153,12 @@ packages:
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
|
'@internationalized/date@3.7.0':
|
||||||
|
resolution: {integrity: sha512-VJ5WS3fcVx0bejE/YHfbDKR/yawZgKqn/if+oEeLqNwBtPzVB06olkfcnojTmEMX+gTpH+FlQ69SHNitJ8/erQ==}
|
||||||
|
|
||||||
|
'@internationalized/number@3.6.0':
|
||||||
|
resolution: {integrity: sha512-PtrRcJVy7nw++wn4W2OuePQQfTqDzfusSuY1QTtui4wa7r+rGVtR75pO8CyKvHvzyQYi3Q1uO5sY0AsB4e65Bw==}
|
||||||
|
|
||||||
'@ioredis/commands@1.2.0':
|
'@ioredis/commands@1.2.0':
|
||||||
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
|
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
|
||||||
|
|
||||||
|
@ -1633,14 +1660,25 @@ packages:
|
||||||
'@speed-highlight/core@1.2.7':
|
'@speed-highlight/core@1.2.7':
|
||||||
resolution: {integrity: sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==}
|
resolution: {integrity: sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==}
|
||||||
|
|
||||||
|
'@swc/helpers@0.5.15':
|
||||||
|
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
||||||
|
|
||||||
'@tanstack/virtual-core@3.0.0':
|
'@tanstack/virtual-core@3.0.0':
|
||||||
resolution: {integrity: sha512-SYXOBTjJb05rXa2vl55TTwO40A6wKu0R5i1qQwhJYNDIqaIGF7D0HsLw+pJAyi2OvntlEIVusx3xtbbgSUi6zg==}
|
resolution: {integrity: sha512-SYXOBTjJb05rXa2vl55TTwO40A6wKu0R5i1qQwhJYNDIqaIGF7D0HsLw+pJAyi2OvntlEIVusx3xtbbgSUi6zg==}
|
||||||
|
|
||||||
|
'@tanstack/virtual-core@3.13.5':
|
||||||
|
resolution: {integrity: sha512-gMLNylxhJdUlfRR1G3U9rtuwUh2IjdrrniJIDcekVJN3/3i+bluvdMi3+eodnxzJq5nKnxnigo9h0lIpaqV6HQ==}
|
||||||
|
|
||||||
'@tanstack/vue-virtual@3.0.2':
|
'@tanstack/vue-virtual@3.0.2':
|
||||||
resolution: {integrity: sha512-1iFpX+yZswHuf4wrA6GU9yJ/YzQ/8SacABwqghwCkcwrkZbOPLlRSdOAqZ1WQ50SftmfhZpaiZl2KmpV7cgfMQ==}
|
resolution: {integrity: sha512-1iFpX+yZswHuf4wrA6GU9yJ/YzQ/8SacABwqghwCkcwrkZbOPLlRSdOAqZ1WQ50SftmfhZpaiZl2KmpV7cgfMQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vue: ^2.7.0 || ^3.0.0
|
vue: ^2.7.0 || ^3.0.0
|
||||||
|
|
||||||
|
'@tanstack/vue-virtual@3.13.5':
|
||||||
|
resolution: {integrity: sha512-1hhUA6CUjmKc5JDyKLcYOV6mI631FaKKxXh77Ja4UtIy6EOofYaLPk8vVgvK6vLMUSfHR2vI3ZpPY9ibyX60SA==}
|
||||||
|
peerDependencies:
|
||||||
|
vue: ^2.7.0 || ^3.0.0
|
||||||
|
|
||||||
'@types/estree@1.0.5':
|
'@types/estree@1.0.5':
|
||||||
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
|
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
|
||||||
|
|
||||||
|
@ -1965,6 +2003,10 @@ packages:
|
||||||
argparse@2.0.1:
|
argparse@2.0.1:
|
||||||
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
||||||
|
|
||||||
|
aria-hidden@1.2.4:
|
||||||
|
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
|
||||||
|
engines: {node: '>=10'}
|
||||||
|
|
||||||
as-table@1.0.55:
|
as-table@1.0.55:
|
||||||
resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==}
|
resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==}
|
||||||
|
|
||||||
|
@ -3343,6 +3385,11 @@ packages:
|
||||||
regex@6.0.1:
|
regex@6.0.1:
|
||||||
resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==}
|
resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==}
|
||||||
|
|
||||||
|
reka-ui@2.1.1:
|
||||||
|
resolution: {integrity: sha512-awvpQ041LPXAvf2uRVFwedsyz9SwsuoWlRql1fg4XimUCxEI2GOfHo6FIdL44dSPb/eG/gWbdGhoGHLlbX5gPA==}
|
||||||
|
peerDependencies:
|
||||||
|
vue: '>= 3.2.0'
|
||||||
|
|
||||||
require-directory@2.1.1:
|
require-directory@2.1.1:
|
||||||
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
@ -3934,6 +3981,17 @@ packages:
|
||||||
postcss:
|
postcss:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
|
vue-demi@0.14.10:
|
||||||
|
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
hasBin: true
|
||||||
|
peerDependencies:
|
||||||
|
'@vue/composition-api': ^1.0.0-rc.1
|
||||||
|
vue: ^3.0.0-0 || ^2.6.0
|
||||||
|
peerDependenciesMeta:
|
||||||
|
'@vue/composition-api':
|
||||||
|
optional: true
|
||||||
|
|
||||||
vue-flow-layout@0.1.1:
|
vue-flow-layout@0.1.1:
|
||||||
resolution: {integrity: sha512-JdgRRUVrN0Y2GosA0M68DEbKlXMqJ7FQgsK8CjQD2vxvNSqAU6PZEpi4cfcTVtfM2GVOMjHo7GKKLbXxOBqDqA==}
|
resolution: {integrity: sha512-JdgRRUVrN0Y2GosA0M68DEbKlXMqJ7FQgsK8CjQD2vxvNSqAU6PZEpi4cfcTVtfM2GVOMjHo7GKKLbXxOBqDqA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
@ -4688,6 +4746,26 @@ snapshots:
|
||||||
|
|
||||||
'@fastify/busboy@2.1.1': {}
|
'@fastify/busboy@2.1.1': {}
|
||||||
|
|
||||||
|
'@floating-ui/core@1.6.9':
|
||||||
|
dependencies:
|
||||||
|
'@floating-ui/utils': 0.2.9
|
||||||
|
|
||||||
|
'@floating-ui/dom@1.6.13':
|
||||||
|
dependencies:
|
||||||
|
'@floating-ui/core': 1.6.9
|
||||||
|
'@floating-ui/utils': 0.2.9
|
||||||
|
|
||||||
|
'@floating-ui/utils@0.2.9': {}
|
||||||
|
|
||||||
|
'@floating-ui/vue@1.1.6(vue@3.5.13(typescript@5.8.2))':
|
||||||
|
dependencies:
|
||||||
|
'@floating-ui/dom': 1.6.13
|
||||||
|
'@floating-ui/utils': 0.2.9
|
||||||
|
vue-demi: 0.14.10(vue@3.5.13(typescript@5.8.2))
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- '@vue/composition-api'
|
||||||
|
- vue
|
||||||
|
|
||||||
'@fmhy/colors@0.0.11': {}
|
'@fmhy/colors@0.0.11': {}
|
||||||
|
|
||||||
'@fmhy/components@0.0.3(typescript@5.8.2)(vitepress@1.6.3(@algolia/client-search@5.21.0)(@types/node@20.16.12)(change-case@5.4.4)(nprogress@0.2.0)(postcss@8.5.3)(sass@1.85.1)(terser@5.39.0)(typescript@5.8.2))(vue@3.5.13(typescript@5.8.2))':
|
'@fmhy/components@0.0.3(typescript@5.8.2)(vitepress@1.6.3(@algolia/client-search@5.21.0)(@types/node@20.16.12)(change-case@5.4.4)(nprogress@0.2.0)(postcss@8.5.3)(sass@1.85.1)(terser@5.39.0)(typescript@5.8.2))(vue@3.5.13(typescript@5.8.2))':
|
||||||
|
@ -4731,6 +4809,10 @@ snapshots:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@iconify/types': 2.0.0
|
'@iconify/types': 2.0.0
|
||||||
|
|
||||||
|
'@iconify-json/ph@1.2.2':
|
||||||
|
dependencies:
|
||||||
|
'@iconify/types': 2.0.0
|
||||||
|
|
||||||
'@iconify-json/simple-icons@1.2.12':
|
'@iconify-json/simple-icons@1.2.12':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@iconify/types': 2.0.0
|
'@iconify/types': 2.0.0
|
||||||
|
@ -4833,6 +4915,14 @@ snapshots:
|
||||||
'@img/sharp-win32-x64@0.33.5':
|
'@img/sharp-win32-x64@0.33.5':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
|
'@internationalized/date@3.7.0':
|
||||||
|
dependencies:
|
||||||
|
'@swc/helpers': 0.5.15
|
||||||
|
|
||||||
|
'@internationalized/number@3.6.0':
|
||||||
|
dependencies:
|
||||||
|
'@swc/helpers': 0.5.15
|
||||||
|
|
||||||
'@ioredis/commands@1.2.0': {}
|
'@ioredis/commands@1.2.0': {}
|
||||||
|
|
||||||
'@isaacs/cliui@8.0.2':
|
'@isaacs/cliui@8.0.2':
|
||||||
|
@ -5272,13 +5362,24 @@ snapshots:
|
||||||
|
|
||||||
'@speed-highlight/core@1.2.7': {}
|
'@speed-highlight/core@1.2.7': {}
|
||||||
|
|
||||||
|
'@swc/helpers@0.5.15':
|
||||||
|
dependencies:
|
||||||
|
tslib: 2.8.1
|
||||||
|
|
||||||
'@tanstack/virtual-core@3.0.0': {}
|
'@tanstack/virtual-core@3.0.0': {}
|
||||||
|
|
||||||
|
'@tanstack/virtual-core@3.13.5': {}
|
||||||
|
|
||||||
'@tanstack/vue-virtual@3.0.2(vue@3.5.13(typescript@5.8.2))':
|
'@tanstack/vue-virtual@3.0.2(vue@3.5.13(typescript@5.8.2))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@tanstack/virtual-core': 3.0.0
|
'@tanstack/virtual-core': 3.0.0
|
||||||
vue: 3.5.13(typescript@5.8.2)
|
vue: 3.5.13(typescript@5.8.2)
|
||||||
|
|
||||||
|
'@tanstack/vue-virtual@3.13.5(vue@3.5.13(typescript@5.8.2))':
|
||||||
|
dependencies:
|
||||||
|
'@tanstack/virtual-core': 3.13.5
|
||||||
|
vue: 3.5.13(typescript@5.8.2)
|
||||||
|
|
||||||
'@types/estree@1.0.5': {}
|
'@types/estree@1.0.5': {}
|
||||||
|
|
||||||
'@types/estree@1.0.6': {}
|
'@types/estree@1.0.6': {}
|
||||||
|
@ -5690,6 +5791,10 @@ snapshots:
|
||||||
|
|
||||||
argparse@2.0.1: {}
|
argparse@2.0.1: {}
|
||||||
|
|
||||||
|
aria-hidden@1.2.4:
|
||||||
|
dependencies:
|
||||||
|
tslib: 2.8.1
|
||||||
|
|
||||||
as-table@1.0.55:
|
as-table@1.0.55:
|
||||||
dependencies:
|
dependencies:
|
||||||
printable-characters: 1.0.42
|
printable-characters: 1.0.42
|
||||||
|
@ -7126,6 +7231,23 @@ snapshots:
|
||||||
dependencies:
|
dependencies:
|
||||||
regex-utilities: 2.3.0
|
regex-utilities: 2.3.0
|
||||||
|
|
||||||
|
reka-ui@2.1.1(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)):
|
||||||
|
dependencies:
|
||||||
|
'@floating-ui/dom': 1.6.13
|
||||||
|
'@floating-ui/vue': 1.1.6(vue@3.5.13(typescript@5.8.2))
|
||||||
|
'@internationalized/date': 3.7.0
|
||||||
|
'@internationalized/number': 3.6.0
|
||||||
|
'@tanstack/vue-virtual': 3.13.5(vue@3.5.13(typescript@5.8.2))
|
||||||
|
'@vueuse/core': 12.8.2(typescript@5.8.2)
|
||||||
|
'@vueuse/shared': 12.8.2(typescript@5.8.2)
|
||||||
|
aria-hidden: 1.2.4
|
||||||
|
defu: 6.1.4
|
||||||
|
ohash: 2.0.11
|
||||||
|
vue: 3.5.13(typescript@5.8.2)
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- '@vue/composition-api'
|
||||||
|
- typescript
|
||||||
|
|
||||||
require-directory@2.1.1: {}
|
require-directory@2.1.1: {}
|
||||||
|
|
||||||
require-from-string@2.0.2: {}
|
require-from-string@2.0.2: {}
|
||||||
|
@ -7498,8 +7620,7 @@ snapshots:
|
||||||
|
|
||||||
trim-lines@3.0.1: {}
|
trim-lines@3.0.1: {}
|
||||||
|
|
||||||
tslib@2.8.1:
|
tslib@2.8.1: {}
|
||||||
optional: true
|
|
||||||
|
|
||||||
type-fest@4.37.0: {}
|
type-fest@4.37.0: {}
|
||||||
|
|
||||||
|
@ -7818,6 +7939,10 @@ snapshots:
|
||||||
- typescript
|
- typescript
|
||||||
- universal-cookie
|
- universal-cookie
|
||||||
|
|
||||||
|
vue-demi@0.14.10(vue@3.5.13(typescript@5.8.2)):
|
||||||
|
dependencies:
|
||||||
|
vue: 3.5.13(typescript@5.8.2)
|
||||||
|
|
||||||
vue-flow-layout@0.1.1(vue@3.5.13(typescript@5.8.2)):
|
vue-flow-layout@0.1.1(vue@3.5.13(typescript@5.8.2)):
|
||||||
dependencies:
|
dependencies:
|
||||||
vue: 3.5.13(typescript@5.8.2)
|
vue: 3.5.13(typescript@5.8.2)
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import type { Rule } from 'unocss'
|
||||||
import { colors, shortcuts } from '@fmhy/colors'
|
import { colors, shortcuts } from '@fmhy/colors'
|
||||||
import {
|
import {
|
||||||
defineConfig,
|
defineConfig,
|
||||||
|
@ -23,6 +24,38 @@ import {
|
||||||
transformerDirectives
|
transformerDirectives
|
||||||
} from 'unocss'
|
} from 'unocss'
|
||||||
|
|
||||||
|
const colorScales = [
|
||||||
|
'50',
|
||||||
|
'100',
|
||||||
|
'200',
|
||||||
|
'300',
|
||||||
|
'400',
|
||||||
|
'500',
|
||||||
|
'600',
|
||||||
|
'700',
|
||||||
|
'800',
|
||||||
|
'900',
|
||||||
|
'950'
|
||||||
|
] as const
|
||||||
|
|
||||||
|
const colorPattern = Object.keys(colors).join('|')
|
||||||
|
const createColorRules = (type: 'text' | 'bg' | 'border'): Rule[] => {
|
||||||
|
const property =
|
||||||
|
type === 'text'
|
||||||
|
? 'color'
|
||||||
|
: type === 'bg'
|
||||||
|
? 'background-color'
|
||||||
|
: 'border-color'
|
||||||
|
|
||||||
|
return colorScales.map(
|
||||||
|
(scale) =>
|
||||||
|
[
|
||||||
|
new RegExp(`^${type}-(${colorPattern})-${scale}$`),
|
||||||
|
([, color]) => ({ [property]: colors[color][scale] })
|
||||||
|
] as const
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
content: {
|
content: {
|
||||||
filesystem: ['.vitepress/config.mts', '.vitepress/constants.ts']
|
filesystem: ['.vitepress/config.mts', '.vitepress/constants.ts']
|
||||||
|
@ -39,6 +72,30 @@ export default defineConfig({
|
||||||
div: 'var(--vp-c-divider)'
|
div: 'var(--vp-c-divider)'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
rules: [
|
||||||
|
// Brand color utilities
|
||||||
|
[
|
||||||
|
/^brand-(\d+)$/,
|
||||||
|
([, d]) => ({ color: `var(--vp-c-brand-${d})` })
|
||||||
|
] as const,
|
||||||
|
[
|
||||||
|
/^bg-brand-(\d+)$/,
|
||||||
|
([, d]) => ({ 'background-color': `var(--vp-c-brand-${d})` })
|
||||||
|
] as const,
|
||||||
|
[
|
||||||
|
/^border-brand-(\d+)$/,
|
||||||
|
([, d]) => ({ 'border-color': `var(--vp-c-brand-${d})` })
|
||||||
|
] as const,
|
||||||
|
[
|
||||||
|
/^text-brand-(\d+)$/,
|
||||||
|
([, d]) => ({ color: `var(--vp-c-brand-${d})` })
|
||||||
|
] as const,
|
||||||
|
|
||||||
|
// Color scale utilities
|
||||||
|
...createColorRules('text'),
|
||||||
|
...createColorRules('bg'),
|
||||||
|
...createColorRules('border')
|
||||||
|
],
|
||||||
presets: [
|
presets: [
|
||||||
presetUno(),
|
presetUno(),
|
||||||
presetAttributify(),
|
presetAttributify(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue