mirror of
https://github.com/fmhy/edit.git
synced 2025-08-06 19:22:13 +10:00
Merge branch 'main' into patch-4
This commit is contained in:
commit
1b299cc00d
38 changed files with 1032 additions and 590 deletions
|
@ -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()"
|
|
||||||
>
|
>
|
||||||
<span
|
<div class="flex items-start md:items-center gap-3">
|
||||||
:class="
|
<div class="pt-1 md:pt-0">
|
||||||
isCardShown === false ? `i-lucide:mail mr-2` : `i-lucide:mail-x mr-2`
|
<div
|
||||||
"
|
class="w-10 h-10 rounded-full flex items-center justify-center bg-brand-500 dark:bg-brand-400"
|
||||||
/>
|
>
|
||||||
<span>Send Feedback</span>
|
<span
|
||||||
</button>
|
:class="
|
||||||
|
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`
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
</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>
|
||||||
|
</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+');
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
* [Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Discord Nitro / Boost Ads
|
* [Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Discord Nitro / Boost Ads
|
||||||
* [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/), [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html), [Popup Blocker (strict)](https://github.com/schomery/popup-blocker) or [PopupBlocker](https://github.com/AdguardTeam/PopupBlocker) - Popup / New Tab Blockers
|
* [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/), [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html), [Popup Blocker (strict)](https://github.com/schomery/popup-blocker) or [PopupBlocker](https://github.com/AdguardTeam/PopupBlocker) - Popup / New Tab Blockers
|
||||||
* [AdGuard](https://github.com/AdguardTeam/AdguardBrowserExtension) - Adblocker
|
* [AdGuard](https://github.com/AdguardTeam/AdguardBrowserExtension) - Adblocker
|
||||||
|
* [Zen](https://zenprivacy.net/) - System-Wide Adblocker / [Discord](https://discord.com/invite/jSzEwby7JY) / [GitHub](https://github.com/anfragment/zen)
|
||||||
* [BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay) - Hide Website Overlays
|
* [BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay) - Hide Website Overlays
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -43,7 +44,7 @@
|
||||||
* ↪️ **[DNS Filters / Blocklists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)**
|
* ↪️ **[DNS Filters / Blocklists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)**
|
||||||
* ↪️ **[Free DNS Resolvers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_resolvers)**
|
* ↪️ **[Free DNS Resolvers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_resolvers)**
|
||||||
* ⭐ **[Pi-Hole](https://pi-hole.net/)** - Self-Hosted DNS Adblocking / [Subreddit](https://reddit.com/r/pihole/) / [X](https://x.com/The_Pi_Hole)
|
* ⭐ **[Pi-Hole](https://pi-hole.net/)** - Self-Hosted DNS Adblocking / [Subreddit](https://reddit.com/r/pihole/) / [X](https://x.com/The_Pi_Hole)
|
||||||
* ⭐ **Pi-Hole Tools** - [WSL1](https://github.com/DesktopECHO/Pi-Hole-for-WSL1) / [Filters](https://firebog.net/) / [Anti-Telemetry](https://github.com/MoralCode/pihole-antitelemetry) / [Tray App](https://github.com/PinchToDebug/Pihole-Tray/)
|
* ⭐ **Pi-Hole Tools** - [Filters](https://firebog.net/) / [Anti-Telemetry](https://github.com/MoralCode/pihole-antitelemetry) / [Tray App](https://github.com/PinchToDebug/Pihole-Tray/)
|
||||||
* ⭐ **[AdGuard Home](https://adguard.com/en/adguard-home/overview.html)** - Self-Hosted DNS Adblocking / [Balena-Adguard](https://github.com/klutchell/balena-adguard) / [GitHub](https://github.com/AdguardTeam/AdGuardHome) / [X](https://x.com/adguard) / [Telegram](https://t.me/adguarden) / [Subreddit](https://reddit.com/r/Adguard)
|
* ⭐ **[AdGuard Home](https://adguard.com/en/adguard-home/overview.html)** - Self-Hosted DNS Adblocking / [Balena-Adguard](https://github.com/klutchell/balena-adguard) / [GitHub](https://github.com/AdguardTeam/AdGuardHome) / [X](https://x.com/adguard) / [Telegram](https://t.me/adguarden) / [Subreddit](https://reddit.com/r/Adguard)
|
||||||
* ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking / Filtering / [Extension](https://mullvad.net/en/download/browser/extension) / [GitHub](https://github.com/mullvad)
|
* ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking / Filtering / [Extension](https://mullvad.net/en/download/browser/extension) / [GitHub](https://github.com/mullvad)
|
||||||
* ⭐ **[YogaDNS](https://yogadns.com/)** - Custom DNS Client for Windows
|
* ⭐ **[YogaDNS](https://yogadns.com/)** - Custom DNS Client for Windows
|
||||||
|
@ -51,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)
|
||||||
|
@ -125,13 +126,14 @@
|
||||||
* ↪️ **[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
|
||||||
* [Agent DVR](https://www.ispyconnect.com/) / [Subreddit](https://www.reddit.com/r/ispyconnect/), [Frigate](https://frigate.video/) / [GitHub](https://github.com/blakeblackshear/frigate), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) / [Discord](https://discord.gg/tHYyP9k66q) / [GitHub](https://github.com/ZoneMinder/ZoneMinder/) - Security Camera Systems
|
* [Agent DVR](https://www.ispyconnect.com/) / [Subreddit](https://www.reddit.com/r/ispyconnect/), [Frigate](https://frigate.video/) / [GitHub](https://github.com/blakeblackshear/frigate), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) / [Discord](https://discord.gg/tHYyP9k66q) / [GitHub](https://github.com/ZoneMinder/ZoneMinder/) - Security Camera Systems
|
||||||
* [Team Elite](https://www.te-home.net/) or [Technet24](https://technet24.ir/) - Security Software / [Translator](https://github.com/FilipePS/Traduzir-paginas-web)
|
* [Team Elite](https://www.te-home.net/) or [Technet24](https://technet24.ir/) - Security Software / [Translator](https://github.com/FilipePS/Traduzir-paginas-web)
|
||||||
|
* [YourDigitalRights](https://yourdigitalrights.org/) - Get Organizations to Delete Your Personal Data
|
||||||
* [Big Ass Data Broker Opt-Out List](https://github.com/yaelwrites/Big-Ass-Data-Broker-Opt-Out-List) - List of Data Broker Opt-Out Resources
|
* [Big Ass Data Broker Opt-Out List](https://github.com/yaelwrites/Big-Ass-Data-Broker-Opt-Out-List) - List of Data Broker Opt-Out Resources
|
||||||
* [Surfer Protocol](https://surferprotocol.org/) - Multi-platform User Data Exporter / [Discord](https://discord.gg/5KQkWApkYC) / [GitHub](https://github.com/Surfer-Org/Protocol)
|
* [Surfer Protocol](https://surferprotocol.org/) - Multi-platform User Data Exporter / [Discord](https://discord.gg/5KQkWApkYC) / [GitHub](https://github.com/Surfer-Org/Protocol)
|
||||||
* [F-Secure Identity Theft Checker](https://www.f-secure.com/en/identity-theft-checker) - Identity Theft Check
|
* [F-Secure Identity Theft Checker](https://www.f-secure.com/en/identity-theft-checker) - Identity Theft Check
|
||||||
|
@ -166,9 +168,9 @@
|
||||||
|
|
||||||
## ▷ Network Security
|
## ▷ Network Security
|
||||||
|
|
||||||
* ⭐ **[nekoray](https://matsuridayo.github.io/)** - DIY Privacy Network / [Telegram](https://t.me/Matsuridayo) / [GitHub](https://github.com/MatsuriDayo/nekoray)
|
* ⭐ **[v2rayN](https://github.com/2dust/v2rayN)** - DIY Privacy Network
|
||||||
* ⭐ **[Safing Portmaster](https://safing.io/)** - Network Monitor / DNS Resolver / Firewall / [Discord](https://discord.com/invite/safing) / [GitHub](https://github.com/safing)
|
* ⭐ **[Safing Portmaster](https://safing.io/)** - Network Monitor / DNS Resolver / Firewall / [Discord](https://discord.com/invite/safing) / [GitHub](https://github.com/safing)
|
||||||
* ⭐ **[DNSveil](https://msasanmh.github.io/DNSveil/)** - DNS Client / [Guide](https://rentry.co/SecureDNSClient) / [GitHub](https://github.com/msasanmh/DNSveil)
|
* ⭐ **[DNSveil](https://msasanmh.github.io/DNSveil/)** - DNS Client / [Guide](https://rentry.org/DNSveil) / [GitHub](https://github.com/msasanmh/DNSveil)
|
||||||
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P) / [GitLab](https://i2pgit.org/)
|
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P) / [GitLab](https://i2pgit.org/)
|
||||||
* [XrayUIGroup](https://github.com/MHSanaei/3x-ui) - DIY Privacy Network / [Telegram](https://t.me/XrayUI)
|
* [XrayUIGroup](https://github.com/MHSanaei/3x-ui) - DIY Privacy Network / [Telegram](https://t.me/XrayUI)
|
||||||
* [Fort](https://github.com/tnodir/fort) - Firewall
|
* [Fort](https://github.com/tnodir/fort) - Firewall
|
||||||
|
@ -200,10 +202,10 @@
|
||||||
* ↪️ **[Encrypted XMPP Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_xmpp_servers)**
|
* ↪️ **[Encrypted XMPP Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_xmpp_servers)**
|
||||||
* ↪️ **[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)
|
||||||
* ⭐ **[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
|
* ⭐ **[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
|
||||||
* [JustDeleteMe](https://justdeleteme.xyz/) - Find / Terminate Old Accounts / [GitHub](https://github.com/jdm-contrib/jdm)
|
|
||||||
* [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
|
||||||
* [DNS Jumper](https://www.sordum.org/7952/dns-jumper-v2-3/) - DNS Switcher
|
* [DNS Jumper](https://www.sordum.org/7952/dns-jumper-v2-3/) - DNS Switcher
|
||||||
* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat
|
* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat
|
||||||
|
@ -334,7 +336,6 @@
|
||||||
* ⭐ **[AirVPN](https://airvpn.org/)** - Paid / [.onion](https://airvpn3epnw2fnsbx5x2ppzjs6vxtdarldas7wjyqvhscj7x43fxylqd.onion/) / [GitHub](https://github.com/AirVPN) / [GitLab](https://gitlab.com/AirVPN)
|
* ⭐ **[AirVPN](https://airvpn.org/)** - Paid / [.onion](https://airvpn3epnw2fnsbx5x2ppzjs6vxtdarldas7wjyqvhscj7x43fxylqd.onion/) / [GitHub](https://github.com/AirVPN) / [GitLab](https://gitlab.com/AirVPN)
|
||||||
* [Mullvad VPN](https://mullvad.net/) - Paid / [No-Logging](https://mullvad.net/en/blog/2023/4/20/mullvad-vpn-was-subject-to-a-search-warrant-customer-data-not-compromised/) / [Port Warning](https://mullvad.net/en/blog/2023/5/29/removing-the-support-for-forwarded-ports/) / [GitHub](https://github.com/mullvad)
|
* [Mullvad VPN](https://mullvad.net/) - Paid / [No-Logging](https://mullvad.net/en/blog/2023/4/20/mullvad-vpn-was-subject-to-a-search-warrant-customer-data-not-compromised/) / [Port Warning](https://mullvad.net/en/blog/2023/5/29/removing-the-support-for-forwarded-ports/) / [GitHub](https://github.com/mullvad)
|
||||||
* [IVPN](https://www.ivpn.net/) - Paid / [No Logging](https://www.ivpn.net/knowledgebase/privacy/how-do-we-react-when-requested-by-an-authority-for-information-relating-to-a-customer/) / [Port Warning](https://www.ivpn.net/blog/gradual-removal-of-port-forwarding/) / [Subreddit](https://www.reddit.com/r/IVPN/) / [GitHub](https://github.com/ivpn)
|
* [IVPN](https://www.ivpn.net/) - Paid / [No Logging](https://www.ivpn.net/knowledgebase/privacy/how-do-we-react-when-requested-by-an-authority-for-information-relating-to-a-customer/) / [Port Warning](https://www.ivpn.net/blog/gradual-removal-of-port-forwarding/) / [Subreddit](https://www.reddit.com/r/IVPN/) / [GitHub](https://github.com/ivpn)
|
||||||
* [NYM](https://nym.com/) - Free / Make New Accounts for Access Codes / [GitHub](https://github.com/nymtech/nym)
|
|
||||||
* [PrivadoVPN](https://privadovpn.com/) - Free / 10GB Monthly / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail)
|
* [PrivadoVPN](https://privadovpn.com/) - Free / 10GB Monthly / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail)
|
||||||
* [Bitmask](https://bitmask.net/) - Free / Unlimited / [GitLab](https://0xacab.org/leap/bitmask-vpn), [2](https://0xacab.org/leap/bitmask_android)
|
* [Bitmask](https://bitmask.net/) - Free / Unlimited / [GitLab](https://0xacab.org/leap/bitmask-vpn), [2](https://0xacab.org/leap/bitmask_android)
|
||||||
|
|
||||||
|
@ -398,7 +399,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
|
||||||
|
|
109
docs/ai.md
109
docs/ai.md
|
@ -9,39 +9,38 @@
|
||||||
## ▷ 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 / No Sign-Up / [/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 / No Sign-Up
|
* ⭐ **[Qwen](https://chat.qwen.ai/)** - Alibaba's Chatbots / Qwen2.5-Max / QwQ-32B
|
||||||
* ⭐ **[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)
|
* ⭐ **[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)
|
||||||
* ⭐ **[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)
|
* ⭐ **[Grok](https://grok.com/)** - X.com Chatbot / Grok 2 (Unlimited) / Grok 3 (20 Per Two Hours) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4o / OpenAI o1 / No Sign-Up / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
|
* ⭐ **[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 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 [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
|
||||||
* [Grok](https://grok.com/) - X.com Chatbot / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
* [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 / DeepSeek-R1-32b / Multiple Chatbots
|
||||||
* [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
|
|
||||||
* [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
|
||||||
* [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
|
||||||
* [NVIDIA NIM](https://build.nvidia.com/) - Llama 3 Chatbot / No Sign-Up
|
* [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)
|
||||||
* [MiniMax AI](https://chat.minimax.io/) - 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 / No Sign-Up / [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)
|
||||||
* [PrivateGPT](https://privategpt.dev/) / [Discord](https://discord.com/invite/bK6mRVpErU) / [GitHub](https://github.com/zylon-ai/private-gpt), [NotebookLM](https://notebooklm.google/), [Onyx](https://www.onyx.app/) / [Discord](https://discord.gg/VKwU6Wr2) / [GitHub](https://github.com/onyx-dot-app/onyx) or [DocsGPT](https://www.docsgpt.cloud/) / [Discord](https://discord.gg/VKwU6Wr2) / [GitHub](https://github.com/arc53/DocsGPT) - Document Chatbots / Note-Taking
|
* [PrivateGPT](https://privategpt.dev/) / [Discord](https://discord.com/invite/bK6mRVpErU) / [GitHub](https://github.com/zylon-ai/private-gpt), [NotebookLM](https://notebooklm.google/), [Onyx](https://www.onyx.app/) / [Discord](https://discord.gg/VKwU6Wr2) / [GitHub](https://github.com/onyx-dot-app/onyx) or [DocsGPT](https://www.docsgpt.cloud/) / [Discord](https://discord.gg/VKwU6Wr2) / [GitHub](https://github.com/arc53/DocsGPT) - Document Chatbots / Note-Taking
|
||||||
|
|
||||||
|
@ -52,21 +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.app/)** - 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
|
||||||
* [Felo](https://felo.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 / 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)
|
||||||
|
@ -108,12 +108,14 @@
|
||||||
* [Llama + SillyTavern](https://rentry.org/llama_v2_sillytavern) - Llama + SillyTavern Roleplaying Setup Guide / No Sign-Up
|
* [Llama + SillyTavern](https://rentry.org/llama_v2_sillytavern) - Llama + SillyTavern Roleplaying Setup Guide / No Sign-Up
|
||||||
* [KoboldAI](https://koboldai.com/) - GUI for Roleplaying Chatbots / No Sign-Up / [Discord](https://discord.com/invite/XuQWadgU9k) / [GitHub](https://github.com/henk717/KoboldAI)
|
* [KoboldAI](https://koboldai.com/) - GUI for Roleplaying Chatbots / No Sign-Up / [Discord](https://discord.com/invite/XuQWadgU9k) / [GitHub](https://github.com/henk717/KoboldAI)
|
||||||
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots / [Discord](https://discord.com/invite/4wallai) / [Subreddit](https://www.reddit.com/r/4WallAI/)
|
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots / [Discord](https://discord.com/invite/4wallai) / [Subreddit](https://www.reddit.com/r/4WallAI/)
|
||||||
|
* [WyvernChat](https://app.wyvern.chat/) - Roleplaying Chatbots
|
||||||
* [JanitorAI](https://janitorai.com/) - Roleplaying Chatbots / Some NSFW
|
* [JanitorAI](https://janitorai.com/) - Roleplaying Chatbots / Some NSFW
|
||||||
* [FictionLab](https://fictionlab.ai/) - Roleplaying / Story Chatbot / [Discord](https://discord.com/invite/SKcb2C7HjH)
|
* [FictionLab](https://fictionlab.ai/) - Roleplaying / Story Chatbot / [Discord](https://discord.com/invite/SKcb2C7HjH)
|
||||||
* [TavernAI](https://tavernai.net/) - Roleplaying / Story Chatbot / [Colab](https://colab.research.google.com/github/vrihatgan/TavernAI/blob/main/colab/colab.ipynb) / [Discord](https://discord.gg/zmK2gmr45t) / [GitHub](https://github.com/TavernAI/TavernAI)
|
* [TavernAI](https://tavernai.net/) - Roleplaying / Story Chatbot / [Colab](https://colab.research.google.com/github/vrihatgan/TavernAI/blob/main/colab/colab.ipynb) / [Discord](https://discord.gg/zmK2gmr45t) / [GitHub](https://github.com/TavernAI/TavernAI)
|
||||||
* [AI Dungeon](https://aidungeon.com/) - Roleplaying / Story Chatbot / No Sign-Up / [Subreddit](https://www.reddit.com/r/AIDungeon/) / [Discord](https://discord.com/invite/HB2YBZYjyf)
|
* [AI Dungeon](https://aidungeon.com/) - Roleplaying / Story Chatbot / No Sign-Up / [Subreddit](https://www.reddit.com/r/AIDungeon/) / [Discord](https://discord.com/invite/HB2YBZYjyf)
|
||||||
* [Spellbound](https://www.tryspellbound.com/) - Roleplaying / Story Chatbot / No Sign-Up / [Discord](https://discord.com/invite/spellbound)
|
* [Spellbound](https://www.tryspellbound.com/) - Roleplaying / Story Chatbot / No Sign-Up / [Discord](https://discord.com/invite/spellbound)
|
||||||
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) (No Sign-Up) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) / [Discord](https://discord.com/invite/DAn38sA8Qj) - Chatbot Builders
|
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) (No Sign-Up) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) / [Discord](https://discord.com/invite/DAn38sA8Qj) - Chatbot Builders
|
||||||
|
* [Crossing the Uncanny Valley](https://www.sesame.com/research/crossing_the_uncanny_valley_of_voice#demo) - Realistic AI Voice Chat
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -125,7 +127,7 @@
|
||||||
* ⭐ **[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)
|
||||||
* [Devv](https://devv.ai/) - Coding Search Engine / No Sign-Up / [GitHub](https://github.com/devv-ai/devv)
|
* [Devv](https://devv.ai/) - Coding Search Engine / [GitHub](https://github.com/devv-ai/devv)
|
||||||
* [Telosys](https://www.telosys.org/) - Code Generator / No Sign-Up / [Source Code](https://www.telosys.org/sources.html)
|
* [Telosys](https://www.telosys.org/) - Code Generator / No Sign-Up / [Source Code](https://www.telosys.org/sources.html)
|
||||||
* [Llama Coder](https://llamacoder.together.ai/) - Code Generator / No Sign-Up / [GitHub](https://github.com/Nutlope/llamacoder)
|
* [Llama Coder](https://llamacoder.together.ai/) - Code Generator / No Sign-Up / [GitHub](https://github.com/Nutlope/llamacoder)
|
||||||
* [imgcook](https://imgcook.com) - Coding AI / No Sign-Up / [GitHub](https://github.com/imgcook/imgcook)
|
* [imgcook](https://imgcook.com) - Coding AI / No Sign-Up / [GitHub](https://github.com/imgcook/imgcook)
|
||||||
|
@ -153,8 +155,9 @@
|
||||||
|
|
||||||
* 🌐 **[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
|
||||||
* [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
|
||||||
* [LLM](https://llm.datasette.io/) - LLM CLI / [Discord](https://discord.com/invite/RKAH4b8TvE) / [GitHub](https://github.com/simonw/llm)
|
* [LLM](https://llm.datasette.io/) - LLM CLI / [Discord](https://discord.com/invite/RKAH4b8TvE) / [GitHub](https://github.com/simonw/llm)
|
||||||
|
@ -173,7 +176,7 @@
|
||||||
* [screenpipe](https://screenpi.pe/) - AI Screen Recorder / No Sign-Up / [Discord](https://discord.gg/dU9EBuw7Uq) / [GitHub](https://github.com/mediar-ai/screenpipe)
|
* [screenpipe](https://screenpi.pe/) - AI Screen Recorder / No Sign-Up / [Discord](https://discord.gg/dU9EBuw7Uq) / [GitHub](https://github.com/mediar-ai/screenpipe)
|
||||||
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats / [GitHub](https://github.com/pionxzh/chatgpt-exporter)
|
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats / [GitHub](https://github.com/pionxzh/chatgpt-exporter)
|
||||||
* [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes
|
* [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes
|
||||||
* [LLM Model VRAM Calculator](https://huggingface.co/spaces/NyxKrage/LLM-Model-VRAM-Calculator) - LLM VRAM Calculator
|
* [CanIRunThisLLM](https://www.canirunthisllm.net/) or [LLM Model VRAM Calculator](https://huggingface.co/spaces/NyxKrage/LLM-Model-VRAM-Calculator) - LLM Requirement Calculators
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -220,7 +223,6 @@
|
||||||
## ▷ AI Benchmarks
|
## ▷ AI Benchmarks
|
||||||
|
|
||||||
* ⭐ **[Chatbot Arena](https://lmarena.ai/)** - Chatbot Leaderboards / Benchmarks / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat)
|
* ⭐ **[Chatbot Arena](https://lmarena.ai/)** - Chatbot Leaderboards / Benchmarks / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||||
* ⭐ **[Open LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)** - Chatbot Leaderboards / Benchmarks
|
|
||||||
* ⭐ **[LiveBench](https://livebench.ai/)** - Chatbot Leaderboards / Benchmarks / [GitHub](https://github.com/livebench/livebench)
|
* ⭐ **[LiveBench](https://livebench.ai/)** - Chatbot Leaderboards / Benchmarks / [GitHub](https://github.com/livebench/livebench)
|
||||||
* [SEAL LLM Leaderboards](https://scale.com/leaderboard) - Chatbot Leaderboards
|
* [SEAL LLM Leaderboards](https://scale.com/leaderboard) - Chatbot Leaderboards
|
||||||
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks / [GitHub](https://github.com/allenai/WildBench)
|
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks / [GitHub](https://github.com/allenai/WildBench)
|
||||||
|
@ -231,6 +233,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
|
||||||
|
|
||||||
***
|
***
|
||||||
***
|
***
|
||||||
|
@ -262,8 +265,9 @@
|
||||||
* [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab) - Unlimited / Colab / [Discord](https://discord.gg/k5BwmmvJJU)
|
* [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab) - Unlimited / Colab / [Discord](https://discord.gg/k5BwmmvJJU)
|
||||||
* [Stable Video](https://www.stablevideo.com/)
|
* [Stable Video](https://www.stablevideo.com/)
|
||||||
* [Vidu](https://www.vidu.studio/) - 6 Monthly / [Discord](https://discord.gg/3pDU8fmQ8Y)
|
* [Vidu](https://www.vidu.studio/) - 6 Monthly / [Discord](https://discord.gg/3pDU8fmQ8Y)
|
||||||
|
* [Genmo](https://www.genmo.ai/) - 30 Monthly / [GitHub](https://github.com/genmoai/mochi)
|
||||||
* [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Unlimited / [Colab](https://colab.research.google.com/github/nateraw/stable-diffusion-videos/blob/main/stable_diffusion_videos.ipynb)
|
* [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Unlimited / [Colab](https://colab.research.google.com/github/nateraw/stable-diffusion-videos/blob/main/stable_diffusion_videos.ipynb)
|
||||||
* [Wan AI](https://wan.video/) / 10 Daily
|
* [Wan AI](https://wan.video/) / 10 Daily
|
||||||
* [Dream Machine](https://lumalabs.ai/dream-machine) - 5 per Account / [Discord](https://discord.gg/lumaai)
|
* [Dream Machine](https://lumalabs.ai/dream-machine) - 5 per Account / [Discord](https://discord.gg/lumaai)
|
||||||
* [LensGo](https://lensgo.ai/) - 5 Daily / [Discord](https://discord.com/invite/CHMhrByFJS)
|
* [LensGo](https://lensgo.ai/) - 5 Daily / [Discord](https://discord.com/invite/CHMhrByFJS)
|
||||||
* [Kling AI](https://klingai.com/) - 8 Monthly / [Discord](https://discord.com/invite/8tj8YjSzKr)
|
* [Kling AI](https://klingai.com/) - 8 Monthly / [Discord](https://discord.com/invite/8tj8YjSzKr)
|
||||||
|
@ -271,7 +275,7 @@
|
||||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 150 Monthly
|
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 150 Monthly
|
||||||
* [Krea](https://www.krea.ai/) - 2 Daily / [Discord](https://discord.gg/rJurUAR8Kz)
|
* [Krea](https://www.krea.ai/) - 2 Daily / [Discord](https://discord.gg/rJurUAR8Kz)
|
||||||
* [Hailuo Free](https://hailuoaifree.com/) - Unlimited
|
* [Hailuo Free](https://hailuoaifree.com/) - Unlimited
|
||||||
* [Hailuo AI](https://hailuoai.video/) - 3 Daily / Use Translator / [Discord](https://discord.com/invite/hvvt8hAye6)
|
* [Hailuo AI](https://hailuoai.video/) - 3 Daily / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||||
* [Fusion Brain](https://fusionbrain.ai/en/) - Unlimited
|
* [Fusion Brain](https://fusionbrain.ai/en/) - Unlimited
|
||||||
* [Vivago](https://vivago.ai/) - 1 Daily
|
* [Vivago](https://vivago.ai/) - 1 Daily
|
||||||
* [ChatGLM](https://chatglm.cn/) - Unlimited / Requires Signup & Phone # / SMS Generators Work
|
* [ChatGLM](https://chatglm.cn/) - Unlimited / Requires Signup & Phone # / SMS Generators Work
|
||||||
|
@ -284,8 +288,8 @@
|
||||||
* ⭐ **[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)** - Google's Image Generator / 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)** or [ComfyUI-Zluda](https://github.com/patientx/ComfyUI-Zluda) / Unlimited
|
* ⭐ **[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)
|
||||||
* [PicLumen](https://piclumen.com/) / Unlimited / [Discord](https://discord.gg/bAycHJgbD8)
|
* [PicLumen](https://piclumen.com/) / Unlimited / [Discord](https://discord.gg/bAycHJgbD8)
|
||||||
|
@ -293,7 +297,7 @@
|
||||||
* [Microsoft Designer](https://designer.microsoft.com/image-creator), [2](https://www.bing.com/images/create) / 12 Monthly
|
* [Microsoft Designer](https://designer.microsoft.com/image-creator), [2](https://www.bing.com/images/create) / 12 Monthly
|
||||||
* [Kling AI](https://klingai.com/) / 366 Monthly / [Characters](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Character-With-Flux) / [Portraits](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Portrait-with-Flux) / [Discord](https://discord.com/invite/8tj8YjSzKr)
|
* [Kling AI](https://klingai.com/) / 366 Monthly / [Characters](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Character-With-Flux) / [Portraits](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Portrait-with-Flux) / [Discord](https://discord.com/invite/8tj8YjSzKr)
|
||||||
* [AI Gallery](https://aigallery.app/) / Unlimited / No Sign-Up
|
* [AI Gallery](https://aigallery.app/) / Unlimited / No Sign-Up
|
||||||
* [Wan AI](https://wan.video/) / 100 Daily / No Sign-Up
|
* [Wan AI](https://wan.video/) / 100 Daily / No Sign-Up
|
||||||
* [Recraft](https://www.recraft.ai/) / 50 Daily / [Discord](https://discord.gg/recraft)
|
* [Recraft](https://www.recraft.ai/) / 50 Daily / [Discord](https://discord.gg/recraft)
|
||||||
* [imgsys](https://imgsys.org/) / Unlimited / Compare Generators / No Sign-Up
|
* [imgsys](https://imgsys.org/) / Unlimited / Compare Generators / No Sign-Up
|
||||||
* [NVIDIA NIM](https://build.nvidia.com/models?filters=usecase%3Ausecase_image_gen) / 50 Daily / No Sign-Up
|
* [NVIDIA NIM](https://build.nvidia.com/models?filters=usecase%3Ausecase_image_gen) / 50 Daily / No Sign-Up
|
||||||
|
@ -301,8 +305,8 @@
|
||||||
* [Prodia](https://app.prodia.com/playground) / Unlimited / No Sign-Up / [Discord](https://discord.com/invite/495hz6vrFN)
|
* [Prodia](https://app.prodia.com/playground) / Unlimited / No Sign-Up / [Discord](https://discord.com/invite/495hz6vrFN)
|
||||||
* [Pollinations](https://pollinations.ai/) / Unlimited / No Sign-Up / [Discord](https://discord.gg/k9F7SyTgqn) / [GitHub](https://www.github.com/pollinations/pollinations)
|
* [Pollinations](https://pollinations.ai/) / Unlimited / No Sign-Up / [Discord](https://discord.gg/k9F7SyTgqn) / [GitHub](https://www.github.com/pollinations/pollinations)
|
||||||
* [PicSynth](https://www.picsynth.me/generation) / Unlimited
|
* [PicSynth](https://www.picsynth.me/generation) / Unlimited
|
||||||
* [Leonardo](https://leonardo.ai/) / 150 Daily
|
* [Leonardo](https://leonardo.ai/) / 150 Daily
|
||||||
* [Loras](https://www.loras.dev/) / Unlimited / [GitHub](https://github.com/Nutlope/loras-dev)
|
* [Loras](https://www.loras.dev/) / Unlimited / [GitHub](https://github.com/Nutlope/loras-dev)
|
||||||
* [ChatGLM](https://chatglm.cn/) / Unlimited
|
* [ChatGLM](https://chatglm.cn/) / Unlimited
|
||||||
* [Meta AI](https://www.meta.ai/icebreakers/imagine/) / Unlimited
|
* [Meta AI](https://www.meta.ai/icebreakers/imagine/) / Unlimited
|
||||||
* [Playground](https://playground.com/) / 15 Per 3 Hours
|
* [Playground](https://playground.com/) / 15 Per 3 Hours
|
||||||
|
@ -313,8 +317,11 @@
|
||||||
* [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
|
||||||
|
* [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
|
* [PicFinder](https://picfinder.ai/) / Unlimited
|
||||||
|
@ -326,13 +333,13 @@
|
||||||
* [Aitubo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
|
* [Aitubo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
|
||||||
* [Poe](https://poe.com/) / 2-15 Daily / Phone # Required / [Discord](https://discord.com/invite/joinpoe)
|
* [Poe](https://poe.com/) / 2-15 Daily / Phone # Required / [Discord](https://discord.com/invite/joinpoe)
|
||||||
* [Maze Guru](https://maze.guru/gallery) / 12 Daily / [Discord](https://discord.com/invite/maze-guru-ai-art-anime-social-1007166914801434634)
|
* [Maze Guru](https://maze.guru/gallery) / 12 Daily / [Discord](https://discord.com/invite/maze-guru-ai-art-anime-social-1007166914801434634)
|
||||||
|
* [DALL·E](https://openai.com/index/dall-e-3/) - 6 Daily / ChatGPTs Image Generator
|
||||||
* [PixAI](https://pixai.art/) / 5 Daily / [Discord](https://discord.com/invite/pixai)
|
* [PixAI](https://pixai.art/) / 5 Daily / [Discord](https://discord.com/invite/pixai)
|
||||||
* [FluxPro](https://fluxpro.art/) / 1 Daily / [Discord](https://discord.gg/YMmUAvtRva)
|
* [FluxPro](https://fluxpro.art/) / 1 Daily / [Discord](https://discord.gg/YMmUAvtRva)
|
||||||
* [Glif](https://glif.app/) / 20 Daily / No Sign-Up / [Discord](https://discord.gg/nuR9zZ2nsh)
|
* [Glif](https://glif.app/) / 20 Daily / No Sign-Up / [Discord](https://discord.gg/nuR9zZ2nsh)
|
||||||
* [Vivago](https://vivago.ai/) / 15 Daily / No Sign-Up
|
* [Vivago](https://vivago.ai/) / 15 Daily / No Sign-Up
|
||||||
* [Krea](https://www.krea.ai/) / 10 Daily / No Sign-Up / [Discord](https://discord.gg/rJurUAR8Kz)
|
* [Krea](https://www.krea.ai/) / 10 Daily / No Sign-Up / [Discord](https://discord.gg/rJurUAR8Kz)
|
||||||
* [Whisk](https://labs.google/fx/en/tools/whisk) - Use Images as Prompts
|
* [Whisk](https://labs.google/fx/en/tools/whisk) - Use Images as Prompts
|
||||||
* [MemeCam](https://www.memecam.io/) - AI Meme Generator
|
|
||||||
* [Artoons](https://artoons.vercel.app/) - Cartoon Style Generator / [GitHub](https://github.com/sujjeee/artoons)
|
* [Artoons](https://artoons.vercel.app/) - Cartoon Style Generator / [GitHub](https://github.com/sujjeee/artoons)
|
||||||
* [Genie](https://lumalabs.ai/genie) / [Discord](https://discord.com/invite/ASbS3EykXm), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [threestudio](https://github.com/threestudio-project/threestudio) / [Colab](https://colab.research.google.com/github/threestudio-project/threestudio/blob/main/threestudio.ipynb) / [Discord](https://discord.gg/ejer2MAB8N) - 3D Image Generators
|
* [Genie](https://lumalabs.ai/genie) / [Discord](https://discord.com/invite/ASbS3EykXm), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [threestudio](https://github.com/threestudio-project/threestudio) / [Colab](https://colab.research.google.com/github/threestudio-project/threestudio/blob/main/threestudio.ipynb) / [Discord](https://discord.gg/ejer2MAB8N) - 3D Image Generators
|
||||||
* [Interactive Scenes](https://lumalabs.ai/interactive-scenes) - Generate Interactive Scenes / [Discord](https://discord.com/invite/ASbS3EykXm)
|
* [Interactive Scenes](https://lumalabs.ai/interactive-scenes) - Generate Interactive Scenes / [Discord](https://discord.com/invite/ASbS3EykXm)
|
||||||
|
@ -350,12 +357,13 @@
|
||||||
* ⭐ **[DiffusionBee](https://diffusionbee.com/)** - Stable Diffusion for Mac / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
|
* ⭐ **[DiffusionBee](https://diffusionbee.com/)** - Stable Diffusion for Mac / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
|
||||||
* ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/sdnext) / [Colab](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services#google-colab) / [Photoshop](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted) / [Upscaling](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111), [2](https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111)
|
* ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/sdnext) / [Colab](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services#google-colab) / [Photoshop](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted) / [Upscaling](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111), [2](https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111)
|
||||||
* [StableStudio](https://github.com/Stability-AI/StableStudio)
|
* [StableStudio](https://github.com/Stability-AI/StableStudio)
|
||||||
* [Easy Diffusion](https://easydiffusion.github.io/) / [Discord](https://discord.com/invite/u9yhsFmEkB) / [GitHub](https://github.com/easydiffusion/easydiffusion) / [GitHub](https://github.com/easydiffusion/easydiffusion)
|
* [Easy Diffusion](https://easydiffusion.github.io/) / [Discord](https://discord.com/invite/u9yhsFmEkB) / [GitHub](https://github.com/easydiffusion/easydiffusion)
|
||||||
* [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m)
|
* [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m)
|
||||||
* [biniou](https://github.com/Woolverine94/biniou)
|
* [biniou](https://github.com/Woolverine94/biniou)
|
||||||
* [Sygil WebUI](https://sygil-dev.github.io/sygil-webui/) / [Colab](https://colab.research.google.com/github/Sygil-Dev/sygil-webui/blob/main/Web_based_UI_for_Stable_Diffusion_colab.ipynb) / [Discord](https://discord.com/invite/ttM8Tm6wge) / [GitHub](https://github.com/Sygil-Dev/sygil-webui)
|
* [Sygil WebUI](https://sygil-dev.github.io/sygil-webui/) / [Colab](https://colab.research.google.com/github/Sygil-Dev/sygil-webui/blob/main/Web_based_UI_for_Stable_Diffusion_colab.ipynb) / [Discord](https://discord.com/invite/ttM8Tm6wge) / [GitHub](https://github.com/Sygil-Dev/sygil-webui)
|
||||||
* [Radiata](https://ddpn08.github.io/Radiata/en/) / [GitHub](https://github.com/ddPn08/Radiata)
|
* [Radiata](https://ddpn08.github.io/Radiata/en/) / [GitHub](https://github.com/ddPn08/Radiata)
|
||||||
* [SD WebUI Forge](https://github.com/lllyasviel/stable-diffusion-webui-forge)
|
* [SD WebUI Forge](https://github.com/lllyasviel/stable-diffusion-webui-forge)
|
||||||
|
* [ComfyUI-Zluda](https://github.com/patientx/ComfyUI-Zluda)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -408,16 +416,18 @@
|
||||||
|
|
||||||
## ▷ Text to Speech
|
## ▷ Text to Speech
|
||||||
|
|
||||||
* ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)** / No Sign-Up
|
* ⭐ **[TTS Online](https://www.text-to-speech.online/)** / No Sign-Up
|
||||||
* ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** / No Sign-Up / [Colab](https://colab.research.google.com/drive/1eJfA2XUa-mXwdMy7DoYKVYHI1iTd9Vkt?usp=sharing) / [GitHub](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
* [Uberduck](https://uberduck.ai/) / [Discord](https://discord.gg/uberduck-768215836665446480)
|
||||||
* [Uberduck](https://uberduck.ai/) / Sign-Up Required / [Discord](https://discord.gg/uberduck-768215836665446480)
|
|
||||||
* [Google Illuminate](https://illuminate.google.com/) - Generate AI Conversations
|
* [Google Illuminate](https://illuminate.google.com/) - Generate AI Conversations
|
||||||
* [ElevenLabs](https://elevenlabs.io/) / No Sign-Up / [Discord](https://discord.gg/elevenlabs) / [GitHub](https://github.com/elevenlabs)
|
* [ElevenLabs](https://elevenlabs.io/) / No Sign-Up / [Discord](https://discord.gg/elevenlabs) / [GitHub](https://github.com/elevenlabs)
|
||||||
* [ttsMP3](https://ttsmp3.com/) / No Sign-Up
|
* [ttsMP3](https://ttsmp3.com/) / No Sign-Up
|
||||||
* [FakeYou](https://fakeyou.com/) / No Sign-Up / [Discord](https://discord.gg/fakeyou)
|
* [FakeYou](https://fakeyou.com/) / No Sign-Up / [Discord](https://discord.gg/fakeyou)
|
||||||
* [Luvvoice](https://luvvoice.com/) / No Sign-Up
|
* [Luvvoice](https://luvvoice.com/) / No Sign-Up
|
||||||
* [TTSMaker](https://ttsmaker.com/) / No Sign-Up
|
* [TTSMaker](https://ttsmaker.com/) / No Sign-Up
|
||||||
* [TTSOpenAI](https://ttsopenai.com/) / No Sign-Up
|
* [Tortoise TTS](https://github.com/neonbjb/tortoise-tts) / No Sign-Up
|
||||||
|
* [Bark](https://huggingface.co/spaces/suno/bark) / No Sign-Up / [Colab](https://colab.research.google.com/drive/1eJfA2XUa-mXwdMy7DoYKVYHI1iTd9Vkt?usp=sharing) / [GitHub](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
||||||
|
* [TTSOpenAI](https://ttsopenai.com/) or [OpenAI.fm](https://www.openai.fm/) / No Sign-Up / OpenAI's Bot
|
||||||
|
* [AI Speaker](https://ai-speaker.net/) / No Sign-Up
|
||||||
* [edge-tts](https://github.com/rany2/edge-tts) / No Sign-Up / Python Module
|
* [edge-tts](https://github.com/rany2/edge-tts) / No Sign-Up / Python Module
|
||||||
* [Voices](https://www.hailuo.ai/audio/)
|
* [Voices](https://www.hailuo.ai/audio/)
|
||||||
* [TextToSpeech.io](https://texttospeech.io/)
|
* [TextToSpeech.io](https://texttospeech.io/)
|
||||||
|
@ -453,7 +463,8 @@
|
||||||
* [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
|
||||||
* [Xyphra](https://maia.zyphra.com/audio) - Voice Cloning / [GitHub](https://github.com/Zyphra/Zonos)
|
* [AllVoiceLab](https://www.allvoicelab.com/) - Voice Cloning / No Sign-Up
|
||||||
|
* [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)
|
||||||
|
@ -137,8 +137,8 @@
|
||||||
* 🌐 **[ReVanced Mega](https://xdaforums.com/t/app-guides-unofficial-revanced-megathread.4523967/)** - ReVanced Resources / Megathread
|
* 🌐 **[ReVanced Mega](https://xdaforums.com/t/app-guides-unofficial-revanced-megathread.4523967/)** - ReVanced Resources / Megathread
|
||||||
* 🌐 **[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://rentry.co/revanced-auto-update)** - 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)
|
||||||
|
@ -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
|
||||||
|
@ -178,7 +177,7 @@
|
||||||
* [WaEnhancer](https://github.com/Dev4Mod/WaEnhancer) (root) - WhatsApp Patcher
|
* [WaEnhancer](https://github.com/Dev4Mod/WaEnhancer) (root) - WhatsApp Patcher
|
||||||
* [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
|
||||||
* [WhatsAppCleaner](https://github.com/VishnuSanal/WhatsAppCleaner) - Clean Redundant WhatsApp Media Files
|
* [WhatsAppCleaner](https://github.com/VishnuSanal/WhatsAppCleaner) - Clean Redundant WhatsApp Media Files
|
||||||
* [FouadMODS](https://t.me/FouadMODS) or [SE Extended](https://github.com/bocajthomas/SE-Extended) / [Telegram](https://t.me/SE_Extended_CI) - Snapchat Clients
|
* [FouadMODS](https://t.me/FouadMODS) or [SE Extended](https://github.com/bocajthomas/SE-Extended) / [Telegram](https://t.me/SE_Extended_CI) - Snapchat Clients
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -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
|
||||||
|
@ -290,7 +288,7 @@
|
||||||
* ⭐ **[Florisboard](https://florisboard.org)** - Privacy-Focused Keyboard
|
* ⭐ **[Florisboard](https://florisboard.org)** - Privacy-Focused Keyboard
|
||||||
* ⭐ **[Thumb-Key](https://github.com/dessalines/thumb-key)** - Keyboard
|
* ⭐ **[Thumb-Key](https://github.com/dessalines/thumb-key)** - Keyboard
|
||||||
* ⭐ **[HeliBoard](https://github.com/Helium314/HeliBoard)** - Customizable Privacy-Focused Keyboard / [Layouts Guide](https://github.com/Helium314/HeliBoard/wiki/Layouts)
|
* ⭐ **[HeliBoard](https://github.com/Helium314/HeliBoard)** - Customizable Privacy-Focused Keyboard / [Layouts Guide](https://github.com/Helium314/HeliBoard/wiki/Layouts)
|
||||||
* [Flickboard](https://github.com/nightkr/flickboard) - Keyboard
|
* [Flickboard](https://codeberg.org/natkr/flickboard) - Keyboard
|
||||||
* [Unexpected Keyboard](https://github.com/Julow/Unexpected-Keyboard) - Keyboard
|
* [Unexpected Keyboard](https://github.com/Julow/Unexpected-Keyboard) - Keyboard
|
||||||
* [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Privacy-Focused Keyboard
|
* [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Privacy-Focused Keyboard
|
||||||
* [KeyboardGPT](https://github.com/Mino260806/KeyboardGPT) - AI Keyboard
|
* [KeyboardGPT](https://github.com/Mino260806/KeyboardGPT) - AI Keyboard
|
||||||
|
@ -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), [Kitsune Magisk](https://huskydg.github.io/magisk-files), [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
|
||||||
|
@ -353,6 +350,7 @@
|
||||||
* [Albastuz3d](https://albastuz3d.net/) - Stock Phone ROMs
|
* [Albastuz3d](https://albastuz3d.net/) - Stock Phone ROMs
|
||||||
* [ConnectBot](https://connectbot.org/) - SSH Client
|
* [ConnectBot](https://connectbot.org/) - SSH Client
|
||||||
* [LSPosed](https://github.com/JingMatrix/LSPosed) - LSPosed Framework
|
* [LSPosed](https://github.com/JingMatrix/LSPosed) - LSPosed Framework
|
||||||
|
* [PixelFlasher](https://github.com/badabing2005/PixelFlasher) - Pixel Phone Flashing GUI
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -377,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
|
||||||
|
@ -391,15 +389,14 @@
|
||||||
* [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/tree/HEAD) or [android-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
|
||||||
* [TouchDroid](https://github.com/SKRInternationals/TouchDroid), [Mousedroid](https://github.com/darusc/Mousedroid) or [USB HID Client](https://github.com/Arian04/android-hid-client) (root) - Use Device as PC Mouse / Keyboard
|
* [TouchDroid](https://github.com/SKRInternationals/TouchDroid), [Mousedroid](https://github.com/darusc/Mousedroid) or [USB HID Client](https://github.com/Arian04/android-hid-client) (root) - Use Device as PC Mouse / Keyboard
|
||||||
* [Android Virtual Pen](https://github.com/androidvirtualpen/virtualpen) - Use Device as PC Virtual Pen
|
* [Android Virtual Pen](https://github.com/androidvirtualpen/virtualpen) - Use Device as PC Virtual Pen
|
||||||
* [Listy](https://listy.is/) - Create Lists of Anything
|
* [Listy](https://listy.is/) or [HypeList](https://hypelist.com/) - Create Lists of Anything
|
||||||
* [VoiceGPT](https://github.com/WSTxda/Plugin-VoiceGPT) or [Dicio](https://github.com/Stypox/dicio-android) - Voice Assistants
|
* [VoiceGPT](https://github.com/WSTxda/Plugin-VoiceGPT) or [Dicio](https://github.com/Stypox/dicio-android) - Voice Assistants
|
||||||
* [PrivateBin](https://privatebin.info/) - Pastebin App
|
|
||||||
* [Novelist](https://www.novelist.app/) - Writing App
|
* [Novelist](https://www.novelist.app/) - Writing App
|
||||||
* [Tunity](https://tunity.com/) - Hear Muted TVs
|
* [Tunity](https://tunity.com/) - Hear Muted TVs
|
||||||
* [Trail Sense](https://kylecorry.com/Trail-Sense/) - Wilderness Survival App / [GitHub](https://github.com/kylecorry31/Trail-Sense)
|
* [Trail Sense](https://kylecorry.com/Trail-Sense/) - Wilderness Survival App / [GitHub](https://github.com/kylecorry31/Trail-Sense)
|
||||||
|
@ -472,7 +469,7 @@
|
||||||
## ▷ 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
|
||||||
|
@ -493,7 +490,7 @@
|
||||||
* [GMS-Flags](https://github.com/polodarb/GMS-Flags) - Turn Google Flags On/Off / Root
|
* [GMS-Flags](https://github.com/polodarb/GMS-Flags) - Turn Google Flags On/Off / Root
|
||||||
* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) - Firefox Inspect Element
|
* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) - Firefox Inspect Element
|
||||||
* [SubX](https://play.google.com/store/apps/details?id=com.alkapps.subx) or [SubscriptionManager](https://play.google.com/store/apps/details?id=de.simolation.subscriptionmanager) - Track Subscription Services
|
* [SubX](https://play.google.com/store/apps/details?id=com.alkapps.subx) or [SubscriptionManager](https://play.google.com/store/apps/details?id=de.simolation.subscriptionmanager) - Track Subscription Services
|
||||||
* [WiFiman](https://play.google.com/store/apps/details?id=com.ubnt.usurvey), [WiFiAnalyzer](https://vremsoftwaredevelopment.github.io/WiFiAnalyzer/) or [WLANScanner](https://github.com/bewue/WLANScanner) - Network Scanners
|
* [WiFiman](https://play.google.com/store/apps/details?id=com.ubnt.usurvey), [WiFiAnalyzer](https://vremsoftwaredevelopment.github.io/WiFiAnalyzer/) / [GitHub](https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer) or [WLANScanner](https://github.com/bewue/WLANScanner) - Network Scanners
|
||||||
* [Fing](https://www.fing.com/fing-app/) - Network Toolkit
|
* [Fing](https://www.fing.com/fing-app/) - Network Toolkit
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -508,9 +505,9 @@
|
||||||
* ⭐ **[SyncThing Fork](https://github.com/Catfriend1/syncthing-android)** - File Sync / Sharing
|
* ⭐ **[SyncThing Fork](https://github.com/Catfriend1/syncthing-android)** - File Sync / Sharing
|
||||||
* ⭐ **[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
|
||||||
* ⭐ **[Aria2App](https://github.com/devgianlu/Aria2App)** - Download Manager Controller
|
* ⭐ **[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) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers
|
||||||
* [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), [Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer), [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
|
* [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
|
||||||
|
@ -625,6 +622,7 @@
|
||||||
* [FlashLite](https://flashlite.games/) - Flash Emulator / [Discord](https://discord.gg/F2dsGhTX6y)
|
* [FlashLite](https://flashlite.games/) - Flash Emulator / [Discord](https://discord.gg/F2dsGhTX6y)
|
||||||
* [/r/EmulationOnAndroid](https://www.reddit.com/r/emulationonandroid) - Android Game Emulation Subreddit
|
* [/r/EmulationOnAndroid](https://www.reddit.com/r/emulationonandroid) - Android Game Emulation Subreddit
|
||||||
* [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)
|
||||||
|
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||||
* [Source Engine 4 Android](https://discord.gg/source-engine-4-android-672055862608658432) - Source Engine Ports
|
* [Source Engine 4 Android](https://discord.gg/source-engine-4-android-672055862608658432) - Source Engine Ports
|
||||||
* [JoiPlay](https://joiplay.net/) - RPG Maker Game Interpreter
|
* [JoiPlay](https://joiplay.net/) - RPG Maker Game Interpreter
|
||||||
* [AdrenoToolsDrivers](https://github.com/K11MCH1/AdrenoToolsDrivers) - Adreno Drivers for Android Emulators / [Systemwide](https://github.com/SEGAINDEED/Adreno-ToolsDriversMagisk)
|
* [AdrenoToolsDrivers](https://github.com/K11MCH1/AdrenoToolsDrivers) - Adreno Drivers for Android Emulators / [Systemwide](https://github.com/SEGAINDEED/Adreno-ToolsDriversMagisk)
|
||||||
|
@ -666,7 +664,7 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[LibreTorrent](https://gitlab.com/proninyaroslav/libretorrent)** - Torrent Client / [Github](https://github.com/proninyaroslav/libretorrent)
|
* ⭐ **[LibreTorrent](https://gitlab.com/proninyaroslav/libretorrent)** - Torrent Client / [GitHub](https://github.com/proninyaroslav/libretorrent)
|
||||||
* [Tixati](https://tixati.com/android) - Torrent Client / Allows Binding
|
* [Tixati](https://tixati.com/android) - Torrent Client / Allows Binding
|
||||||
* [BiglyBT](https://android.biglybt.com/) - Torrent Client / Allows Binding
|
* [BiglyBT](https://android.biglybt.com/) - Torrent Client / Allows Binding
|
||||||
* [tTorrent](https://ttorrent.org/) - Torrent Client
|
* [tTorrent](https://ttorrent.org/) - Torrent Client
|
||||||
|
@ -674,7 +672,6 @@
|
||||||
* [Flud](https://play.google.com/store/apps/details?id=com.delphicoder.flud) - Torrent Client
|
* [Flud](https://play.google.com/store/apps/details?id=com.delphicoder.flud) - Torrent Client
|
||||||
* [TorrServe](https://github.com/YouROK/TorrServe) - Torrent Client
|
* [TorrServe](https://github.com/YouROK/TorrServe) - Torrent Client
|
||||||
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) - Torrent Client / [Extra Features](https://rentry.co/FMHYBase64#1dm)
|
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) - Torrent Client / [Extra Features](https://rentry.co/FMHYBase64#1dm)
|
||||||
* [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Torrent Client
|
|
||||||
* [Trireme](https://github.com/teal77/trireme) - Deluge Client
|
* [Trireme](https://github.com/teal77/trireme) - Deluge Client
|
||||||
* [Transdroid](https://www.transdroid.org) - Manage BitTorrent Clients / [GitHub](https://github.com/erickok/transdroid) / [F-Droid](https://f-droid.org/packages/org.transdroid.full/)
|
* [Transdroid](https://www.transdroid.org) - Manage BitTorrent Clients / [GitHub](https://github.com/erickok/transdroid) / [F-Droid](https://f-droid.org/packages/org.transdroid.full/)
|
||||||
* [nzb360](https://play.google.com/store/apps/details?id=com.kevinforeman.nzb360) - NZB / Torrent Manager
|
* [nzb360](https://play.google.com/store/apps/details?id=com.kevinforeman.nzb360) - NZB / Torrent Manager
|
||||||
|
@ -703,7 +700,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,10 +730,10 @@
|
||||||
# ► 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/)** or [AutoTagger](https://autotagger.ru/) - Metadata Organizers
|
* ⭐ **[AutomaTag](http://automatag.com/)** - Metadata Organizer
|
||||||
* ⭐ **[AudioRelay](https://audiorelay.net/)** or [Audio Share](https://github.com/mkckr0/audio-share) - Stream Audio Between Devices
|
* ⭐ **[AudioRelay](https://audiorelay.net/)** or [Audio Share](https://github.com/mkckr0/audio-share) - Stream Audio Between Devices
|
||||||
* ⭐ **[Pano Scrobbler](https://github.com/kawaiiDango/pano-scrobbler)** - Android Scrobbler
|
* ⭐ **[Pano Scrobbler](https://github.com/kawaiiDango/pano-scrobbler)** - Android Scrobbler
|
||||||
* ⭐ **[CApod](https://github.com/d4rken-org/capod)**, [OpenPods](https://github.com/adolfintel/OpenPods) or [MaterialPods](https://play.google.com/store/apps/details?id=com.pryshedko.materialpods) - AirPod Monitors / Battery Trackers
|
* ⭐ **[CApod](https://github.com/d4rken-org/capod)**, [OpenPods](https://github.com/adolfintel/OpenPods) or [MaterialPods](https://play.google.com/store/apps/details?id=com.pryshedko.materialpods) - AirPod Monitors / Battery Trackers
|
||||||
|
@ -800,7 +797,7 @@
|
||||||
* [Music Player GO](https://github.com/enricocid/Music-Player-GO)
|
* [Music Player GO](https://github.com/enricocid/Music-Player-GO)
|
||||||
* [Nyx Music Player](https://play.google.com/store/apps/details?id=com.awedea.nyx)
|
* [Nyx Music Player](https://play.google.com/store/apps/details?id=com.awedea.nyx)
|
||||||
* [mucke](https://github.com/moritz-weber/mucke)
|
* [mucke](https://github.com/moritz-weber/mucke)
|
||||||
* [Lotus](https://github.com/dn0ne/lotus) / [2](https://f-droid.org/packages/com.dn0ne.lotus)
|
* [Lotus](https://github.com/dn0ne/lotus) / [2](https://f-droid.org/packages/com.dn0ne.lotus)
|
||||||
* [Phonograph Plus](https://github.com/chr56/Phonograph_Plus)
|
* [Phonograph Plus](https://github.com/chr56/Phonograph_Plus)
|
||||||
* [Pulse Music](https://play.google.com/store/apps/details?id=com.hardcodecoder.pulse)
|
* [Pulse Music](https://play.google.com/store/apps/details?id=com.hardcodecoder.pulse)
|
||||||
* [Zen Music Player](https://github.com/pakka-papad/Zen)
|
* [Zen Music Player](https://github.com/pakka-papad/Zen)
|
||||||
|
@ -813,7 +810,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
|
||||||
|
@ -876,7 +872,6 @@
|
||||||
* ⭐ **[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/)
|
||||||
* ⭐ **[BubblesUPNP](https://play.google.com/store/apps/details?id=com.bubblesoft.android.bubbleupnp)**, [DMS](https://github.com/anacrolix/dms) or [Macast](https://xfangfang.github.io/Macast/) - Media Servers
|
* ⭐ **[BubblesUPNP](https://play.google.com/store/apps/details?id=com.bubblesoft.android.bubbleupnp)**, [DMS](https://github.com/anacrolix/dms) or [Macast](https://xfangfang.github.io/Macast/) - Media Servers
|
||||||
* [Flixquest](https://flixquest.beamlak.dev/) - Movies / TV / Anime
|
|
||||||
* [Cinema HD](https://rentry.co/FMHYBase64#cinema-hd) - Movies / TV
|
* [Cinema HD](https://rentry.co/FMHYBase64#cinema-hd) - Movies / TV
|
||||||
* [Movie HD](https://rentry.co/FMHYBase64#movie-hd) - Movies / TV / Requires AMPlayer
|
* [Movie HD](https://rentry.co/FMHYBase64#movie-hd) - Movies / TV / Requires AMPlayer
|
||||||
* [VivaTV](https://rentry.co/FMHYBase64#vivatv) - Movies / TV / Requires TPlayer
|
* [VivaTV](https://rentry.co/FMHYBase64#vivatv) - Movies / TV / Requires TPlayer
|
||||||
|
@ -885,6 +880,7 @@
|
||||||
* [FilmPlus](https://rentry.co/FMHYBase64#filmplus) - Movies / TV / Requires BPlayer
|
* [FilmPlus](https://rentry.co/FMHYBase64#filmplus) - Movies / TV / Requires BPlayer
|
||||||
* [Flixclusive](https://github.com/flixclusiveorg/Flixclusive) - Movies / TV / [Discord / Plugins](https://discord.com/invite/7yPSPveReu)
|
* [Flixclusive](https://github.com/flixclusiveorg/Flixclusive) - Movies / TV / [Discord / Plugins](https://discord.com/invite/7yPSPveReu)
|
||||||
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV
|
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV
|
||||||
|
* [MovieBox](https://rentry.co/FMHYBase64#moviebox) - Movies / TV
|
||||||
* [Flixoid](https://rentry.co/FMHYBase64#flixoid) - Movies / TV
|
* [Flixoid](https://rentry.co/FMHYBase64#flixoid) - Movies / TV
|
||||||
* [BeeTV](https://rentry.co/FMHYBase64#beetv) - Movies / TV
|
* [BeeTV](https://rentry.co/FMHYBase64#beetv) - Movies / TV
|
||||||
* [TeaTV](https://rentry.co/FMHYBase64#teatv) - Movies / TV / Requires TPlayer
|
* [TeaTV](https://rentry.co/FMHYBase64#teatv) - Movies / TV / Requires TPlayer
|
||||||
|
@ -934,7 +930,7 @@
|
||||||
* [animity](https://github.com/kl3jvi/animity) / [Discord](https://discord.com/invite/eNuX9U57SM)
|
* [animity](https://github.com/kl3jvi/animity) / [Discord](https://discord.com/invite/eNuX9U57SM)
|
||||||
* [Shiru](https://github.com/RockinChaos/Shiru) - Torrent Streaming
|
* [Shiru](https://github.com/RockinChaos/Shiru) - Torrent Streaming
|
||||||
* [Meoko](https://play.google.com/store/apps/details?id=com.app.meoko) - Anime Torrent Search
|
* [Meoko](https://play.google.com/store/apps/details?id=com.app.meoko) - Anime Torrent Search
|
||||||
* [DailyAL](https://github.com/JICA98/DailyAL), [MALClient](https://github.com/Drutol/MALClient), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune), [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) or [AniLib](https://anilib.onrender.com/) - Anime Trackers
|
* [DailyAL](https://github.com/JICA98/DailyAL), [MALClient](https://github.com/Drutol/MALClient), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune), [AnymeX](https://github.com/RyanYuuki/AnymeX), [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) or [AniLib](https://anilib.onrender.com/) - Anime Trackers
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -957,7 +953,7 @@
|
||||||
|
|
||||||
## ▷ Android YouTube Apps
|
## ▷ Android YouTube Apps
|
||||||
|
|
||||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Ad-Free YouTube Patcher / [YT Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/step-by-step/00-preface/) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Video](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/step-by-step/00-preface/) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||||
* ⭐ **[GrayJay](https://grayjay.app/)** - YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c) / [GitLab](https://gitlab.futo.org/videostreaming/grayjay) / [Plugins](https://gitlab.futo.org/videostreaming/plugins)
|
* ⭐ **[GrayJay](https://grayjay.app/)** - YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c) / [GitLab](https://gitlab.futo.org/videostreaming/grayjay) / [Plugins](https://gitlab.futo.org/videostreaming/plugins)
|
||||||
* ⭐ **[LibreTube](https://libretube.dev/)** - Ad-Free YouTube
|
* ⭐ **[LibreTube](https://libretube.dev/)** - Ad-Free YouTube
|
||||||
* ⭐ **[NewPipe](https://newpipe.net/)** - Ad-Free YouTube
|
* ⭐ **[NewPipe](https://newpipe.net/)** - Ad-Free YouTube
|
||||||
|
@ -983,7 +979,7 @@
|
||||||
* [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
|
||||||
* [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
|
||||||
|
@ -1148,11 +1144,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,14 +1180,14 @@
|
||||||
|
|
||||||
## ▷ Social Media Apps
|
## ▷ Social Media Apps
|
||||||
|
|
||||||
* ⭐ **[BunnyTweak](https://github.com/bunny-mod/BunnyTweak)** - Discord Clients / [Extension](https://github.com/BillyCurtis/OpenDiscordSafariExtension)
|
* ⭐ **[BunnyTweak](https://github.com/bunny-mod/BunnyTweak)** - Discord Clients / [Plugins](https://purple-eyez.github.io/Plugins-List/) / [Extension](https://github.com/BillyCurtis/OpenDiscordSafariExtension)
|
||||||
* ⭐ **[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
|
||||||
* ⭐ **[BHTwitter](https://github.com/BandarHL/BHTwitter)** or [Twitter Branding](https://github.com/ghl3m0n/FuckElon) - X.com Apps
|
* ⭐ **[BHTwitter](https://github.com/BandarHL/BHTwitter)** or [Twitter Branding](https://github.com/ghl3m0n/FuckElon) - X.com Apps
|
||||||
* ⭐ **[OpenInYT](https://apps.apple.com/app/id1591585819)** - Adds "Open In" Popup to iOS Social Media Apps
|
* ⭐ **[OpenInYT](https://apps.apple.com/app/id1591585819)** - Adds "Open In" Popup to iOS Social Media Apps
|
||||||
* [Openvibe](https://openvibe.social/) - Combine Social Media Apps
|
* [Openvibe](https://openvibe.social/) - Combine Social Media Apps
|
||||||
* [Sink It](https://apps.apple.com/us/app/sink-it-for-reddit/id6449873635) - Reddit Enhancement Extension
|
* [Sink It](https://apps.apple.com/us/app/sink-it-for-reddit/id6449873635) - Reddit Enhancement Extension
|
||||||
* [SNMessenger](https://github.com/NguyenASang/SNMessenger) - Facebook Messenger Tweak
|
* [SNMessenger](https://github.com/NguyenASang/SNMessenger) - Facebook Messenger Tweak
|
||||||
* [Frosty](https://www.frostyapp.io/) - Twitch Client / [GitHub](https://github.com/tommyxchow/frosty)
|
* [Frosty](https://www.frostyapp.io/) - Twitch Client / [GitHub](https://github.com/tommyxchow/frosty)
|
||||||
* [Chatsen](https://chatsen.app/) - Cross-Platform Twitch Chat / [GitHub](https://github.com/chatsen/chatsen) / [Discord](https://discord.com/invite/5G8hpgHkXB)
|
* [Chatsen](https://chatsen.app/) - Cross-Platform Twitch Chat / [GitHub](https://github.com/chatsen/chatsen) / [Discord](https://discord.com/invite/5G8hpgHkXB)
|
||||||
|
@ -1200,7 +1195,6 @@
|
||||||
* [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
|
||||||
* [BHTikTok++](https://github.com/raulsaeed/TikTokPlusPlus) - TikTok Tweaks / [Extension](https://github.com/BillyCurtis/OpenTikTokSafariExtension) / [Telegram](https://t.me/BHTikTokPlusPlus)
|
|
||||||
* [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/) / [GitHub](https://github.com/FouadRaheb/Watusi-for-WhatsApp) or [WaEnhancer](https://github.com/Dev4Mod/WaEnhancer) - WhatsApp Patchers
|
||||||
* [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
|
||||||
|
@ -1260,6 +1254,7 @@
|
||||||
* [Streamer](https://github.com/StreamerApp/Streamer) - Movies / TV
|
* [Streamer](https://github.com/StreamerApp/Streamer) - Movies / TV
|
||||||
* [Streamyfin](https://github.com/streamyfin/streamyfin) or [Swiftfin](https://apps.apple.com/app/id1604098728) - Jellyfin Client
|
* [Streamyfin](https://github.com/streamyfin/streamyfin) or [Swiftfin](https://apps.apple.com/app/id1604098728) - Jellyfin Client
|
||||||
* [Tubi](https://apps.apple.com/app/id886445756) - Movies / TV
|
* [Tubi](https://apps.apple.com/app/id886445756) - Movies / TV
|
||||||
|
* [Channels Pro](https://apps.apple.com/us/app/channels-pro-iptv-player/id1491605049) - Live Sports / Insert "veve.pro"
|
||||||
* [Found TV](https://apps.foundtv.com/) - Found Footage Movies / Signup Required
|
* [Found TV](https://apps.foundtv.com/) - Found Footage Movies / Signup Required
|
||||||
* [Viki](https://apps.apple.com/app/id445553058) - Asian Drama
|
* [Viki](https://apps.apple.com/app/id445553058) - Asian Drama
|
||||||
* [TVBAnywhere](https://apps.apple.com/app/id1191642382) - Chinese Drama
|
* [TVBAnywhere](https://apps.apple.com/app/id1191642382) - Chinese Drama
|
||||||
|
@ -1270,7 +1265,7 @@
|
||||||
|
|
||||||
## ▷ iOS Anime
|
## ▷ iOS Anime
|
||||||
|
|
||||||
* ⭐ **[Sora](https://apps.apple.com/app/sulfur/id6742741043)** - Extension-Based / [TestFlight](https://testflight.apple.com/join/qMUCpNaS) / [Discord](https://discord.gg/XR3SrmUbpd) / [GitHub](https://github.com/cranci1/Sora/)
|
* ⭐ **[Sulfur](https://apps.apple.com/app/sulfur/id6742741043)** - Extension-Based / [Modules](https://sora.jm26.net/library/) / [TestFlight](https://testflight.apple.com/join/qMUCpNaS) / [Discord](https://discord.gg/XR3SrmUbpd) / [GitHub](https://github.com/cranci1/Sora/)
|
||||||
* [Ketsu](https://ketsu.app/download.html) / [Discord](https://discord.gg/gjcy6MQ)
|
* [Ketsu](https://ketsu.app/download.html) / [Discord](https://discord.gg/gjcy6MQ)
|
||||||
* [MyAnimeList Client](https://apps.apple.com/app/id1469330778) or [Kitsune](https://apps.apple.com/app/id6466716447) - MyAnimeList Clients
|
* [MyAnimeList Client](https://apps.apple.com/app/id1469330778) or [Kitsune](https://apps.apple.com/app/id6466716447) - MyAnimeList Clients
|
||||||
* [Otraku](https://github.com/lotusprey/otraku), [MyAnilist](https://apps.apple.com/us/app/myanilist/id741257899), [Ryuusei](https://ryuusei.moe/), [AniHyou](https://apps.apple.com/app/id1635777325) or [AniHyou](https://axiel7.github.io/anihyou) / [GitHub](https://github.com/axiel7/AniHyou-android) - AniList Apps
|
* [Otraku](https://github.com/lotusprey/otraku), [MyAnilist](https://apps.apple.com/us/app/myanilist/id741257899), [Ryuusei](https://ryuusei.moe/), [AniHyou](https://apps.apple.com/app/id1635777325) or [AniHyou](https://axiel7.github.io/anihyou) / [GitHub](https://github.com/axiel7/AniHyou-android) - AniList Apps
|
||||||
|
|
|
@ -13,20 +13,18 @@
|
||||||
* ↪️ **[YouTube Music Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_youtube_music)**
|
* ↪️ **[YouTube Music Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_youtube_music)**
|
||||||
* ⭐ **[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 / [HiFi Unlock](https://uhwotgit.fly.dev/uhwot/dzunlock)
|
* [Deezer](https://www.deezer.com/) - Streaming / [Extra Features](https://rentry.co/FMHYBase64#dzunlock)
|
||||||
* [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
|
||||||
* [Headset](https://headsetapp.co) - 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
|
||||||
* [MP3Jam](https://www.mp3jam.org/) - Streaming
|
* [MP3Jam](https://www.mp3jam.org/) - Streaming
|
||||||
* [MellowPlayer](https://colinduquesnoy.gitlab.io/MellowPlayer/) - 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
|
||||||
* [M3Unator](https://github.com/hasanbeder/M3Unator) - Generate M3U Playlists from Open Directories
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -38,6 +36,7 @@
|
||||||
* ⭐ **[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 Theme](https://userstyles.world/style/16767/) / [Dark Theme](https://github.com/huds0nx/soundcloud-luna)
|
||||||
* [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://dabplayer.vercel.app/) - Browser Music
|
||||||
* [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
|
||||||
|
@ -49,6 +48,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
|
||||||
|
@ -122,7 +122,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
|
||||||
|
@ -139,6 +139,7 @@
|
||||||
* [J1 Radio](https://rec.torontocast.stream/player/) - J-Pop Radio
|
* [J1 Radio](https://rec.torontocast.stream/player/) - J-Pop Radio
|
||||||
* [LISTEN.moe](https://listen.moe/) - K-Pop Radio
|
* [LISTEN.moe](https://listen.moe/) - K-Pop Radio
|
||||||
* [420.moe](https://420.moe/) - 420 Radio
|
* [420.moe](https://420.moe/) - 420 Radio
|
||||||
|
* [HollowEarthRadio](https://www.hollowearthradio.org/) - Pacific Northwest Artists
|
||||||
* [Nectarine](https://www.scenestream.net/demovibes/streams/) - Demo Scene Music Radio
|
* [Nectarine](https://www.scenestream.net/demovibes/streams/) - Demo Scene Music Radio
|
||||||
* [Daft Punk Cafe](https://daftpunk.cafe/) - Daft Punk Radio
|
* [Daft Punk Cafe](https://daftpunk.cafe/) - Daft Punk Radio
|
||||||
* [Radiooooo](https://radiooooo.com/) - Radio / Time Machine
|
* [Radiooooo](https://radiooooo.com/) - Radio / Time Machine
|
||||||
|
@ -194,17 +195,20 @@
|
||||||
* ⭐ **[HaloMe](https://halome.nu/)** - Halo Menu Screens
|
* ⭐ **[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
|
||||||
* [FlowTunes](https://www.flowtunes.app/) - Lofi + Focus Radio / Ambient Sounds
|
* [FlowTunes](https://www.flowtunes.app/) - Lofi + Focus Radio / Ambient Sounds
|
||||||
* [Petrichoir](https://petrichoir.app/) - Lofi Radio / Ambient Sounds
|
* [Petrichoir](https://petrichoir.app/) - Lofi Radio / Ambient Sounds
|
||||||
|
* [Lofizen](https://www.lofizen.co/) - Lofi Radio / Ambient Sounds
|
||||||
* [Rainbow Hunt](https://rainbowhunt.com/) - Ambient Rain
|
* [Rainbow Hunt](https://rainbowhunt.com/) - Ambient Rain
|
||||||
* [Pluvior](https://pluvior.com/), [rainfor.me](https://rainfor.me/) - Ambient Rain
|
* [Pluvior](https://pluvior.com/), [rainfor.me](https://rainfor.me/) - Ambient Rain
|
||||||
* [Raining.fm](https://raining.fm/) - Ambient Rain
|
* [Raining.fm](https://raining.fm/) - Ambient Rain
|
||||||
* [Rainyscope](https://rainyscope.com/) - Ambient Rain
|
* [Rainyscope](https://rainyscope.com/) - Ambient Rain
|
||||||
* [Moon Phase Radio](https://www.moonphaseradio.com/) - Lofi Radio
|
* [Moon Phase Radio](https://www.moonphaseradio.com/) - Lofi Radio
|
||||||
* [Ambient Sleeping Pill](https://ambientsleepingpill.com/) - Lofi Radio
|
* [Ambient Sleeping Pill](https://ambientsleepingpill.com/) - Lofi Radio
|
||||||
|
* [LofiCafe](https://www.loficafe.net/) - Lofi Radio
|
||||||
* [Ambicular](https://ambicular.com/) - Lofi Radio
|
* [Ambicular](https://ambicular.com/) - Lofi Radio
|
||||||
* [Lofi Music](https://lofimusic.app/) - Lofi Radio
|
* [Lofi Music](https://lofimusic.app/) - Lofi Radio
|
||||||
|
* [FreeCodeCamp](https://coderadio.freecodecamp.org/) - Lofi Radio
|
||||||
* [Loofi](https://loofi.netlify.app/) - Lofi Radio
|
* [Loofi](https://loofi.netlify.app/) - Lofi Radio
|
||||||
* [lofi.cafe](https://www.lofi.cafe/) - Lofi Radio
|
* [lofi.cafe](https://www.lofi.cafe/) - Lofi Radio
|
||||||
* [Lofi Club](https://loficlub.vercel.app/) - Lofi Radio
|
* [Lofi Club](https://loficlub.vercel.app/) - Lofi Radio
|
||||||
|
@ -293,10 +297,9 @@
|
||||||
|
|
||||||
## ▷ Audio Ripping Sites
|
## ▷ Audio Ripping Sites
|
||||||
|
|
||||||
* ⭐ **[lucida](https://lucida.to/)**, [2](https://lucida.su/) - Multi-Site / 320kb / MP3 / FLAC / [Auto-Retry](https://greasyfork.org/en/scripts/514514) / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.gg/5EEexMqVuE)
|
* ⭐ **[lucida](https://lucida.to/)**, [2](https://lucida.su/) - Multi-Site / 320kb / MP3 / FLAC / ALAC / [Auto-Retry](https://greasyfork.org/en/scripts/514514) / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.gg/5EEexMqVuE)
|
||||||
* ⭐ **[cobalt](https://cobalt.tools/)** - YouTube / SoundCloud / 320kb / MP3 / Ad-Free / [Instances](https://instances.cobalt.best/) / [Playlist Support](https://playlist.kwiatekmiki.pl/), [2](https://playlist.kwiatekmiki.com/)
|
* ⭐ **[cobalt](https://cobalt.tools/)** - YouTube / SoundCloud / 320kb / MP3 / Ad-Free / [Instances](https://instances.cobalt.best/) / [Playlist Support](https://playlist.kwiatekmiki.pl/), [2](https://playlist.kwiatekmiki.com/)
|
||||||
* ⭐ **[squid.wtf](https://squid.wtf/)** - Deezer / Qobuz / FLAC / [GitHub](https://github.com/QobuzDL/Qobuz-DL)
|
* ⭐ **[squid.wtf](https://squid.wtf/)** - Deezer / Qobuz / FLAC / [GitHub](https://github.com/QobuzDL/Qobuz-DL)
|
||||||
* ⭐ **[yet another music server](https://yams.tf/)** - Deezer / Tidal / Qobuz / FLAC / [Discord](https://discord.com/invite/yjkdAc53rj)
|
|
||||||
* [YTiz](https://ytiz.xyz/) - YouTube / SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
* [YTiz](https://ytiz.xyz/) - YouTube / SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||||
* [AMP3](https://amp3.cc/) - YouTube / 320kb
|
* [AMP3](https://amp3.cc/) - YouTube / 320kb
|
||||||
* [Download Bandcamp](https://downloadmusicschool.com/bandcamp/) - Bandcamp / 128kb MP3
|
* [Download Bandcamp](https://downloadmusicschool.com/bandcamp/) - Bandcamp / 128kb MP3
|
||||||
|
@ -311,12 +314,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
|
||||||
|
@ -332,11 +334,12 @@
|
||||||
|
|
||||||
## ▷ Telegram Bots
|
## ▷ Telegram Bots
|
||||||
|
|
||||||
* ⭐ **[Glomatico Amazon](https://t.me/GlomaticoAmazonMusicBot)** and **[Glomatico Apple](https://t.me/GlomaticoAppleMusicBot)** - Amazon / Apple / FLAC
|
* [BeatSpotBot](https://t.me/BeatSpotBot) - Spotify / Deezer / Tidal / Yandex / VK / FLAC / 25 Daily
|
||||||
* [BeatSpotBot](https://t.me/BeatSpotBot) - 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_downloa_bot) - YouTube / JioSaavn / 320kb MP3
|
||||||
* [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
|
||||||
|
@ -361,6 +364,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)
|
||||||
* [/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
|
||||||
|
@ -379,6 +383,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
|
||||||
|
@ -444,7 +449,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
|
||||||
|
@ -463,7 +468,7 @@
|
||||||
* [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
|
||||||
* [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
|
||||||
* [FondSound](https://www.fondsound.com/) - Experimental / MP3
|
* [FondSound](https://www.fondsound.com/) - Experimental / MP3
|
||||||
* [Hipstrumentals](https://hipstrumentals.com/) - Instrumentals / MP3
|
* [Hipstrumentals](https://hipstrumentals.com/) - Instrumentals / MP3
|
||||||
|
@ -537,7 +542,7 @@
|
||||||
|
|
||||||
# ► Tracking / Discovery
|
# ► Tracking / Discovery
|
||||||
|
|
||||||
* ⭐ **[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)
|
* ⭐ **[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
|
||||||
* ⭐ **[AnyDecentMusic](http://www.anydecentmusic.com/)** - Album Review Aggregator
|
* ⭐ **[AnyDecentMusic](http://www.anydecentmusic.com/)** - Album Review Aggregator
|
||||||
|
@ -554,14 +559,15 @@
|
||||||
* [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
|
||||||
* [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
|
||||||
|
@ -623,6 +629,7 @@
|
||||||
* [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
|
||||||
* [VB Cables](https://rentry.co/FMHYBase64#vb-cables) - Virtual Audio Cables
|
* [VB Cables](https://rentry.co/FMHYBase64#vb-cables) - Virtual Audio Cables
|
||||||
* [Librescore Downloader](https://github.com/LibreScore/dl-librescore) - Librescore Downloader
|
* [Librescore Downloader](https://github.com/LibreScore/dl-librescore) - Librescore Downloader
|
||||||
|
* [M3Unator](https://github.com/hasanbeder/M3Unator) - Generate M3U Playlists from Open Directories
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -695,7 +702,7 @@
|
||||||
|
|
||||||
## ▷ Song Identification
|
## ▷ Song Identification
|
||||||
|
|
||||||
* ⭐ **[Shazam](https://www.shazam.com/)** - Android / [Desktop App](https://github.com/BayernMuller/vibra)
|
* ⭐ **[Shazam](https://www.shazam.com/)** - Android / [Unlock](https://rentry.co/FMHYBase64#shazam) / [Desktop App](https://github.com/BayernMuller/vibra)
|
||||||
* ⭐ **[WhatAmIHearing](https://github.com/zemoto/WhatAmIHearing)** - Song Identification App
|
* ⭐ **[WhatAmIHearing](https://github.com/zemoto/WhatAmIHearing)** - Song Identification App
|
||||||
* ⭐ **[WatZatSong](https://www.watzatsong.com/en)** - Song Identification Forum
|
* ⭐ **[WatZatSong](https://www.watzatsong.com/en)** - Song Identification Forum
|
||||||
* [/r/NameThatSong](https://reddit.com/r/NameThatSong) - Song Identification Subreddit
|
* [/r/NameThatSong](https://reddit.com/r/NameThatSong) - Song Identification Subreddit
|
||||||
|
@ -716,7 +723,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
|
||||||
|
@ -820,7 +826,7 @@
|
||||||
* [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://rentry.co/FMHYBase64#adguard-premium)** / [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://rentry.co/FMHYBase64#adguard-premium)** /
|
||||||
|
|
||||||
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,8 +36,7 @@ For mobile we recommend **[Brave](https://brave.com/)**, **[Firefox](https://www
|
||||||
|
|
||||||
### Movies / Shows
|
### Movies / Shows
|
||||||
|
|
||||||
* **Streaming: [Cineby](https://www.cineby.app/) / [Freek](https://freek.to/) / [movie-web Instances](https://erynith.github.io/movie-web-instances/) + [Setup Guide + 4K](https://vimeo.com/1059834885/c3ab398d42) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web-extension)**
|
* **Streaming: [XPrime](https://xprime.tv/) / [Hexa](https://hexa.watch/) / [Rive](https://rivestream.org/)**
|
||||||
* **Downloading: [Drives / Directories](https://fmhy.net/videopiracyguide#drives-directories)**
|
|
||||||
* **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/)**
|
||||||
|
@ -56,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/)**
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -72,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/)**
|
||||||
|
@ -100,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
|
||||||
|
@ -250,7 +250,7 @@
|
||||||
* [SemanticDiff](https://app.semanticdiff.com/) - Review Pull Requests using Language Aware Diff
|
* [SemanticDiff](https://app.semanticdiff.com/) - Review Pull Requests using Language Aware Diff
|
||||||
* [StarGrab](https://github.com/zekroTJA/stargrab) - Mirror GitHub Repositories
|
* [StarGrab](https://github.com/zekroTJA/stargrab) - Mirror GitHub Repositories
|
||||||
* [Repo2Txt](https://github.com/abinthomasonline/repo2txt) - Convert Repos to Text Formatted Files
|
* [Repo2Txt](https://github.com/abinthomasonline/repo2txt) - Convert Repos to Text Formatted Files
|
||||||
* [Gitingest](https://gitingest.com/) - Convert Repos to Prompt-Friendly Text
|
* [Gitingest](https://gitingest.com/) or [Repomix](https://repomix.com/) / [GitHub](https://github.com/yamadashy/repomix) - Convert Repos to Prompt-Friendly Text
|
||||||
* [OctoLinker](https://octolinker.vercel.app/) - Make GitHub Code References Clickable
|
* [OctoLinker](https://octolinker.vercel.app/) - Make GitHub Code References Clickable
|
||||||
* [Octotree](https://www.octotree.io/) - GitHub Repo File Tree View
|
* [Octotree](https://www.octotree.io/) - GitHub Repo File Tree View
|
||||||
* [Nightly.link](https://nightly.link/) - GitHub Sharable Nightly Links
|
* [Nightly.link](https://nightly.link/) - GitHub Sharable Nightly Links
|
||||||
|
@ -495,6 +495,7 @@
|
||||||
* [CodePen](https://codepen.io/), [Web Maker](https://webmaker.app/) or [Liveweave](https://liveweave.com/) - Code Sandbox
|
* [CodePen](https://codepen.io/), [Web Maker](https://webmaker.app/) or [Liveweave](https://liveweave.com/) - Code Sandbox
|
||||||
* [Platform.uno](https://platform.uno/) or [Enact](https://enactjs.com/) - App Frameworks
|
* [Platform.uno](https://platform.uno/) or [Enact](https://enactjs.com/) - App Frameworks
|
||||||
* [InstantDB](https://www.instantdb.com/) - Collaborative App Framework
|
* [InstantDB](https://www.instantdb.com/) - Collaborative App Framework
|
||||||
|
* [Codeface](https://github.com/chrissimpkins/codeface), [Monaspace](https://monaspace.githubnext.com/), [Programming Fonts](https://www.programmingfonts.org/) or [Dev Fonts](https://devfonts.gafi.dev/) - Fonts for Coding / [Comparison](https://www.codingfont.com/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -522,11 +523,11 @@
|
||||||
* [ThemesElection](https://themeselection.com/) or [Dracula](https://draculatheme.com/) - Code Editor Themes
|
* [ThemesElection](https://themeselection.com/) or [Dracula](https://draculatheme.com/) - Code Editor Themes
|
||||||
* [Freeze](https://github.com/charmbracelet/freeze) - Generate Images of Code / Terminal Output
|
* [Freeze](https://github.com/charmbracelet/freeze) - Generate Images of Code / Terminal Output
|
||||||
* [myCompiler](https://www.mycompiler.io/), [Compiler Explorer](https://compiler-explorer.com/), [OneCompiler](https://onecompiler.com/), [GodBolt](https://godbolt.org/), [ryugod](https://www.ryugod.com/) or [Wandbox](https://wandbox.org/) - Online Compilers / Explorers
|
* [myCompiler](https://www.mycompiler.io/), [Compiler Explorer](https://compiler-explorer.com/), [OneCompiler](https://onecompiler.com/), [GodBolt](https://godbolt.org/), [ryugod](https://www.ryugod.com/) or [Wandbox](https://wandbox.org/) - Online Compilers / Explorers
|
||||||
* [DogBolt](https://dogbolt.org/) - Decompiler Explorers / [GitHub]](https://github.com/decompiler-explorer/decompiler-explorer)
|
* [DogBolt](https://dogbolt.org/) - Decompiler Explorers / [GitHub](https://github.com/decompiler-explorer/decompiler-explorer)
|
||||||
* [Code2Flow](https://app.code2flow.com/) or [Flowchart.js](https://flowchart.js.org/) - Code to Flowchart Converter
|
* [Code2Flow](https://app.code2flow.com/) or [Flowchart.js](https://flowchart.js.org/) - Code to Flowchart Converter
|
||||||
* [tuc](https://github.com/riquito/tuc) - Improved Code Cut
|
* [tuc](https://github.com/riquito/tuc) - Improved Code Cut
|
||||||
* [massCode](https://masscode.io/) - Code Snippet Manager
|
* [massCode](https://masscode.io/) - Code Snippet Manager
|
||||||
* [Meld](https://meldmerge.org/), [Beyond Compare](https://www.scootersoftware.com/) / [Pro](https://rentry.co/FMHYBase64#beyond-compare-crack) or [WinMerge](https://winmerge.org/) - File / Directory Comparison Tools
|
* [Meld](https://meld.app/) / [2](https://meldmerge.org/), [Beyond Compare](https://www.scootersoftware.com/) / [Pro](https://rentry.co/FMHYBase64#beyond-compare-crack) or [WinMerge](https://winmerge.org/) - File / Directory Comparison Tools
|
||||||
* [0xacab](https://about.0xacab.org/) - Code Host
|
* [0xacab](https://about.0xacab.org/) - Code Host
|
||||||
* [OctoLinker](https://octolinker.vercel.app/) - Turn Code Statements into Links / [GitHub](https://github.com/OctoLinker/OctoLinker)
|
* [OctoLinker](https://octolinker.vercel.app/) - Turn Code Statements into Links / [GitHub](https://github.com/OctoLinker/OctoLinker)
|
||||||
* [RTutor](https://rtutor.ai/) - Translate Natural Language to R code / No Signup
|
* [RTutor](https://rtutor.ai/) - Translate Natural Language to R code / No Signup
|
||||||
|
@ -548,7 +549,7 @@
|
||||||
|
|
||||||
* 🌐 **[Awesome Neovim](https://github.com/rockerBOO/awesome-neovim)** or [NeoVimCraft](https://neovimcraft.com/) - NeoVim Plugins Collections
|
* 🌐 **[Awesome Neovim](https://github.com/rockerBOO/awesome-neovim)** or [NeoVimCraft](https://neovimcraft.com/) - NeoVim Plugins Collections
|
||||||
* ⭐ **[Vim Bootstrap](https://vim-bootstrap.com/)** - Bootstrap Config for Vim
|
* ⭐ **[Vim Bootstrap](https://vim-bootstrap.com/)** - Bootstrap Config for Vim
|
||||||
* ⭐ **[NvChad](https://nvchad.com/)**, [SpaceVim](https://spacevim.org/), [NeoVim Kickstart](https://github.com/nvim-lua/kickstart.nvim), [AstroNvim](https://astronvim.com), [LazyVim](https://github.com/LazyVim/LazyVim) or [LunarVim](https://www.lunarvim.org/) - Neovim Configs
|
* [SpaceVim](https://spacevim.org/), [NeoVim Kickstart](https://github.com/nvim-lua/kickstart.nvim), [AstroNvim](https://astronvim.com), [LazyVim](https://github.com/LazyVim/LazyVim), [NvChad](https://nvchad.com/) or [LunarVim](https://www.lunarvim.org/) - Neovim Configs
|
||||||
* [DotFyle](https://dotfyle.com/) - Neovim Config Search
|
* [DotFyle](https://dotfyle.com/) - Neovim Config Search
|
||||||
* [Lazy.nvim](https://github.com/folke/lazy.nvim) or [packer.nvim](https://github.com/wbthomason/packer.nvim) - Neovim Plugin Managers
|
* [Lazy.nvim](https://github.com/folke/lazy.nvim) or [packer.nvim](https://github.com/wbthomason/packer.nvim) - Neovim Plugin Managers
|
||||||
* [FireNVim](https://github.com/glacambre/firenvim) - Neovim in Browser
|
* [FireNVim](https://github.com/glacambre/firenvim) - Neovim in Browser
|
||||||
|
@ -705,7 +706,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
|
||||||
|
@ -841,10 +842,11 @@
|
||||||
* [Contentdrips](https://contentdrips.com/) or [CreatorKit](https://creatorkit.com/) - Brand Design Tools
|
* [Contentdrips](https://contentdrips.com/) or [CreatorKit](https://creatorkit.com/) - Brand Design Tools
|
||||||
* [SuperNova](https://www.supernova.io/) - Design System Manager
|
* [SuperNova](https://www.supernova.io/) - Design System Manager
|
||||||
* [Interplay](https://interplayapp.com/) - Product Design Tool
|
* [Interplay](https://interplayapp.com/) - Product Design Tool
|
||||||
* [CollectUI](https://collectui.com/), [Hoverstat](https://www.hoverstat.es/), [httpster](https://httpster.net/), [Wave Guide](https://www.waveguide.io/), [Godly Website](https://godly.website/), [ReallyGoodUX](https://goodux.appcues.com/) or [Pageflows](https://pageflows.com/) - UI Design Ideas
|
* [CollectUI](https://collectui.com/), [Hoverstat](https://www.hoverstat.es/), [httpster](https://httpster.net/), [Wave Guide](https://www.waveguide.io/), [Godly Website](https://godly.website/), [ReallyGoodUX](https://goodux.appcues.com/) or [Pageflows](https://pageflows.com/) - UI / Site Design Ideas
|
||||||
* [StoryBook](https://storybook.js.org/), [Akira](https://github.com/akiraux/Akira) or [Mockend](https://mockend.com/) - UI Development Tools
|
* [StoryBook](https://storybook.js.org/), [Akira](https://github.com/akiraux/Akira) or [Mockend](https://mockend.com/) - UI Development Tools
|
||||||
* [UI Design Daily](https://www.uidesigndaily.com/) or [UIVerse](https://uiverse.io/) - Free UI Design Resources
|
* [UI Design Daily](https://www.uidesigndaily.com/) or [UIVerse](https://uiverse.io/) - Free UI Design Resources
|
||||||
* [Open UI](https://open-ui.org/) - Open Standard UI
|
* [Open UI](https://open-ui.org/) - Open Standard UI
|
||||||
|
* [Same.dev](https://same.dev/) - Copy Sites User-Interface Code
|
||||||
* [CodeMyUI](https://codemyui.com/) or [Semantic UI](https://semantic-ui.com/) - User Interface Code Snippets
|
* [CodeMyUI](https://codemyui.com/) or [Semantic UI](https://semantic-ui.com/) - User Interface Code Snippets
|
||||||
* [Icon Shelf](https://icon-shelf.github.io/) - Icon Manager
|
* [Icon Shelf](https://icon-shelf.github.io/) - Icon Manager
|
||||||
* [Favicon Maker](https://formito.com/tools/favicon) or [Favicon Generator](https://www.favicon-generator.org/) - Create Favicons
|
* [Favicon Maker](https://formito.com/tools/favicon) or [Favicon Generator](https://www.favicon-generator.org/) - Create Favicons
|
||||||
|
@ -872,7 +874,6 @@
|
||||||
* [Visiwig](https://www.visiwig.com/) - Copy / Paste Site Graphics
|
* [Visiwig](https://www.visiwig.com/) - Copy / Paste Site Graphics
|
||||||
* [WebDesigner](https://webdesigner.withgoogle.com/), [T3](https://github.com/tooll3/t3), [Theatre.js](https://www.theatrejs.com/) / [GitHub](https://github.com/theatre-js/theatre), [GSAP](https://gsap.com/), [Stylie](https://jeremyckahn.github.io/stylie/), [RenderForest](https://www.renderforest.com), [Mantra](https://jeremyckahn.github.io/mantra/) or [Lottielab](https://www.lottielab.com/) - Create Motion Graphics
|
* [WebDesigner](https://webdesigner.withgoogle.com/), [T3](https://github.com/tooll3/t3), [Theatre.js](https://www.theatrejs.com/) / [GitHub](https://github.com/theatre-js/theatre), [GSAP](https://gsap.com/), [Stylie](https://jeremyckahn.github.io/stylie/), [RenderForest](https://www.renderforest.com), [Mantra](https://jeremyckahn.github.io/mantra/) or [Lottielab](https://www.lottielab.com/) - Create Motion Graphics
|
||||||
* [useAnimations](https://useanimations.com/index.html) or [LordIcon](https://lordicon.com/) - Animated Icons
|
* [useAnimations](https://useanimations.com/index.html) or [LordIcon](https://lordicon.com/) - Animated Icons
|
||||||
* [Cursor Effects](https://tholman.com/cursor-effects/) - 90s Style Cursors
|
|
||||||
* [NakerApp](https://app.naker.io/back/) - Interactive Background Maker
|
* [NakerApp](https://app.naker.io/back/) - Interactive Background Maker
|
||||||
* [Error404](https://error404.fun/) - Free 404 Pages
|
* [Error404](https://error404.fun/) - Free 404 Pages
|
||||||
* [HTTP Cats](https://http.cat/) - Put Cat Pictures in Your Status Codes
|
* [HTTP Cats](https://http.cat/) - Put Cat Pictures in Your Status Codes
|
||||||
|
@ -885,7 +886,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
|
||||||
|
@ -967,7 +968,7 @@
|
||||||
## ▷ SVG Tools
|
## ▷ SVG Tools
|
||||||
|
|
||||||
* ↪️ **[SVG / Vector Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_svg_icons)**
|
* ↪️ **[SVG / Vector Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_svg_icons)**
|
||||||
* [Method](https://editor.method.ac/), [SVG.wtf](https://svg.wtf/), [Mossaik](https://mossaik.app/) or [SVG Viewer](https://www.svgviewer.dev/) - SVG Editors / Viewers
|
* [Method](https://editor.method.ac/), [SVG.wtf](https://svg.wtf/), [Boxy SVG](https://boxy-svg.com/), [Mossaik](https://mossaik.app/) or [SVG Viewer](https://www.svgviewer.dev/) - SVG Editors / Viewers
|
||||||
* [SVGFilters](https://svgfilters.com/) - SVG Filter Builder
|
* [SVGFilters](https://svgfilters.com/) - SVG Filter Builder
|
||||||
* [Crayon](https://designstripe.com/crayon) or [SVGArtista](https://svgartista.net/) - SVG Animation Tools
|
* [Crayon](https://designstripe.com/crayon) or [SVGArtista](https://svgartista.net/) - SVG Animation Tools
|
||||||
* [SVGO](https://github.com/svg/svgo) or [SVGCrop](https://svgcrop.com/) - SVG Optimization / [GUI](https://jakearchibald.github.io/svgomg/)
|
* [SVGO](https://github.com/svg/svgo) or [SVGCrop](https://svgcrop.com/) - SVG Optimization / [GUI](https://jakearchibald.github.io/svgomg/)
|
||||||
|
@ -1025,7 +1026,7 @@
|
||||||
* [ThreatMap](https://threatmap.checkpoint.com/) or [CyberMap](https://cybermap.kaspersky.com/) - Live Malware Distribution Maps
|
* [ThreatMap](https://threatmap.checkpoint.com/) or [CyberMap](https://cybermap.kaspersky.com/) - Live Malware Distribution Maps
|
||||||
* [The Void](https://www.thevoid.community/) - Software Incident Reports
|
* [The Void](https://www.thevoid.community/) - Software Incident Reports
|
||||||
* [Rawsec's CyberSecurity Inventory](https://inventory.raw.pm/) - Cybersecurity Resources
|
* [Rawsec's CyberSecurity Inventory](https://inventory.raw.pm/) - Cybersecurity Resources
|
||||||
* [CybersecResources](https://github.com/bst04/cybersources) - Cybersecurity Resources
|
* [CybersecResources](https://www.cybersources.site/) - Cybersecurity Resources / [GitHub](https://github.com/bst04/cybersources)
|
||||||
* [Awesome List](https://github.com/0xor0ne/awesome-list) - Cybersecurity Resources
|
* [Awesome List](https://github.com/0xor0ne/awesome-list) - Cybersecurity Resources
|
||||||
* [Cybersecurity-Resources](https://github.com/Nickyie/Cybersecurity-Resources) - Cybersecurity Resources
|
* [Cybersecurity-Resources](https://github.com/Nickyie/Cybersecurity-Resources) - Cybersecurity Resources
|
||||||
* [Infosec Resources](https://github.com/stong/infosec-resources) - Cybersecurity Resources
|
* [Infosec Resources](https://github.com/stong/infosec-resources) - Cybersecurity Resources
|
||||||
|
|
|
@ -92,7 +92,7 @@
|
||||||
* [Linktury](https://www.ddlspot.com/)
|
* [Linktury](https://www.ddlspot.com/)
|
||||||
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search
|
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search
|
||||||
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine
|
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine
|
||||||
* [SkullXDCC](https://skullxdcc.com/ / [2](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
|
* [SkullXDCC](https://skullxdcc.com/) / [2](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
|
||||||
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files
|
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -128,7 +128,7 @@
|
||||||
* ⭐ **[CRACKSurl](https://cracksurl.com/)** / [Telegram](https://t.me/cracksurldotcom)
|
* ⭐ **[CRACKSurl](https://cracksurl.com/)** / [Telegram](https://t.me/cracksurldotcom)
|
||||||
* ⭐ **[LRepacks](https://lrepacks.net/)**
|
* ⭐ **[LRepacks](https://lrepacks.net/)**
|
||||||
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/)
|
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/)
|
||||||
* ⭐ **[soft98](https://soft98.ir/)** - Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) / [Anti-Adblock Fix](https://github.com/uBlockOrigin/uAssets/issues/14480#issuecomment-1907310059)
|
* ⭐ **[soft98](https://soft98.ir/)** - Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) / [Anti-Adblock Fix](https://github.com/AdguardTeam/AdGuardExtra)
|
||||||
* ⭐ **[Nsane Forums](https://www.nsaneforums.com/)** - Signup Required
|
* ⭐ **[Nsane Forums](https://www.nsaneforums.com/)** - Signup Required
|
||||||
* ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search
|
* ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search
|
||||||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations
|
* ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations
|
||||||
|
@ -270,6 +270,7 @@
|
||||||
# ► Leeches / Debrid
|
# ► Leeches / Debrid
|
||||||
|
|
||||||
* 🌐 **[LeechListing](https://www.leechlisting.com/)** or [Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches) - Leech Lists
|
* 🌐 **[LeechListing](https://www.leechlisting.com/)** or [Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches) - Leech Lists
|
||||||
|
* 🌐 **[Debrid Services Comparison](https://debrid-services-comparison.netlify.app/)** / [GitHub](https://github.com/fynks/debrid-services-comparison)
|
||||||
* ⭐ **[Real-Debrid](https://real-debrid.com/)** - Paid Debrid Service / [Android Client](https://github.com/LivingWithHippos/unchained-android) / [Torrent Client](https://github.com/rogerfar/rdt-client) / [DDL Client](https://github.com/ItsYeBoi20/TorrentDownloaderRD)
|
* ⭐ **[Real-Debrid](https://real-debrid.com/)** - Paid Debrid Service / [Android Client](https://github.com/LivingWithHippos/unchained-android) / [Torrent Client](https://github.com/rogerfar/rdt-client) / [DDL Client](https://github.com/ItsYeBoi20/TorrentDownloaderRD)
|
||||||
* ⭐ **[HDEncode](https://hdencode.org/)**, [DDLBase](https://ddlbase.com/) / [.net](https://ddlbase.net/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires Debrid
|
* ⭐ **[HDEncode](https://hdencode.org/)**, [DDLBase](https://ddlbase.com/) / [.net](https://ddlbase.net/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires Debrid
|
||||||
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Quickly Send DDL Links to Premiumize & NoPremium
|
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Quickly Send DDL Links to Premiumize & NoPremium
|
||||||
|
|
|
@ -53,7 +53,6 @@
|
||||||
* [DigitalGarage](https://grow.google/intl/uk/courses-and-tools/) - Google Courses
|
* [DigitalGarage](https://grow.google/intl/uk/courses-and-tools/) - Google Courses
|
||||||
* [Hillsdale College](https://online.hillsdale.edu/) - Courses
|
* [Hillsdale College](https://online.hillsdale.edu/) - Courses
|
||||||
* [OpenHPI](https://open.hpi.de/) - Courses
|
* [OpenHPI](https://open.hpi.de/) - Courses
|
||||||
* [TutsPlus](https://tutsplus.com/) - Courses
|
|
||||||
* [OLI](https://oli.cmu.edu/independent-learner-courses/) - Courses
|
* [OLI](https://oli.cmu.edu/independent-learner-courses/) - Courses
|
||||||
* [LearnOutLoud](https://www.learnoutloud.com/) - Documentaries / Courses
|
* [LearnOutLoud](https://www.learnoutloud.com/) - Documentaries / Courses
|
||||||
* [Video Lectures](https://videolectures.net/) - Lectures
|
* [Video Lectures](https://videolectures.net/) - Lectures
|
||||||
|
@ -172,7 +171,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
|
||||||
|
@ -199,7 +198,7 @@
|
||||||
* [ChinesePosters](https://chineseposters.net/) - Chinese Propaganda Poster History
|
* [ChinesePosters](https://chineseposters.net/) - Chinese Propaganda Poster History
|
||||||
* [Historical Fashion](https://docs.google.com/document/d/1R8eulTsb9Zlc7h2H917dNJZS9s0rIq9OAu7LpSS9F2k/) - Historical Fashion History
|
* [Historical Fashion](https://docs.google.com/document/d/1R8eulTsb9Zlc7h2H917dNJZS9s0rIq9OAu7LpSS9F2k/) - Historical Fashion History
|
||||||
* [PessimistsArchive](https://pessimistsarchive.org/) - Historical Technological Pessimism Archive
|
* [PessimistsArchive](https://pessimistsarchive.org/) - Historical Technological Pessimism Archive
|
||||||
* [Time Portal]()https://www.eggnog.ai/entertimeportal - History Clip Guessing
|
* [Time Portal](https://www.eggnog.ai/entertimeportal) - History Clip Guessing
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -231,6 +230,7 @@
|
||||||
* 🌐 **[Music Outfitters](https://musicoutfitters.com/)** - Music Services / Information
|
* 🌐 **[Music Outfitters](https://musicoutfitters.com/)** - Music Services / Information
|
||||||
* ↪️ **[Sheet Music / Notation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_sheet_music_.2F_notation)**
|
* ↪️ **[Sheet Music / Notation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_sheet_music_.2F_notation)**
|
||||||
* ⭐ **[Muted](https://muted.io/)**, **[Open Music Theory](https://viva.pressbooks.pub/openmusictheory/)** / [2](https://openmusictheory.github.io/), [Chromatone](https://chromatone.center/), [Teoria](https://www.teoria.com/index.php), [SimplifyingTheory](https://www.simplifyingtheory.com/), [LightNote](https://www.lightnote.co/) or [Music Theory](https://www.musictheory.net/) - Music Theory
|
* ⭐ **[Muted](https://muted.io/)**, **[Open Music Theory](https://viva.pressbooks.pub/openmusictheory/)** / [2](https://openmusictheory.github.io/), [Chromatone](https://chromatone.center/), [Teoria](https://www.teoria.com/index.php), [SimplifyingTheory](https://www.simplifyingtheory.com/), [LightNote](https://www.lightnote.co/) or [Music Theory](https://www.musictheory.net/) - Music Theory
|
||||||
|
* [AudioZ](https://audioz.download/tutorials/) - Audio Courses / [Forum](https://audiosex.pro/)
|
||||||
* [Helio](https://helio.fm/) or [NoteHeads](https://noteheads.net/) - Music Composition Tools
|
* [Helio](https://helio.fm/) or [NoteHeads](https://noteheads.net/) - Music Composition Tools
|
||||||
* [MusicKit](https://musickit.jull.dev/) or [Tone Generator](https://www.szynalski.com/tone-generator/) - Metronome, Tuner & Tone Generators
|
* [MusicKit](https://musickit.jull.dev/) or [Tone Generator](https://www.szynalski.com/tone-generator/) - Metronome, Tuner & Tone Generators
|
||||||
* [Tuner Ninja](https://tuner.ninja/) - Instrument Tuner
|
* [Tuner Ninja](https://tuner.ninja/) - Instrument Tuner
|
||||||
|
@ -274,6 +274,7 @@
|
||||||
* ⭐ **[Proko](https://www.youtube.com/user/ProkoTV/videos)** - Humanoid Figure Drawing Lesson
|
* ⭐ **[Proko](https://www.youtube.com/user/ProkoTV/videos)** - Humanoid Figure Drawing Lesson
|
||||||
* ⭐ **[PaintingTube](https://painting.tube)**, [MarcoBucci](https://www.youtube.com/@marcobucci), [Alphonso Dunn](https://www.youtube.com/c/ALPHONSODUNN/videos?view=0&sort=p&flow=grid), [Feng Zhu FZD](https://www.youtube.com/user/FZDSCHOOL/videos), [Art Fundamentals](https://www.youtube.com/playlist?list=PLVgLT-e3jXPDgeED0pD0BPq8kY1VAZAGa) or [Circle Line Art](https://www.youtube.com/user/circlelinemedia/videos) - Art Video Tutorials
|
* ⭐ **[PaintingTube](https://painting.tube)**, [MarcoBucci](https://www.youtube.com/@marcobucci), [Alphonso Dunn](https://www.youtube.com/c/ALPHONSODUNN/videos?view=0&sort=p&flow=grid), [Feng Zhu FZD](https://www.youtube.com/user/FZDSCHOOL/videos), [Art Fundamentals](https://www.youtube.com/playlist?list=PLVgLT-e3jXPDgeED0pD0BPq8kY1VAZAGa) or [Circle Line Art](https://www.youtube.com/user/circlelinemedia/videos) - Art Video Tutorials
|
||||||
* [online-courses](https://online-courses.club/) - Art / Design Courses
|
* [online-courses](https://online-courses.club/) - Art / Design Courses
|
||||||
|
* [TutsPlus](https://tutsplus.com/) - Creative Courses
|
||||||
* [Curriculum for the Solo Artists](https://alexhuneycutt.gumroad.com/l/free_curriculum) - Self-Taught Artist Curriculum / [PDF Version](https://mega.nz/file/sU0AxThb#m96_xISlS-5wtpSrauWFdh8mjhed7EitknQn_XIBaQc) / [Gallery Version](https://i.redd.it/7ns7su264gp31.png), [2](https://imgur.com/a/EZPc28m)
|
* [Curriculum for the Solo Artists](https://alexhuneycutt.gumroad.com/l/free_curriculum) - Self-Taught Artist Curriculum / [PDF Version](https://mega.nz/file/sU0AxThb#m96_xISlS-5wtpSrauWFdh8mjhed7EitknQn_XIBaQc) / [Gallery Version](https://i.redd.it/7ns7su264gp31.png), [2](https://imgur.com/a/EZPc28m)
|
||||||
* [DoArtDaily](https://dad.gallery) - Daily Art Challenges
|
* [DoArtDaily](https://dad.gallery) - Daily Art Challenges
|
||||||
* [Character Design References](https://characterdesignreferences.com/visual-library) - Character Design Visual Library
|
* [Character Design References](https://characterdesignreferences.com/visual-library) - Character Design Visual Library
|
||||||
|
@ -306,7 +307,7 @@
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Geography / Datasets
|
## ▷ Geography / Sociology
|
||||||
|
|
||||||
* 🌐 **[Awesome Datasets](https://github.com/awesomedata/awesome-public-datasets)** - Public Datasets
|
* 🌐 **[Awesome Datasets](https://github.com/awesomedata/awesome-public-datasets)** - Public Datasets
|
||||||
* 🌐 **[Country Infographics](https://rentry.org/o4gq6cq5)** - Country Infographic Images
|
* 🌐 **[Country Infographics](https://rentry.org/o4gq6cq5)** - Country Infographic Images
|
||||||
|
@ -316,7 +317,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/), [Seterra](https://www.seterra.com/#quizzes) or [Teuteuf](https://teuteuf.fr/) - Geography Games / Quizzes
|
* [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
|
||||||
* [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
|
||||||
|
@ -409,6 +410,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
|
||||||
|
@ -483,7 +485,7 @@
|
||||||
* [Earth and Moon Viewer](https://www.fourmilab.ch/cgi-bin/Earth) - Earth / Moon Latitude and Longitude Viewer
|
* [Earth and Moon Viewer](https://www.fourmilab.ch/cgi-bin/Earth) - Earth / Moon Latitude and Longitude Viewer
|
||||||
* [SDO Dashboard](https://sdo.gsfc.nasa.gov/data/dashboard/) - Live Sun Feed
|
* [SDO Dashboard](https://sdo.gsfc.nasa.gov/data/dashboard/) - Live Sun Feed
|
||||||
* [CelesTrack](https://celestrak.org/) - Earth Orbit Visualization
|
* [CelesTrack](https://celestrak.org/) - Earth Orbit Visualization
|
||||||
* [TheSkyLive](https://theskylive.com/) - Solar System Simulators / Information
|
* [TheSkyLive](https://theskylive.com/) or [Atlas of Space](https://atlasof.space/) - Solar System Simulators / Information
|
||||||
* [1 Pixel moon](https://www.joshworth.com/dev/pixelspace/pixelspace_solarsystem.html), [LightYear](https://www.lightyear.fm/) or [OMG SPACE](https://omgspace.net/) - Solar System Scale Model
|
* [1 Pixel moon](https://www.joshworth.com/dev/pixelspace/pixelspace_solarsystem.html), [LightYear](https://www.lightyear.fm/) or [OMG SPACE](https://omgspace.net/) - Solar System Scale Model
|
||||||
* [Marspedia](https://marspedia.org/) - Mars Wiki
|
* [Marspedia](https://marspedia.org/) - Mars Wiki
|
||||||
* [ExoplanetExplore](https://exoplanetexplore.vercel.app) - Interactive Exoplanet Visualization
|
* [ExoplanetExplore](https://exoplanetexplore.vercel.app) - Interactive Exoplanet Visualization
|
||||||
|
@ -534,7 +536,7 @@
|
||||||
* [CalculusMadeEasy](https://calculusmadeeasy.org) - Learn Calculus
|
* [CalculusMadeEasy](https://calculusmadeeasy.org) - Learn Calculus
|
||||||
* [CLP](https://personal.math.ubc.ca/~CLP/) - Calculus Textbooks
|
* [CLP](https://personal.math.ubc.ca/~CLP/) - Calculus Textbooks
|
||||||
* [Mathematics Roadmap](https://github.com/TalalAlrawajfeh/mathematics-roadmap) - Mathematics Book Recommendations
|
* [Mathematics Roadmap](https://github.com/TalalAlrawajfeh/mathematics-roadmap) - Mathematics Book Recommendations
|
||||||
* [Converter Pro](https://f-droid.org/packages/com.ferrarid.converterpro/), [OneConverter](https://oneconverter.com/) or [ConvertAll](https://convertall.bellz.org/) - Unit Converters
|
* [Converter Pro](https://f-droid.org/packages/com.ferrarid.converterpro/), [Rink](https://rinkcalc.app/), [Frink](https://frinklang.org/fsp/frink.fsp), [OneConverter](https://oneconverter.com/) or [ConvertAll](https://convertall.bellz.org/) - Unit Converters / Calculators
|
||||||
* [MathJax](https://www.mathjax.org/) - JavaScript Math Display
|
* [MathJax](https://www.mathjax.org/) - JavaScript Math Display
|
||||||
* [ISciDAVis](https://sourceforge.net/projects/scidavis/) - Scientific Data Plotter
|
* [ISciDAVis](https://sourceforge.net/projects/scidavis/) - Scientific Data Plotter
|
||||||
* [Approach0](https://approach0.xyz/search/) - Math Formula Search
|
* [Approach0](https://approach0.xyz/search/) - Math Formula Search
|
||||||
|
@ -570,9 +572,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)
|
||||||
|
@ -666,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
|
||||||
|
@ -740,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
|
||||||
|
@ -908,7 +909,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) 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
|
||||||
|
@ -941,6 +942,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
|
||||||
* [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
|
||||||
|
@ -1089,7 +1091,6 @@
|
||||||
* [Copetti](https://www.copetti.org/) - In-depth Console Architecture Analysis / [GitHub](https://github.com/flipacholas/Architecture-of-consoles)
|
* [Copetti](https://www.copetti.org/) - In-depth Console Architecture Analysis / [GitHub](https://github.com/flipacholas/Architecture-of-consoles)
|
||||||
* [Web Browser Engineering](https://browser.engineering/) - Learn about Browser Engineering
|
* [Web Browser Engineering](https://browser.engineering/) - Learn about Browser Engineering
|
||||||
* [OSDev Wiki](https://wiki.osdev.org/) - Operating System Dev Wiki
|
* [OSDev Wiki](https://wiki.osdev.org/) - Operating System Dev Wiki
|
||||||
* [OSTEP](https://pages.cs.wisc.edu/~remzi/OSTEP/) - Operating Systems Book
|
|
||||||
* [Wi is Fi](https://www.wiisfi.com/) - Wi-Fi Educational Guide
|
* [Wi is Fi](https://www.wiisfi.com/) - Wi-Fi Educational Guide
|
||||||
* [CPU Land](https://cpu.land/) - What Happens when you run Programs
|
* [CPU Land](https://cpu.land/) - What Happens when you run Programs
|
||||||
* [Computer Science Lecture Links](https://github.com/riti2409/Resources-for-preparation-Of-Placements)
|
* [Computer Science Lecture Links](https://github.com/riti2409/Resources-for-preparation-Of-Placements)
|
||||||
|
@ -1247,7 +1248,7 @@
|
||||||
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile)
|
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile)
|
||||||
* ⭐ **[StudyLion](https://lionbot.org)** - Study Tracker / Productivity Discord Bot / [GitHub](https://github.com/StudyLions/StudyLion)
|
* ⭐ **[StudyLion](https://lionbot.org)** - Study Tracker / Productivity Discord Bot / [GitHub](https://github.com/StudyLions/StudyLion)
|
||||||
* ⭐ **[StudyKit](https://studykit.app/)** [StuDoc](https://www.studocu.com/) / [Downloader](https://github.com/danieltyukov/studocuhack) / [2](https://dlstudocu.com/), [Gizmo](https://gizmo.ai/), [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/), [Shmoop](https://www.shmoop.com/) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material / [Show Hidden](https://greasyfork.org/en/scripts/423872)
|
* ⭐ **[StudyKit](https://studykit.app/)** [StuDoc](https://www.studocu.com/) / [Downloader](https://github.com/danieltyukov/studocuhack) / [2](https://dlstudocu.com/), [Gizmo](https://gizmo.ai/), [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/), [Shmoop](https://www.shmoop.com/) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material / [Show Hidden](https://greasyfork.org/en/scripts/423872)
|
||||||
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Discord](https://discord.gg/jUvBM2sEs4) / [Subreddit](https://www.reddit.com/r/Anki/) / [GitHub](https://github.com/ankidroid/Anki-Android), [StudyLib](https://www.studylib.net/), [RemNote](https://www.remnote.com/), [Flippity](https://www.flippity.net/), [Flashcard Machine](https://www.flashcardmachine.com/), [revisiondojo](https://www.revisiondojo.com/), [Flashka](https://www.flashka.ai/) or [NoteKnight](https://www.noteknight.com) - Flashcard Tools
|
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Discord](https://discord.gg/jUvBM2sEs4) / [Subreddit](https://www.reddit.com/r/Anki/) / [GitHub](https://github.com/ankidroid/Anki-Android), [StudyLib](https://www.studylib.net/), [RemNote](https://www.remnote.com/), [Flippity](https://www.flippity.net/), [Flashcard Machine](https://www.flashcardmachine.com/), [MemoAnki](https://memoanki.com/), [revisiondojo](https://www.revisiondojo.com/), [Flashka](https://www.flashka.ai/) or [NoteKnight](https://www.noteknight.com) - Flashcard Tools
|
||||||
* ⭐ **Anki Tools** - [Add-ons](https://ankiweb.net/shared/addons) / [Decks](https://ankiweb.net/shared/decks) / [Resources](https://github.com/tianshanghong/awesome-anki)
|
* ⭐ **Anki Tools** - [Add-ons](https://ankiweb.net/shared/addons) / [Decks](https://ankiweb.net/shared/decks) / [Resources](https://github.com/tianshanghong/awesome-anki)
|
||||||
* ⭐ **[Coursicle](https://www.coursicle.com/)** - Class Schedule Tracker / Android
|
* ⭐ **[Coursicle](https://www.coursicle.com/)** - Class Schedule Tracker / Android
|
||||||
* ⭐ **[OpenSyllabus](https://opensyllabus.org/)** - Syllabus Search / Info
|
* ⭐ **[OpenSyllabus](https://opensyllabus.org/)** - Syllabus Search / Info
|
||||||
|
@ -1272,18 +1273,17 @@
|
||||||
* [Graded](https://nightdreamgames.com/#graded) - Grades Tracker / Android / [GitHub](https://github.com/NightDreamGames/Graded)
|
* [Graded](https://nightdreamgames.com/#graded) - Grades Tracker / Android / [GitHub](https://github.com/NightDreamGames/Graded)
|
||||||
* [GradesCalculator](https://calculatecgpa.com) - Calculate CGPA & GPA
|
* [GradesCalculator](https://calculatecgpa.com) - Calculate CGPA & GPA
|
||||||
* [CalculateCGPA](https://cgpacalcs.com/) - Calculate GPA
|
* [CalculateCGPA](https://cgpacalcs.com/) - Calculate GPA
|
||||||
* [guIHelp](https://discord.gg/rgF9jY8CpH) - Bartleby, Quizlet, Coursehero & Scribd Discord Bot
|
|
||||||
* [LearnedEasy](https://learnedeasy.com/) - Create Summaries / Quizzes from Books
|
* [LearnedEasy](https://learnedeasy.com/) - Create Summaries / Quizzes from Books
|
||||||
* [SearchifyX](https://github.com/daijro/SearchifyX) - Search Flashcards
|
* [SearchifyX](https://github.com/daijro/SearchifyX) - Search Flashcards
|
||||||
* [ForgetMeNot](https://github.com/tema6120/ForgetMeNot) - Flashcard Mobile App
|
* [ForgetMeNot](https://github.com/tema6120/ForgetMeNot) - Flashcard Mobile App
|
||||||
* [Get Unstuck](https://socratic.org/) or [Brainly](https://brainly.com/) / [Limit Bypass](https://greasyfork.org/en/scripts/430355) - Homework Help Bots / Communities
|
* [Get Unstuck](https://socratic.org/) or [Brainly](https://brainly.com/) / [Limit Bypass](https://greasyfork.org/en/scripts/430355) - Homework Help Bots / Communities
|
||||||
* [Toppr](https://www.toppr.com/), [FreeOnlineTest](https://www.freeonlinetest.in/), [Alloprof](https://www.alloprof.qc.ca/en/) or [AE Old (Discord)](https://discord.gg/VCXGudY) - Test Practice & Homework Help
|
* [Toppr](https://www.toppr.com/), [FreeOnlineTest](https://www.freeonlinetest.in/), [Alloprof](https://www.alloprof.qc.ca/en/) or [AE Old (Discord)](https://discord.gg/VCXGudY) - Test Practice & Homework Help
|
||||||
* [DoubtNut](https://www.doubtnut.com/) - Exam / Solutions / Help / [Ad Bypass](https://redd.it/16da7s9)
|
* [DoubtNut](https://www.doubtnut.com/) - Exam / Solutions / Help
|
||||||
* [MammothMemory](https://mammothmemory.net/index.html) - Visual Memory-Based Solutions
|
* [MammothMemory](https://mammothmemory.net/index.html) - Visual Memory-Based Solutions
|
||||||
* [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 +1292,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,6 +1314,7 @@
|
||||||
|
|
||||||
* 🌐 **[/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
|
||||||
|
* ⭐ **[ExamSide](https://questions.examside.com/)** - Practice / Study Material
|
||||||
* ⭐ **[JEE Hub](https://jeehub.vercel.app/)** or [NovaTrain](https://novatra.in/) - JEE / NEET PYQs
|
* ⭐ **[JEE Hub](https://jeehub.vercel.app/)** or [NovaTrain](https://novatra.in/) - 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
|
||||||
|
@ -1329,7 +1331,7 @@
|
||||||
* ⭐ **[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), [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
|
||||||
|
@ -1382,12 +1384,12 @@
|
||||||
## ▷ Dictionaries
|
## ▷ Dictionaries
|
||||||
|
|
||||||
* 🌐 **[Dictionary Index](https://onelook.com/?d=all_gen)** - List of Online Dictionaries
|
* 🌐 **[Dictionary Index](https://onelook.com/?d=all_gen)** - List of Online Dictionaries
|
||||||
* ⭐ **[The Piracy Glossary](https://rentry.org/The-Piracy-Glossary)** - Piracy Dictionary
|
* ⭐ **[OneLook](https://onelook.com/)** - Multi Dictionary / Thesaurus Search
|
||||||
* ⭐ **[Merriam-Webster](https://www.merriam-webster.com/)** - Dictionary / Thesaurus
|
* ⭐ **[Merriam-Webster](https://www.merriam-webster.com/)** - Dictionary / Thesaurus
|
||||||
* ⭐ **[GoldenDict](https://xiaoyifang.github.io/goldendict-ng/)** / [2](https://sourceforge.net/projects/goldendict/) - Dictionary / [Files](https://rentry.co/FMHYBase64#goldendict-files)
|
* ⭐ **[GoldenDict](https://xiaoyifang.github.io/goldendict-ng/)** / [2](https://sourceforge.net/projects/goldendict/) - Dictionary / [Files](https://rentry.co/FMHYBase64#goldendict-files)
|
||||||
* ⭐ **[TheSage](https://www.sequencepublishing.com/)** - Dictionary / Thesaurus
|
* ⭐ **[TheSage](https://www.sequencepublishing.com/)** - Dictionary / Thesaurus
|
||||||
|
* ⭐ **[The Piracy Glossary](https://rentry.org/The-Piracy-Glossary)** - Piracy Dictionary
|
||||||
* ⭐ **[UrbanDictionary](https://www.urbandictionary.com/)** / [Frontends](https://codeberg.org/zortazert/rural-dictionary/) or [Slangit](https://slang.net/) - Slang Word / Phrase Dictionaries
|
* ⭐ **[UrbanDictionary](https://www.urbandictionary.com/)** / [Frontends](https://codeberg.org/zortazert/rural-dictionary/) or [Slangit](https://slang.net/) - Slang Word / Phrase Dictionaries
|
||||||
* ⭐ **[OneLook](https://onelook.com/)** - Multi Dictionary Search
|
|
||||||
* [NinjaWords](https://ninjawords.com/) - Dictionary
|
* [NinjaWords](https://ninjawords.com/) - Dictionary
|
||||||
* [Wordnik](https://www.wordnik.com/) - Dictionary
|
* [Wordnik](https://www.wordnik.com/) - Dictionary
|
||||||
* [Oxford English Dictionary](https://oed.com/) - Dictionary / [Bypass](https://rentry.co/freeoed)
|
* [Oxford English Dictionary](https://oed.com/) - Dictionary / [Bypass](https://rentry.co/freeoed)
|
||||||
|
@ -1423,8 +1425,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)
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - 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) / [Apps](https://my.jdownloader.org/apps/)
|
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - 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) / [Apps](https://my.jdownloader.org/apps/)
|
||||||
* ⭐ **[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)
|
* [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/)
|
||||||
|
@ -52,8 +52,7 @@
|
||||||
## ▷ Archiving / Compression
|
## ▷ Archiving / Compression
|
||||||
|
|
||||||
* 🌐 **[SuperCompression](https://supercompression.org/)** - File Compression Resources
|
* 🌐 **[SuperCompression](https://supercompression.org/)** - File Compression Resources
|
||||||
* ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** - File Archiver
|
* ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** or **[7-Zip](https://www.7-zip.org/)** - File Archiver
|
||||||
* ⭐ **[7-Zip](https://www.7-zip.org/)** - File Archiver
|
|
||||||
* ⭐ **[PeaZip](https://peazip.github.io/)** - Cross Platform File Archiver
|
* ⭐ **[PeaZip](https://peazip.github.io/)** - Cross Platform File Archiver
|
||||||
* ⭐ **[CompactGUI](https://github.com/IridiumIO/CompactGUI)** or [Compactor](https://github.com/Freaky/Compactor) - Transparent Compression
|
* ⭐ **[CompactGUI](https://github.com/IridiumIO/CompactGUI)** or [Compactor](https://github.com/Freaky/Compactor) - Transparent Compression
|
||||||
* [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums
|
* [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums
|
||||||
|
@ -294,7 +293,7 @@
|
||||||
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / Unlimited / 10 Days after last download
|
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 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://flashbang.sh/), [4](https://fuckingfast.net/), [5](https://trashbytes.net/), [6](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)
|
||||||
* ⭐ **[Catbox](https://catbox.moe/)** - Unlimited / 200MB / Forever
|
* ⭐ **[Catbox](https://catbox.moe/)** - Unlimited / 200MB / Forever
|
||||||
* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB with Account) / Forever
|
* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB with Account) / Forever
|
||||||
* [HIDAN](https://hidan.sh/) - Unlimited / 10+ Days (from upload)
|
* [HIDAN](https://hidan.sh/) - Unlimited / 10+ Days (from upload)
|
||||||
|
@ -326,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
|
||||||
|
@ -339,7 +338,7 @@
|
||||||
* [JUMBOmail](https://www.jumbomail.me/) - 2GB / 7 Days / Email Required
|
* [JUMBOmail](https://www.jumbomail.me/) - 2GB / 7 Days / Email Required
|
||||||
* [DropMB](https://dropmb.com/) - 512MB / 5 Years
|
* [DropMB](https://dropmb.com/) - 512MB / 5 Years
|
||||||
* [FireLoad](https://www.fireload.com/) - 2GB / 60 Days / Account Required
|
* [FireLoad](https://www.fireload.com/) - 2GB / 60 Days / Account Required
|
||||||
* [FileGo](https://filego.app/) - / 30 Days / Account Required
|
* [FileGo](https://filego.app/) - 2GB / 30 Days / Account Required
|
||||||
* [Lufi](https://upload.disroot.org/) - 2GB / 30 Days
|
* [Lufi](https://upload.disroot.org/) - 2GB / 30 Days
|
||||||
* [FilesPayouts](https://filespayouts.com/) - 10GB / Forever / Account Required
|
* [FilesPayouts](https://filespayouts.com/) - 10GB / Forever / Account Required
|
||||||
* [DooDrive](https://doodrive.com/) - 2GB / 30 Days / Account Required
|
* [DooDrive](https://doodrive.com/) - 2GB / 30 Days / Account Required
|
||||||
|
|
|
@ -173,7 +173,7 @@
|
||||||
* ⭐ **[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 / [Discord](https://discord.com/invite/wemod)
|
* [WeMod](https://www.wemod.com/) - Cheats / Trainer Manager / Single Player Only / [Unlocker](https://rentry.co/FMHYBase64#wemod-unlock) / [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)
|
||||||
|
@ -195,13 +195,16 @@
|
||||||
|
|
||||||
## ▷ Game Saves
|
## ▷ Game Saves
|
||||||
|
|
||||||
|
|
||||||
* ↪️ **[File Backup](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_backup) / [Sync](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_sync)**
|
* ↪️ **[File Backup](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_backup) / [Sync](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_sync)**
|
||||||
* ⭐ **[Ludusavi](https://github.com/mtkennerly/ludusavi)** or [GameSave Manager](https://www.gamesave-manager.com/) - Game Save Managers / Backup
|
* ⭐ **[Ludusavi](https://github.com/mtkennerly/ludusavi)** or [GameSave Manager](https://www.gamesave-manager.com/) - Game Save Managers / Backup
|
||||||
|
* [PCGamingWiki](https://www.pcgamingwiki.com/) - Save Locations Listed Under "Game Data"
|
||||||
* [Save Game World](https://www.savegameworld.com/) - PC / PlayStation / Switch / Xbox / Wii
|
* [Save Game World](https://www.savegameworld.com/) - PC / PlayStation / Switch / Xbox / Wii
|
||||||
* [SavegameDownload.com](https://www.savegamedownload.com/) - PC / PlayStation / Switch / Xbox / Android
|
* [SavegameDownload.com](https://www.savegamedownload.com/) - PC / PlayStation / Switch / Xbox / Android
|
||||||
* [YourSaveGames](https://www.yoursavegames.com/) - PC / PSP
|
* [YourSaveGames](https://www.yoursavegames.com/) - PC / PSP
|
||||||
* [SaveGame.Pro](https://savegame.pro/) - PC
|
* [SaveGame.Pro](https://savegame.pro/) - PC
|
||||||
* [Saves For Games](https://savesforgames.com/) - PC
|
* [Saves For Games](https://savesforgames.com/) - PC
|
||||||
|
* [GC Saves](https://gc-saves.com/) - Gamecube / [Discord](https://discord.gg/yb5DFx5)
|
||||||
* [Save Editor Online](https://www.saveeditonline.com/) - Game Save Editor
|
* [Save Editor Online](https://www.saveeditonline.com/) - Game Save Editor
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -236,13 +239,14 @@
|
||||||
* ⭐ **[Aim400kg](https://aim400kg.com/)**, [3D Aim Trainer](https://www.3daimtrainer.com/), [Aimlabs](https://aimlabs.com/), [Aiming.Pro](https://aiming.pro/) or [AimTrainer](https://aimtrainer.io/) - Aim Training
|
* ⭐ **[Aim400kg](https://aim400kg.com/)**, [3D Aim Trainer](https://www.3daimtrainer.com/), [Aimlabs](https://aimlabs.com/), [Aiming.Pro](https://aiming.pro/) or [AimTrainer](https://aimtrainer.io/) - Aim Training
|
||||||
* ⭐ **[Speedrun](https://www.speedrun.com/)** - Speedrunning Streams, Leaderboards, Resources, etc.
|
* ⭐ **[Speedrun](https://www.speedrun.com/)** - Speedrunning Streams, Leaderboards, Resources, etc.
|
||||||
* [GameGuides](https://www.gamerguides.com/), [DotGG](https://dotgg.gg/), [Retro Guides](https://rentry.co/FMHYBase64#retro-game-strategy-guides), [Game8](https://game8.co/), [StrategyWiki](https://strategywiki.org/), [Samurai Gamers](https://samurai-gamers.com/), [UHS Hints](https://www.uhs-hints.com/) or [Kirklands](https://archive.org/details/kirklands-manual-labor-sony-playstation-2-usa-4k-version) - Game Guides
|
* [GameGuides](https://www.gamerguides.com/), [DotGG](https://dotgg.gg/), [Retro Guides](https://rentry.co/FMHYBase64#retro-game-strategy-guides), [Game8](https://game8.co/), [StrategyWiki](https://strategywiki.org/), [Samurai Gamers](https://samurai-gamers.com/), [UHS Hints](https://www.uhs-hints.com/) or [Kirklands](https://archive.org/details/kirklands-manual-labor-sony-playstation-2-usa-4k-version) - Game Guides
|
||||||
* [Maxroll](https://maxroll.gg/) - Game Build Guides
|
* [Maxroll](https://maxroll.gg/) - aRPG Build Guides
|
||||||
* [Voltaic](https://voltaic.gg/) - Aim Benchmark & Guides
|
* [Voltaic](https://voltaic.gg/) - Aim Benchmark & Guides
|
||||||
* [Piper](https://github.com/libratbag/piper) - Gaming Mouse Config Tool
|
* [Piper](https://github.com/libratbag/piper) - Gaming Mouse Config Tool
|
||||||
* [LiveSplit](https://livesplit.org/) - Customizable Speedrun Timer
|
* [LiveSplit](https://livesplit.org/) - Customizable Speedrun Timer
|
||||||
* [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
|
||||||
|
@ -351,6 +355,7 @@
|
||||||
* [Overwatch-Server-Selector](https://github.com/foryVERX/Overwatch-Server-Selector) - Overwatch Server Selector
|
* [Overwatch-Server-Selector](https://github.com/foryVERX/Overwatch-Server-Selector) - Overwatch Server Selector
|
||||||
* [Northstar](https://thunderstore.io/c/northstar/), [2](https://northstar.tf/) - Titanfall 2 Server Hosting & Modding / [GitHub](https://github.com/R2Northstar/Northstar/releases) / [Guide](https://rentry.org/northstar-guide) / [Discord](https://discord.gg/CEszSguY3A)
|
* [Northstar](https://thunderstore.io/c/northstar/), [2](https://northstar.tf/) - Titanfall 2 Server Hosting & Modding / [GitHub](https://github.com/R2Northstar/Northstar/releases) / [Guide](https://rentry.org/northstar-guide) / [Discord](https://discord.gg/CEszSguY3A)
|
||||||
* [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Servers / [Discord](https://discord.com/invite/UBAZFys)
|
* [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Servers / [Discord](https://discord.com/invite/UBAZFys)
|
||||||
|
* [Arctic Combat](https://warfareterritory.net/) - Arctic Combat Server Revival / [Discord](https://discord.gg/JEPt8DFe)
|
||||||
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
|
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
|
||||||
* [Clash of Magic](https://www.clashofmagic.io/) / [Discord](https://discord.gg/eSbkhDF) or [Atrasis](https://atrasisclash.net/) / [Discord](https://discord.gg/wmSjaTJ) - Clash of Clans Private Servers
|
* [Clash of Magic](https://www.clashofmagic.io/) / [Discord](https://discord.gg/eSbkhDF) or [Atrasis](https://atrasisclash.net/) / [Discord](https://discord.gg/wmSjaTJ) - Clash of Clans Private Servers
|
||||||
* [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf)
|
* [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf)
|
||||||
|
@ -482,7 +487,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://rayb78.github.io/minecraft-villager-trade-chart.html)**, [2](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
|
||||||
|
@ -504,7 +509,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
|
||||||
|
@ -530,21 +535,20 @@
|
||||||
## ▷ 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 / [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)
|
* ⭐ **Prism Launcher Tools** - [Free Method](https://rentry.co/prism4free) / [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
|
||||||
* [AstralRinth](https://github.com/DIDIRUS4/AstralRinth) - Modrinth Launcher Fork (Offline Auth/No Ads)
|
|
||||||
* [SkLauncher](https://skmedix.pl/) - User-friendly Launcher
|
* [SkLauncher](https://skmedix.pl/) - User-friendly Launcher
|
||||||
* [UltimMC](https://github.com/UltimMC/Launcher) - Launcher for Cracked Accounts
|
* [UltimMC](https://github.com/UltimMC/Launcher) - Launcher for Cracked Accounts
|
||||||
* [Betacraft](https://betacraft.uk/) - Legacy Versions Launcher
|
* [Betacraft](https://betacraft.uk/) - Legacy Versions Launcher
|
||||||
* [CheatBreaker](https://cheatbreaker.net/) - FPS Modpack Launcher / [GitHub](https://github.com/CheatBreakerNet/Launcher)
|
* [CheatBreaker](https://cheatbreaker.net/) - FPS Modpack Launcher / [GitHub](https://github.com/CheatBreakerNet/Launcher)
|
||||||
* [Legacy Launcher](https://llaun.ch/en) - Launcher / [Discord](https://discord.com/invite/cVJuz5R)
|
|
||||||
* [HMCL](https://hmcl.huangyuhui.net/) - Launcher / [GitHub](https://github.com/HMCL-dev/HMCL)
|
* [HMCL](https://hmcl.huangyuhui.net/) - Launcher / [GitHub](https://github.com/HMCL-dev/HMCL)
|
||||||
* [LabyMod](https://www.labymod.net/) - Launcher
|
* [LabyMod](https://www.labymod.net/) - Launcher
|
||||||
* [Crystal Launcher](https://crystal-launcher.net/) - Launcher
|
* [Crystal Launcher](https://crystal-launcher.net/) - Launcher
|
||||||
* [GDLauncher](https://gdlauncher.com/) - Launcher
|
* [GDLauncher](https://gdlauncher.com/) - Launcher
|
||||||
* [X Minecraft Launcher](https://xmcl.app/) - Launcher
|
* [X Minecraft Launcher](https://xmcl.app/) - Launcher
|
||||||
|
* [Quantum Launcher](https://mrmayman.github.io/quantumlauncher/) - Lightweight Launcher / [Discord](https://discord.com/invite/XN9sW77H) / [GitHub](https://github.com/Mrmayman/quantum-launcher/)
|
||||||
* [Ares](https://www.aresclient.com/) - Client
|
* [Ares](https://www.aresclient.com/) - Client
|
||||||
* [Codex-Ipsa Launcher](https://codex-ipsa.cz/) - Launcher for Older Versions
|
* [Codex-Ipsa Launcher](https://codex-ipsa.cz/) - Launcher for Older Versions
|
||||||
* [Omniarchive](https://omniarchive.uk/) - Download Old Minecraft Versions
|
* [Omniarchive](https://omniarchive.uk/) - Download Old Minecraft Versions
|
||||||
|
@ -640,7 +644,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
|
||||||
* [VoxelSphereGenerator](https://oranj.io/blog/VoxelSphereGenerator), [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
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -707,7 +711,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
|
||||||
|
@ -722,7 +726,7 @@
|
||||||
* [pkNX](https://github.com/kwsch/pkNX) - Switch Pokémon ROM Editor / Randomizer
|
* [pkNX](https://github.com/kwsch/pkNX) - Switch Pokémon ROM Editor / Randomizer
|
||||||
* [Universal Pokémon Randomizer ZX](https://github.com/Ajarmar/universal-pokemon-randomizer-zx/) - Randomize Pokémon (works for GBA to 3DS)
|
* [Universal Pokémon Randomizer ZX](https://github.com/Ajarmar/universal-pokemon-randomizer-zx/) - Randomize Pokémon (works for GBA to 3DS)
|
||||||
* [NYCPokeMap](https://nycpokemap.com/) - Real-Time Pokémon GO Map for NYC
|
* [NYCPokeMap](https://nycpokemap.com/) - Real-Time Pokémon GO Map for NYC
|
||||||
* [PkmnCards](https://pkmncards.com/) or [Limitless](https://limitlesstcg.com/) - Pokémon Card Databases / Resources
|
* [PkmnCards](https://pkmncards.com/), [Pokéllector](https://www.pokellector.com/) or [Limitless](https://limitlesstcg.com/) - Pokémon Card Databases / Resources
|
||||||
* [TCG ONE](https://tcgone.net/) - Online Pokémon Card Game / [Discord](https://discord.gg/MTBGxVE)
|
* [TCG ONE](https://tcgone.net/) - Online Pokémon Card Game / [Discord](https://discord.gg/MTBGxVE)
|
||||||
* [unite-db](https://unite-db.com/) - Pokémon Unite Database
|
* [unite-db](https://unite-db.com/) - Pokémon Unite Database
|
||||||
* [HelixChamber](https://helixchamber.com/) - Unused Pokémon Material
|
* [HelixChamber](https://helixchamber.com/) - Unused Pokémon Material
|
||||||
|
@ -835,7 +839,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
|
||||||
|
@ -846,7 +850,7 @@
|
||||||
|
|
||||||
## ▷ Terraria Tools
|
## ▷ Terraria Tools
|
||||||
|
|
||||||
* ⭐ [Terraria Wiki](https://terraria.wiki.gg/) or [Terranion](https://yal.cc/r/terranion/) - Terraria Wikis
|
* ⭐ **[Terraria Wiki](https://terraria.wiki.gg/)** or [Terranion](https://yal.cc/r/terranion/) - Terraria Wikis
|
||||||
* [Terraria Forum](https://forums.terraria.org/) - Terraria Community, Mods Help and More
|
* [Terraria Forum](https://forums.terraria.org/) - Terraria Community, Mods Help and More
|
||||||
* [TEdit](https://www.binaryconstruct.com/tedit), [terramap](https://terramap.github.io/), [TerraFirma](https://github.com/mrkite/TerraFirma/releases/) or [terraria-map-editor](https://tedit.github.io/terraria-map-editor-web/) - Map Viewers / Editors
|
* [TEdit](https://www.binaryconstruct.com/tedit), [terramap](https://terramap.github.io/), [TerraFirma](https://github.com/mrkite/TerraFirma/releases/) or [terraria-map-editor](https://tedit.github.io/terraria-map-editor-web/) - Map Viewers / Editors
|
||||||
* [Terrasavr](https://yal.cc/r/terrasavr/) - Terraria Character Editor
|
* [Terrasavr](https://yal.cc/r/terrasavr/) - Terraria Character Editor
|
||||||
|
@ -862,6 +866,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
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
* 🌐 **[/r/PiratedGames Mega](https://rentry.org/pgames)** / [Discord](https://discord.gg/dZWwhUy), **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** or **[privateersclub](https://megathread.pages.dev/)** / [Discord](https://discord.gg/jz8dUnnD6Q) - Game Piracy Indexes
|
* 🌐 **[/r/PiratedGames Mega](https://rentry.org/pgames)** / [Discord](https://discord.gg/dZWwhUy), **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** or **[privateersclub](https://megathread.pages.dev/)** / [Discord](https://discord.gg/jz8dUnnD6Q) - Game Piracy Indexes
|
||||||
* 🌐 **[Wotaku](https://wotaku.wiki/games)** / [Discord](https://discord.gg/vShRGx8ZBC) or **[EverythingMoe](https://everythingmoe.com/?section=game)** / [Discord](https://discord.gg/GuueaDgKdS) - Otaku Games Indexes
|
* 🌐 **[Wotaku](https://wotaku.wiki/games)** / [Discord](https://discord.gg/vShRGx8ZBC) or **[EverythingMoe](https://everythingmoe.com/?section=game)** / [Discord](https://discord.gg/GuueaDgKdS) - Otaku Games Indexes
|
||||||
* ↪️ **[Scene Release Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_scene_release_trackers)**
|
* ↪️ **[Scene Release Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_scene_release_trackers)**
|
||||||
* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)** - Download / Forum / Account Required / [Status](https://csrinstaff.writeas.com/) / [Enhancement Mod](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external) / [.onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum)
|
* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)**, [2](https://csrin.org/) - Download / Forum / Account Required / [Status](https://csrinstaff.writeas.com/) / [Enhancement Mod](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external) / [.onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum)
|
||||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||||
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/WkyjpA3Ua9) / PW: `1234` or `steamrip.com`
|
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/WkyjpA3Ua9) / PW: `1234` or `steamrip.com`
|
||||||
* ⭐ **[AnkerGames](https://ankergames.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/nnMnGzDbwg)
|
* ⭐ **[AnkerGames](https://ankergames.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/nnMnGzDbwg)
|
||||||
|
@ -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)
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
|
|
||||||
## ▷ Virtual Reality
|
## ▷ Virtual Reality
|
||||||
|
|
||||||
* ⭐ **[VRPirates](https://vrpirates.wiki/)** - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.com/invite/DcfEpwVa4a)
|
* ⭐ **[VRPirates](https://vrpirates.wiki/)**, [2](https://vrpirates.club/) - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.gg/tBKMZy7QDA)
|
||||||
* ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** - VR Games / [Telegram](https://t.me/ARMGDDNGames)
|
* ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** - VR Games / [Telegram](https://t.me/ARMGDDNGames)
|
||||||
* [/r/QuestPiracy](https://www.reddit.com/r/QuestPiracy/) - Oculus Quest Piracy
|
* [/r/QuestPiracy](https://www.reddit.com/r/QuestPiracy/) - Oculus Quest Piracy
|
||||||
* [SideQuest](https://sidequestvr.com/) - VR Sideloading Platform
|
* [SideQuest](https://sidequestvr.com/) - VR Sideloading Platform
|
||||||
|
@ -108,7 +108,7 @@
|
||||||
* 🌐 **[Awesome Game Remakes](https://github.com/radek-sprta/awesome-game-remakes)** or [Game Clones](https://osgameclones.com/) - Open-Source Remakes
|
* 🌐 **[Awesome Game Remakes](https://github.com/radek-sprta/awesome-game-remakes)** or [Game Clones](https://osgameclones.com/) - Open-Source Remakes
|
||||||
* 🌐 **[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/)**, [2](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 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
|
||||||
|
@ -141,11 +141,12 @@
|
||||||
* [Unciv](https://github.com/yairm210/Unciv) - Civilization V Remake
|
* [Unciv](https://github.com/yairm210/Unciv) - Civilization V Remake
|
||||||
* [FreeCiv](https://www.freeciv.org/) - Civilization Remake / [GitHub](https://github.com/freeciv)
|
* [FreeCiv](https://www.freeciv.org/) - Civilization Remake / [GitHub](https://github.com/freeciv)
|
||||||
* [OpenTTD](https://www.openttd.org/) - Transport Tycoon Remake
|
* [OpenTTD](https://www.openttd.org/) - Transport Tycoon Remake
|
||||||
|
* [FlightGear](https://www.flightgear.org/) - Open-Source Flight Simulator / [GitLab](https://gitlab.com/flightgear/flightgear)
|
||||||
* [CannonBall](https://github.com/djyt/cannonball) - OutRun Remake / [Video](https://youtu.be/t-93kDC8Vac)
|
* [CannonBall](https://github.com/djyt/cannonball) - OutRun Remake / [Video](https://youtu.be/t-93kDC8Vac)
|
||||||
* [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/)
|
||||||
|
@ -177,9 +178,11 @@
|
||||||
* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/)
|
* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/)
|
||||||
* [DoujinStyle](https://doujinstyle.com) - Doujin Games / [Discord](https://discord.com/invite/z2QDFdA)
|
* [DoujinStyle](https://doujinstyle.com) - Doujin Games / [Discord](https://discord.com/invite/z2QDFdA)
|
||||||
* [MoriyaShrine](https://moriyashrine.org/) - Touhou Games
|
* [MoriyaShrine](https://moriyashrine.org/) - Touhou Games
|
||||||
|
* [Kahvibreak](https://bluemaxima.org/kahvibreak/) - Java 2 Micro Mobile Games
|
||||||
* [Planet Casio](https://www.planet-casio.com/Fr/programmes/jeux-casio.php) or [Cemetech](https://cemetech.net/) - Calculator Games
|
* [Planet Casio](https://www.planet-casio.com/Fr/programmes/jeux-casio.php) or [Cemetech](https://cemetech.net/) - Calculator Games
|
||||||
* [UnorthodoxFun](https://github.com/rarelygoeshere/UnorthodoxFun) - Games on Unorthodox Platforms
|
* [UnorthodoxFun](https://github.com/rarelygoeshere/UnorthodoxFun) - Games on Unorthodox Platforms
|
||||||
* [GamesOnPDF](https://github.com/rarelygoeshere/GamesOnPDF) - PDF Games
|
* [GamesOnPDF](https://github.com/rarelygoeshere/GamesOnPDF) - PDF Games
|
||||||
|
* [PyGames](https://www.pygame.org/) - Python Games
|
||||||
* [GrimReaper's Scene ISO Collection](https://archive.org/details/@waffess) - ISO Collection
|
* [GrimReaper's Scene ISO Collection](https://archive.org/details/@waffess) - ISO Collection
|
||||||
* [Redump Forum](http://forum.redump.org/) - Disc Preservation Project
|
* [Redump Forum](http://forum.redump.org/) - Disc Preservation Project
|
||||||
* [/r/CrackSupport](https://reddit.com/r/CrackSupport) - Cracking Discussion / [Matrix](https://matrix.to/#/!MFNtxvVWElrFNHWWRm:nitro.chat?via=nitro.chat&via=envs.net&via=matrix.org) / [Guilded](https://guilded.gg/crackwatch) / [FAQ](https://rentry.co/cracksupport)
|
* [/r/CrackSupport](https://reddit.com/r/CrackSupport) - Cracking Discussion / [Matrix](https://matrix.to/#/!MFNtxvVWElrFNHWWRm:nitro.chat?via=nitro.chat&via=envs.net&via=matrix.org) / [Guilded](https://guilded.gg/crackwatch) / [FAQ](https://rentry.co/cracksupport)
|
||||||
|
@ -271,7 +274,6 @@
|
||||||
* [Emuparadise](https://www.emuparadise.me/) - Emulators / ROMs / [Forum](https://www.epforums.org/) / [Workaround Script](https://web.archive.org/web/20230115181306/https://gist.github.com/byzantium225/484101c7846ce18e514b7b10bf4815c2)
|
* [Emuparadise](https://www.emuparadise.me/) - Emulators / ROMs / [Forum](https://www.epforums.org/) / [Workaround Script](https://web.archive.org/web/20230115181306/https://gist.github.com/byzantium225/484101c7846ce18e514b7b10bf4815c2)
|
||||||
* [ROMsPURE](https://ROMspure.cc/) - Emulators / ROMs
|
* [ROMsPURE](https://ROMspure.cc/) - Emulators / ROMs
|
||||||
* [Romspedia](https://www.romspedia.com/) - Emulators / ROMs
|
* [Romspedia](https://www.romspedia.com/) - Emulators / ROMs
|
||||||
* [ROMs DL](https://romsdl.com/) - Emulators / ROMs
|
|
||||||
* [TechToROMs](https://techtoroms.com/) - Emulators / ROMs
|
* [TechToROMs](https://techtoroms.com/) - Emulators / ROMs
|
||||||
* [RPGOnly](https://rpgonly.com) - ROMs
|
* [RPGOnly](https://rpgonly.com) - ROMs
|
||||||
* [GLoad](https://gload.to/) - ROMs
|
* [GLoad](https://gload.to/) - ROMs
|
||||||
|
@ -314,7 +316,7 @@
|
||||||
* [Super Mario Bros Crossover](https://archive.org/details/SuperMarioCrossoverOffline) - Play SMB with Alternative Characters
|
* [Super Mario Bros Crossover](https://archive.org/details/SuperMarioCrossoverOffline) - Play SMB with Alternative Characters
|
||||||
* [perfect_dark](https://github.com/fgsfdsfgs/perfect_dark), [2](https://github.com/n64decomp/perfect_dark) - Perfect Dark Decompilation
|
* [perfect_dark](https://github.com/fgsfdsfgs/perfect_dark), [2](https://github.com/n64decomp/perfect_dark) - Perfect Dark Decompilation
|
||||||
* [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/danspalace)
|
* [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/) 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
|
||||||
|
@ -374,7 +376,7 @@
|
||||||
# ► Browser Games
|
# ► Browser Games
|
||||||
|
|
||||||
* ↪️ **[Interactive Text Adventures](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_text_adventures)**
|
* ↪️ **[Interactive Text Adventures](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_text_adventures)**
|
||||||
* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Discord](https://discord.gg/Z4gGtJvvn8), [Flash by Night](http://www.flashbynight.com/) or [Flash Library](https://rentry.co/FMHYBase64#software-library-flash) - Flash Game Archives
|
* ⭐ **[Flashpoint](https://flashpointarchive.org/)**, [2](https://bluemaxima.org/) / [Search](https://flashpointproject.github.io/flashpoint-database/) / [Play Online](https://ooooooooo.ooo/) / [Discord](https://discord.gg/Z4gGtJvvn8), [Flash by Night](http://www.flashbynight.com/) or [Flash Library](https://rentry.co/FMHYBase64#software-library-flash) - Flash Game Archives
|
||||||
* ⭐ **[Marble Blast Gold Web](https://marbleblast.vaniverse.io/)** or [Marble Blast Ultra](https://marbleblastultra.randomityguy.me/) - Marble Blast in Browser
|
* ⭐ **[Marble Blast Gold Web](https://marbleblast.vaniverse.io/)** or [Marble Blast Ultra](https://marbleblastultra.randomityguy.me/) - Marble Blast in Browser
|
||||||
* ⭐ **[Allchemy](https://allchemy.io/)** or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.com/InfiniteCraftWiki/) / [Search](https://infinibrowser.wiki/) - Infinite Item Crafting Games
|
* ⭐ **[Allchemy](https://allchemy.io/)** or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.com/InfiniteCraftWiki/) / [Search](https://infinibrowser.wiki/) - Infinite Item Crafting Games
|
||||||
* ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game
|
* ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game
|
||||||
|
@ -390,6 +392,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
|
||||||
|
@ -421,6 +424,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
|
||||||
|
@ -430,6 +434,7 @@
|
||||||
* [watabou](https://watabou.itch.io/) - Browser Games
|
* [watabou](https://watabou.itch.io/) - Browser Games
|
||||||
* [DAN-BALL](https://dan-ball.jp/en/) - Browser Games
|
* [DAN-BALL](https://dan-ball.jp/en/) - Browser Games
|
||||||
* [Miniplay](https://www.miniplay.com/) - Browser Games
|
* [Miniplay](https://www.miniplay.com/) - Browser Games
|
||||||
|
* [GTube](https://gtube.net/), [2](https://gtube.lat/), [3](https://gtube.buzz/), [4](https://gtube.pics/), [5](https://gtube.autos/) - Browser Games
|
||||||
* [Yandex Games](https://yandex.com/games/) - Browser Games
|
* [Yandex Games](https://yandex.com/games/) - Browser Games
|
||||||
* [Arkadium](https://www.arkadium.com/) - Browser Games
|
* [Arkadium](https://www.arkadium.com/) - Browser Games
|
||||||
* [classroom-6x](https://www.classroom-6-x.games/) - Browser Games
|
* [classroom-6x](https://www.classroom-6-x.games/) - Browser Games
|
||||||
|
@ -481,6 +486,7 @@
|
||||||
* [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
|
||||||
|
* [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
|
||||||
|
@ -575,6 +581,7 @@
|
||||||
* [FunNode](https://www.funnode.com/) - Online Board Games
|
* [FunNode](https://www.funnode.com/) - Online Board Games
|
||||||
* [Screentop](https://screentop.gg/) - Online Board Games / [Discord](https://discord.gg/wva8ebh)
|
* [Screentop](https://screentop.gg/) - Online Board Games / [Discord](https://discord.gg/wva8ebh)
|
||||||
* [PartyProject](https://char64.itch.io/partyproject) - Mario Party Style Multiplayer Game
|
* [PartyProject](https://char64.itch.io/partyproject) - Mario Party Style Multiplayer Game
|
||||||
|
* [gTOONS](https://gtoons.app/) - Cartoon Network Strategy Card Game Revival / [Discord](https://discord.gg/KM2ggJtkMr)
|
||||||
* [BlackReds](https://blacksreds.com/) - Multiplayer Card Games
|
* [BlackReds](https://blacksreds.com/) - Multiplayer Card Games
|
||||||
* [FlyOrDie](https://www.flyordie.com/) - Multiplayer Card Games
|
* [FlyOrDie](https://www.flyordie.com/) - Multiplayer Card Games
|
||||||
* [Playok](https://www.playok.com/) - Multiplayer Card Games
|
* [Playok](https://www.playok.com/) - Multiplayer Card Games
|
||||||
|
@ -622,11 +629,12 @@
|
||||||
|
|
||||||
## ▷ Puzzle Games
|
## ▷ Puzzle Games
|
||||||
|
|
||||||
* ⭐ **[Rubik's Cube Explorer](https://iamthecu.be/)**, [Grubiks](https://www.grubiks.com/), [pCubes](https://twistypuzzles.com/forum/viewtopic.php?f=1&t=27054) or [The Cube](https://bsehovac.github.io/the-cube/) - Rubix Cubes / [Guide](https://easiestsolve.com/) / [Solver](https://rubiksolve.com/), [2](https://rubiks-cube-solver.com/) / [Timer](https://cstimer.net/)
|
* ⭐ **[Rubik's Cube Explorer](https://iamthecu.be/)**, [Grubiks](https://www.grubiks.com/), [pCubes](https://twistypuzzles.com/forum/viewtopic.php?f=1&t=27054) or [The Cube](https://bsehovac.github.io/the-cube/) - Rubik's Cubes / [Guide](https://easiestsolve.com/) / [Solver](https://rubiksolve.com/), [2](https://rubiks-cube-solver.com/) / [Timer](https://cstimer.net/)
|
||||||
* ⭐ **[Minesweeper.online](https://minesweeper.online/)** - Minesweeper
|
* ⭐ **[Minesweeper.online](https://minesweeper.online/)** - Minesweeper
|
||||||
* [Simon Tatham's Puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles/) - Multiple Puzzle Games / [Mobile](https://github.com/chrisboyle/sgtpuzzles)
|
* [Simon Tatham's Puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles/) - Multiple Puzzle Games / [Mobile](https://github.com/chrisboyle/sgtpuzzles)
|
||||||
* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws
|
* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws
|
||||||
* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles
|
* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles
|
||||||
|
* [Crosshare](https://crosshare.org/) - Play / Create Crosswords
|
||||||
* [Regex Crossword](https://regexcrossword.com/) - Regex Crosswords
|
* [Regex Crossword](https://regexcrossword.com/) - Regex Crosswords
|
||||||
* [Web Paint-by-Number](https://webpbn.com/) or [Nonograms](https://www.nonograms.org/) - Graphic Crosswords
|
* [Web Paint-by-Number](https://webpbn.com/) or [Nonograms](https://www.nonograms.org/) - Graphic Crosswords
|
||||||
* [Game for the Brain](https://www.gamesforthebrain.com/) - Puzzles / Quizzes
|
* [Game for the Brain](https://www.gamesforthebrain.com/) - Puzzles / Quizzes
|
||||||
|
@ -637,8 +645,8 @@
|
||||||
* [Sokoban](https://suppilulemur.neocities.org/) - Zelda-Themed Sokoban Puzzles
|
* [Sokoban](https://suppilulemur.neocities.org/) - Zelda-Themed Sokoban Puzzles
|
||||||
* [All The 2048](https://true65536.github.io/allthe2048/), [DuckDuckgo 2048](https://duckduckgo.com/?q=play+2048&ia=answer) or [2048](https://play2048.co/) - 2048 Puzzles
|
* [All The 2048](https://true65536.github.io/allthe2048/), [DuckDuckgo 2048](https://duckduckgo.com/?q=play+2048&ia=answer) or [2048](https://play2048.co/) - 2048 Puzzles
|
||||||
* [JetHolt](https://jetholt.com/hacking/), [RebelWithoutACause](https://rebelwithoutarootcause.com/demos/terminal/) or [Aramor](http://aramor.epizy.com/fallout-terminal/main) - Fallout Terminal Hacking Game
|
* [JetHolt](https://jetholt.com/hacking/), [RebelWithoutACause](https://rebelwithoutarootcause.com/demos/terminal/) or [Aramor](http://aramor.epizy.com/fallout-terminal/main) - Fallout Terminal Hacking Game
|
||||||
* [mmmines!](https://mmmines.fly.dev/), [MineJD](https://minesjd.com/) or [m3o](https://play.m3o.xyz/) - Multiplayer Minesweeper
|
* [mmmines!](https://mmmines.fly.dev/), [MinesweeperPro](https://www.minesweeperpro.com/), [MineJD](https://minesjd.com/) or [m3o](https://play.m3o.xyz/) - Multiplayer Minesweeper
|
||||||
* [Minesweeper Infinity](https://www.minesweeperinfinity.com/) - Infinte Minesweeper
|
* [Minesweeper Infinity](https://www.minesweeperinfinity.com/) - Infinite Minesweeper
|
||||||
* [Minesweeper Twist](https://polyreplay.com/minesweepertwist) - Irregular Grid Minesweeper
|
* [Minesweeper Twist](https://polyreplay.com/minesweepertwist) - Irregular Grid Minesweeper
|
||||||
* [PROXX](https://proxx.app/) - Space Minesweeper
|
* [PROXX](https://proxx.app/) - Space Minesweeper
|
||||||
* [Rockbasher](https://www.rockbasher.com/) - Retro Style Puzzle Game
|
* [Rockbasher](https://www.rockbasher.com/) - Retro Style Puzzle Game
|
||||||
|
@ -675,7 +683,7 @@
|
||||||
* [FactoryIdle](https://factoryidle.com/) - Factory Idle Simulator
|
* [FactoryIdle](https://factoryidle.com/) - Factory Idle Simulator
|
||||||
* [Idlescape](https://www.play.idlescape.com/) - Idle MMORPG
|
* [Idlescape](https://www.play.idlescape.com/) - Idle MMORPG
|
||||||
* [ProgressQuest](http://progressquest.com/) - Idle RPG
|
* [ProgressQuest](http://progressquest.com/) - Idle RPG
|
||||||
* [Anti Matter Dimesions](https://ivark.github.io/) - Anti Matter Idle Game
|
* [Anti Matter Dimensions](https://ivark.github.io/) - Anti Matter Idle Game
|
||||||
* [Theory of Magic](https://mathiashjelm.gitlab.io/arcanum/) - Magic Idle Game
|
* [Theory of Magic](https://mathiashjelm.gitlab.io/arcanum/) - Magic Idle Game
|
||||||
* [Succubox](https://www.glaielgames.com/succubox/) - Loot Box Idle Game
|
* [Succubox](https://www.glaielgames.com/succubox/) - Loot Box Idle Game
|
||||||
* [Swarm Simulator](https://www.swarmsim.com/) - Idle Bug Swarm Game
|
* [Swarm Simulator](https://www.swarmsim.com/) - Idle Bug Swarm Game
|
||||||
|
@ -692,7 +700,7 @@
|
||||||
* [Akinator](https://en.akinator.com/) - 20 Questions
|
* [Akinator](https://en.akinator.com/) - 20 Questions
|
||||||
* [Buzzinga](https://buzzinga.io/) - Jeopardy Creator
|
* [Buzzinga](https://buzzinga.io/) - Jeopardy Creator
|
||||||
* [Bestiefy](https://bestiefy.com/) - Friend Quizzes
|
* [Bestiefy](https://bestiefy.com/) - Friend Quizzes
|
||||||
* [WTM](https://whatthemovie.com/), [Moviedle](https://moviedle.xyz/), [Actorle](https://actorle.com/), [Kino.wtf](https://www.kino.wtf/), [Likewise](https://likewise.com/), [Flickle](https://flickle.app/) or [Framed](https://framed.wtf/) - Movie Guessing Games
|
* [WTM](https://whatthemovie.com/), [Moviedle](https://moviedle.xyz/), [Actorle](https://actorle.com/), [Kino.wtf](https://www.kino.wtf/), [Likewise](https://likewise.com/games), [Flickle](https://flickle.app/) or [Framed](https://framed.wtf/) - Movie Guessing Games
|
||||||
* [Cinenerdle](https://www.cinenerdle.app/) or [Cinenerdle2](https://www.cinenerdle2.app/) - Movie Puzzles
|
* [Cinenerdle](https://www.cinenerdle.app/) or [Cinenerdle2](https://www.cinenerdle2.app/) - Movie Puzzles
|
||||||
* [BoxOfficeGA](https://boxofficega.me/) - Box Office Guessing
|
* [BoxOfficeGA](https://boxofficega.me/) - Box Office Guessing
|
||||||
* [Scenewise](https://scenewise.io/) - Movie Scene Order Puzzle
|
* [Scenewise](https://scenewise.io/) - Movie Scene Order Puzzle
|
||||||
|
@ -710,7 +718,7 @@
|
||||||
* [Poeltl](https://poeltl.nbpa.com/) - NBA Guessing Game
|
* [Poeltl](https://poeltl.nbpa.com/) - NBA Guessing Game
|
||||||
* [The Higher Lower Game](https://www.higherlowergame.com/) or [Google Feud](https://googlefeud.com/) - Guess What's Googled More
|
* [The Higher Lower Game](https://www.higherlowergame.com/) or [Google Feud](https://googlefeud.com/) - Guess What's Googled More
|
||||||
* [Graphs](https://www.graphs.world/) - Graph Guessing Game
|
* [Graphs](https://www.graphs.world/) - Graph Guessing Game
|
||||||
* [English Sandwhich](https://englishsandwich.github.io/) - Guess Where Dishes are From
|
* [English Sandwich](https://englishsandwich.github.io/) - Guess Where Dishes are From
|
||||||
* [Guess The Price](https://guesstheprice.net/) - Price Guessing Game
|
* [Guess The Price](https://guesstheprice.net/) - Price Guessing Game
|
||||||
* [Apparle](https://www.apparle.com/) - Apparel Price Guessing Game
|
* [Apparle](https://www.apparle.com/) - Apparel Price Guessing Game
|
||||||
* [Metazooa](https://metazooa.com/) - Animal Guessing Game
|
* [Metazooa](https://metazooa.com/) - Animal Guessing Game
|
||||||
|
@ -722,7 +730,6 @@
|
||||||
* [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
|
||||||
* [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
|
||||||
* [Teuteuf](https://teuteuf.fr/) - Geography 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
|
||||||
* [Wikitrivia](https://wikitrivia.tomjwatson.com/) - Guess Which Event Came First
|
* [Wikitrivia](https://wikitrivia.tomjwatson.com/) - Guess Which Event Came First
|
||||||
* [Human or Not?](https://www.humanornot.ai/) - Guess Human vs. AI
|
* [Human or Not?](https://www.humanornot.ai/) - Guess Human vs. AI
|
||||||
|
@ -731,10 +738,10 @@
|
||||||
|
|
||||||
## ▷ 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
|
||||||
* ⭐ **[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
|
||||||
* [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
|
|
||||||
* [Geohub](https://www.geohub.gg/) - Free GeoGuessr Alt / Requires Google API
|
* [Geohub](https://www.geohub.gg/) - Free GeoGuessr Alt / Requires Google API
|
||||||
* [GuessWhereYouAre](https://guesswhereyouare.com/) - Free GeoGuessr Alt w/ Multiplayer
|
* [GuessWhereYouAre](https://guesswhereyouare.com/) - Free GeoGuessr Alt w/ Multiplayer
|
||||||
* [OpenGuessr](https://openguessr.com/) - Free GeoGuessr Alt w/ Multiplayer
|
* [OpenGuessr](https://openguessr.com/) - Free GeoGuessr Alt w/ Multiplayer
|
||||||
|
@ -744,7 +751,7 @@
|
||||||
* [Tradle](https://games.oec.world/en/tradle/) - Guess Countries by their Exports
|
* [Tradle](https://games.oec.world/en/tradle/) - Guess Countries by their Exports
|
||||||
* [Back Of Your Hand](https://backofyourhand.com/) - Local GeoGuessr
|
* [Back Of Your Hand](https://backofyourhand.com/) - Local GeoGuessr
|
||||||
* [LostGamer](https://lostgamer.io/) - Video Game GeoGuessr
|
* [LostGamer](https://lostgamer.io/) - Video Game GeoGuessr
|
||||||
* [GTA V GeoGuesser](https://gta-geoguesser.com/) - GTA V GeoGuessr
|
* [GTA V GeoGuessr](https://gta-geoguesser.com/) - GTA V GeoGuessr
|
||||||
* [TimeGuessr](https://timeguessr.com/) - Historical Time-period GeoGuessr
|
* [TimeGuessr](https://timeguessr.com/) - Historical Time-period GeoGuessr
|
||||||
* [LanguageGuessr](https://languageguessr.io/) - Language GeoGuessr
|
* [LanguageGuessr](https://languageguessr.io/) - Language GeoGuessr
|
||||||
* [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
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
## ▷ Editing Software
|
## ▷ Editing Software
|
||||||
|
|
||||||
* ⭐ **[m0nkrus](https://w16.monkrus.ws/)** / [2](https://vk.com/monkrus) - Adobe Software Archive / Use VPN / [Block Adobe](https://rentry.co/FMHYBase64#a-dove-is-dumb) / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus)
|
* ⭐ **[m0nkrus](https://w16.monkrus.ws/)** / [2](https://vk.com/monkrus) - Adobe Software Archive / Use VPN / [Block Adobe](https://rentry.co/FMHYBase64#a-dove-is-dumb) / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus)
|
||||||
* ⭐ **[GIMP](https://www.gimp.org/)**
|
* ⭐ **[GIMP](https://www.gimp.org/)** / [Discord](https://discord.gg/kHBNw2B) / [Subreddit](https://www.reddit.com/r/GIMP/)
|
||||||
* ⭐ **GIMP Tools** - [Photoshop UI](https://github.com/Diolinux/PhotoGIMP) / [Texture Synthesizer](https://github.com/bootchk/resynthesizer) / [Batch Editor](https://github.com/alessandrofrancesconi/gimp-plugin-bimp) / [Text Effects](https://github.com/LinuxBeaver?tab=repositories)
|
* ⭐ **GIMP Tools** - [Photoshop UI](https://github.com/Diolinux/PhotoGIMP) / [Texture Synthesizer](https://github.com/bootchk/resynthesizer) / [Batch Editor](https://github.com/alessandrofrancesconi/gimp-plugin-bimp) / [Text Effects](https://github.com/LinuxBeaver?tab=repositories)
|
||||||
* ⭐ **[Pinta Project](https://www.pinta-project.com/)**
|
* ⭐ **[Pinta Project](https://www.pinta-project.com/)**
|
||||||
* [darktable](https://www.darktable.org/) - Virtual Lighttable & Darkroom
|
* [darktable](https://www.darktable.org/) - Virtual Lighttable & Darkroom
|
||||||
|
@ -171,7 +171,7 @@
|
||||||
## ▷ Drawing
|
## ▷ Drawing
|
||||||
|
|
||||||
* ⭐ **[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/)** 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
|
||||||
* [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
|
||||||
|
@ -226,7 +226,7 @@
|
||||||
* [PixelMe](https://pixel-me.tokyo/en/), [Pixel It](https://giventofly.github.io/pixelit/), [Pixelator](https://ronenness.itch.io/pixelator), [Img8Bit](https://img8bit.com/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixelart Converters
|
* [PixelMe](https://pixel-me.tokyo/en/), [Pixel It](https://giventofly.github.io/pixelit/), [Pixelator](https://ronenness.itch.io/pixelator), [Img8Bit](https://img8bit.com/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixelart Converters
|
||||||
* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor
|
* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor
|
||||||
* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker), [Pixel Sprite](https://deep-fold.itch.io/pixel-sprite-generator) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator
|
* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker), [Pixel Sprite](https://deep-fold.itch.io/pixel-sprite-generator) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator
|
||||||
* [Pixelicious](https://www.scenario.com/features/pixelate) - Image to Pixel Art Converter
|
* [Pixelicious](https://www.scenario.com/features/pixelate) or [PixelartVillage](https://pixelartvillage.com/) - Image to Pixel Art Converter
|
||||||
* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor
|
* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor
|
||||||
* [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Scale Pixel Art without Quality Loss
|
* [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Scale Pixel Art without Quality Loss
|
||||||
|
|
||||||
|
@ -259,6 +259,7 @@
|
||||||
* [MemeAtlas](https://www.memeatlas.com/) or [Templates](https://drive.google.com/drive/folders/1Z4PSi2XmZ6x8I891xZSg5Cl4oNEOIRhh) - Meme Templates
|
* [MemeAtlas](https://www.memeatlas.com/) or [Templates](https://drive.google.com/drive/folders/1Z4PSi2XmZ6x8I891xZSg5Cl4oNEOIRhh) - Meme Templates
|
||||||
* [GreenScreenMemes](https://greenscreenmemes.com/) - Green Screen Memes
|
* [GreenScreenMemes](https://greenscreenmemes.com/) - Green Screen Memes
|
||||||
* [iFake](https://ifaketextmessage.com/) - Fake Text Conversation Creator
|
* [iFake](https://ifaketextmessage.com/) - Fake Text Conversation Creator
|
||||||
|
* [Pokémon Battle Creator](http://www.pokemonbattlecreator.com/) - Pokémon Battle Scene Meme Generator
|
||||||
* [Master of all Science](https://masterofallscience.com/) - Rick and Morty Meme Generator
|
* [Master of all Science](https://masterofallscience.com/) - Rick and Morty Meme Generator
|
||||||
* [Frinkiac](https://frinkiac.com/) - Simpsons Meme Generator
|
* [Frinkiac](https://frinkiac.com/) - Simpsons Meme Generator
|
||||||
* [Morbotron](https://morbotron.com/) - Futurama Meme Generator
|
* [Morbotron](https://morbotron.com/) - Futurama Meme Generator
|
||||||
|
@ -278,7 +279,7 @@
|
||||||
|
|
||||||
* 🌐 **[Awesome Design](https://github.com/goabstract/Awesome-Design-Tools)**, [Design Resources](https://github.com/MohamedYoussouf/Design-Resources) or [pilssken](https://pilssken.neocities.org/gainz/) - Design Resources
|
* 🌐 **[Awesome Design](https://github.com/goabstract/Awesome-Design-Tools)**, [Design Resources](https://github.com/MohamedYoussouf/Design-Resources) or [pilssken](https://pilssken.neocities.org/gainz/) - Design Resources
|
||||||
* 🌐 **[archives.design](https://archives.design/)** - Graphic Design Books
|
* 🌐 **[archives.design](https://archives.design/)** - Graphic Design Books
|
||||||
* [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Inspirations
|
* [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [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
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -360,6 +361,7 @@
|
||||||
* [Freeject](https://www.freeject.net/)
|
* [Freeject](https://www.freeject.net/)
|
||||||
* [Cg_peers](https://t.me/Cg_peers)
|
* [Cg_peers](https://t.me/Cg_peers)
|
||||||
* [PNGTree](https://pngtree.com/)
|
* [PNGTree](https://pngtree.com/)
|
||||||
|
* [Dassets Design](https://t.me/dassets_design)
|
||||||
* [TianUI](https://www.titanui.com/)
|
* [TianUI](https://www.titanui.com/)
|
||||||
* [Designer Candies](https://designercandies.net/category/freebies/)
|
* [Designer Candies](https://designercandies.net/category/freebies/)
|
||||||
* [GraphixTree](https://graphixtree.com/)
|
* [GraphixTree](https://graphixtree.com/)
|
||||||
|
@ -378,9 +380,13 @@
|
||||||
* [all_psd](https://vk.com/all_psd)
|
* [all_psd](https://vk.com/all_psd)
|
||||||
* [designbloody](https://vk.com/designbloody)
|
* [designbloody](https://vk.com/designbloody)
|
||||||
* [designarchiv](https://t.me/designarchiv)
|
* [designarchiv](https://t.me/designarchiv)
|
||||||
|
* [outsideotf](https://t.me/s/outsideotf)
|
||||||
|
* [desgang](https://t.me/desgang)
|
||||||
* [grphc dsgn](https://t.me/+xx1YjI6DC4RiZjJk)
|
* [grphc dsgn](https://t.me/+xx1YjI6DC4RiZjJk)
|
||||||
* [creativemrkt](https://t.me/creativemrkt)
|
* [creativemrkt](https://t.me/creativemrkt)
|
||||||
* [freepsdvn](https://freepsdvn.com/)
|
* [freepsdvn](https://freepsdvn.com/)
|
||||||
|
* [PrivateDesigner](https://t.me/privatedesigner)
|
||||||
|
* [Solutioonn](https://t.me/solutioonn)
|
||||||
* [ae-project](https://ae-project.su/)
|
* [ae-project](https://ae-project.su/)
|
||||||
* [godownloads](https://www.godownloads.org/)
|
* [godownloads](https://www.godownloads.org/)
|
||||||
|
|
||||||
|
@ -414,7 +420,6 @@
|
||||||
* [Skybox](https://skybox.blockadelabs.com/) - AI Generated 3D Environments
|
* [Skybox](https://skybox.blockadelabs.com/) - AI Generated 3D Environments
|
||||||
* [Assemblr](https://www.assemblrworld.com/) - Augmented Reality Image Creator
|
* [Assemblr](https://www.assemblrworld.com/) - Augmented Reality Image Creator
|
||||||
* [MeshLab](https://www.meshlab.net/) - 3D Mesh Processing / [GitHub](https://github.com/cnr-isti-vclab/meshlab)
|
* [MeshLab](https://www.meshlab.net/) - 3D Mesh Processing / [GitHub](https://github.com/cnr-isti-vclab/meshlab)
|
||||||
* [ImageToSTL](https://imagetostl.com/) - Convert 2D PNG/JPG Images to 3D STL Mesh Files
|
|
||||||
* [MakeHuman](http://www.makehumancommunity.org/) - 3D Humanoid Modeler
|
* [MakeHuman](http://www.makehumancommunity.org/) - 3D Humanoid Modeler
|
||||||
* [PoseMy.art](https://app.posemy.art/), [SetPose](https://setpose.com/), [DesignDoll](https://terawell.net/en/index.php), [Magic Poser](https://magicposer.com/), [Quickposes](https://quickposes.com/en) or [JustSketchMe](https://app.justsketch.me/) - Posing Tools
|
* [PoseMy.art](https://app.posemy.art/), [SetPose](https://setpose.com/), [DesignDoll](https://terawell.net/en/index.php), [Magic Poser](https://magicposer.com/), [Quickposes](https://quickposes.com/en) or [JustSketchMe](https://app.justsketch.me/) - Posing Tools
|
||||||
* [PoseManiacs](https://www.posemaniacs.com/), [Anatomy Doc](https://photos.google.com/share/AF1QipMbaSTp0BlK1kBCKVvfZzyDhcgCZQuaDBbp8v8Lj6hxnBaNh7YWoKwCPCYr-10--A?pli=1&key=cU5OaV9TVWhoMWlVZERnaEc2YVFKQTJHbnVDeWR3), [Adorkastock](https://www.adorkastock.com/) or [Anatomy360](https://anatomy360.info/anatomy-scan-reference-dump/) - Pose References
|
* [PoseManiacs](https://www.posemaniacs.com/), [Anatomy Doc](https://photos.google.com/share/AF1QipMbaSTp0BlK1kBCKVvfZzyDhcgCZQuaDBbp8v8Lj6hxnBaNh7YWoKwCPCYr-10--A?pli=1&key=cU5OaV9TVWhoMWlVZERnaEc2YVFKQTJHbnVDeWR3), [Adorkastock](https://www.adorkastock.com/) or [Anatomy360](https://anatomy360.info/anatomy-scan-reference-dump/) - Pose References
|
||||||
|
@ -452,7 +457,7 @@
|
||||||
* [Artvee](https://artvee.com/) - Public Domain Artwork
|
* [Artvee](https://artvee.com/) - Public Domain Artwork
|
||||||
* [Behance](https://behance.net/) - Design Projects
|
* [Behance](https://behance.net/) - Design Projects
|
||||||
* [Placeit](https://placeit.net/) - Image Templates
|
* [Placeit](https://placeit.net/) - Image Templates
|
||||||
* [Worldvectorlogo](https://worldvectorlogo.com/), [Logos & Badges Bundle](https://rentry.co/FMHYBase64#logos-badges-bundle), [Brands of the World](https://www.brandsoftheworld.com/), [Logos Download](https://logos-download.com/), [Logodust](https://logodust.com/), [Logowik](https://logowik.com/), [Logo Wine](https://www.logo.wine/), [seeklogo](https://seeklogo.com/), [logospire](https://logospire.com/), [LogoSearch](https://logosear.ch/), [logopond](https://logopond.com/), [SuperTinyIcons](https://edent.github.io/SuperTinyIcons/), [logotouse](https://www.logotouse.com/), [brandeps](https://brandeps.com/), [logolounge](https://www.logolounge.com/), [logomoose](https://www.logomoose.com/) - Logo Designs
|
* [Worldvectorlogo](https://worldvectorlogo.com/), [Logo Source](https://www.logosource.app/), [Logos & Badges Bundle](https://rentry.co/FMHYBase64#logos-badges-bundle), [Brands of the World](https://www.brandsoftheworld.com/), [Logos Download](https://logos-download.com/), [Logodust](https://logodust.com/), [Logowik](https://logowik.com/), [Logo Wine](https://www.logo.wine/), [seeklogo](https://seeklogo.com/), [logospire](https://logospire.com/), [LogoSearch](https://logosear.ch/), [logopond](https://logopond.com/), [SuperTinyIcons](https://edent.github.io/SuperTinyIcons/), [logotouse](https://www.logotouse.com/), [brandeps](https://brandeps.com/), [logolounge](https://www.logolounge.com/), [logomoose](https://www.logomoose.com/) - Logo Search / Designs
|
||||||
* [MariaLetta](https://github.com/MariaLetta/mega-doodles-pack) - Free Doodles
|
* [MariaLetta](https://github.com/MariaLetta/mega-doodles-pack) - Free Doodles
|
||||||
* [Watercolor Collection](https://rentry.co/FMHYBase64#watercolor-collection) - Download Watercolor Pictures
|
* [Watercolor Collection](https://rentry.co/FMHYBase64#watercolor-collection) - Download Watercolor Pictures
|
||||||
* [googleimagerestored](https://git.sr.ht/~fanfare/googleimagesrestored) - Old Google Image Search
|
* [googleimagerestored](https://git.sr.ht/~fanfare/googleimagesrestored) - Old Google Image Search
|
||||||
|
@ -538,7 +543,7 @@
|
||||||
* [Cara](https://cara.app/) - User-Made Art / Fanart
|
* [Cara](https://cara.app/) - User-Made Art / Fanart
|
||||||
* [InkBlot](https://inkblot.art/) - User-Made Art / Fanart
|
* [InkBlot](https://inkblot.art/) - User-Made Art / Fanart
|
||||||
* [Safebooru](https://safebooru.org/) or [TBIB](https://tbib.org/) - Image Boorus
|
* [Safebooru](https://safebooru.org/) or [TBIB](https://tbib.org/) - Image Boorus
|
||||||
* [icons8](https://icons8.com/illustrations), [3D Illustrations](https://3d.khagwal.com/) or [NS-illustration-pack](https://github.com/nsobolewart/NS-illustration-pack) - 3D Illustrations
|
* [icons8](https://icons8.com/illustrations), [LostGeometry](https://lostgeometry.craftwork.design/), [3D Illustrations](https://3d.khagwal.com/) or [NS-illustration-pack](https://github.com/nsobolewart/NS-illustration-pack) - 3D Illustrations
|
||||||
* [StorySet](https://storyset.com/), [unDraw](https://undraw.co/illustrations), [blush](https://blush.design/) or [Humaaans](https://www.humaaans.com/) - Customizable Illustrations
|
* [StorySet](https://storyset.com/), [unDraw](https://undraw.co/illustrations), [blush](https://blush.design/) or [Humaaans](https://www.humaaans.com/) - Customizable Illustrations
|
||||||
* [Pastel](https://usepastel.com/marker-illustrations) - Marker Illustrations
|
* [Pastel](https://usepastel.com/marker-illustrations) - Marker Illustrations
|
||||||
* [Fresh Folk](https://fresh-folk.com/) or [lukaszadam](https://lukaszadam.com/illustrations) - Illustrations of People
|
* [Fresh Folk](https://fresh-folk.com/) or [lukaszadam](https://lukaszadam.com/illustrations) - Illustrations of People
|
||||||
|
@ -784,7 +789,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
|
||||||
|
@ -816,7 +821,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
|
||||||
|
@ -96,7 +96,7 @@ features:
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#BEC23F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-down"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/><path d="M12 10v6"/><path d="m15 13-3 3-3-3"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#BEC23F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-down"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/><path d="M12 10v6"/><path d="m15 13-3 3-3-3"/></svg>
|
||||||
link: /downloadpiracyguide
|
link: /downloadpiracyguide
|
||||||
details:
|
details:
|
||||||
Download all your favourite software, movies, tv shows, music, games and
|
Download all your favourite software, movies, TV shows, music, games and
|
||||||
more!
|
more!
|
||||||
|
|
||||||
- title: Torrenting
|
- title: Torrenting
|
||||||
|
|
|
@ -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
|
||||||
|
@ -89,11 +89,9 @@
|
||||||
* [Campsite.bio](https://campsite.bio/) - Unlimited
|
* [Campsite.bio](https://campsite.bio/) - Unlimited
|
||||||
* [Taplink](https://taplink.at/) - Unlimited
|
* [Taplink](https://taplink.at/) - Unlimited
|
||||||
* [milkshake](https://milkshake.app/) - Unlimited
|
* [milkshake](https://milkshake.app/) - Unlimited
|
||||||
* [LinkSpace.Bio](https://linkspace.bio/) - 250 Limit / Custom URLs
|
|
||||||
* [LinkMix](https://linkmix.co/) - 20 Limit
|
|
||||||
* [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
|
||||||
* [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
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -103,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,20 +112,17 @@
|
||||||
* ↪️ **[IRC Clients / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25B7_irc_tools)**
|
* ↪️ **[IRC Clients / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25B7_irc_tools)**
|
||||||
* ⭐ **[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/)** 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/) 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
|
||||||
* [DJ3D](https://dj3d.io/) - Virtual World Server
|
|
||||||
* [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)
|
||||||
|
@ -141,9 +136,8 @@
|
||||||
|
|
||||||
# ► RSS Tools
|
# ► RSS Tools
|
||||||
|
|
||||||
* 🌐 **[All about RSS](https://github.com/AboutRSS/ALL-about-RSS)** / [Telegram](https://t.me/s/aboutrss), [RSSTango](https://rentry.org/rrstango), [Awesome RSS Feeds](https://github.com/plenaryapp/awesome-rss-feeds) or [RSS](https://gist.github.com/thefranke/63853a6f8c499dc97bc17838f6cedcc2) - RSS Feed / Tool Indexes
|
* 🌐 **[All about RSS](https://github.com/AboutRSS/ALL-about-RSS)** / [Telegram](https://t.me/s/aboutrss), [RSSTango](https://rentry.org/rrstango) or [RSS](https://gist.github.com/thefranke/63853a6f8c499dc97bc17838f6cedcc2) - RSS Feed / Tool Indexes
|
||||||
* [hacker-feeds-cli](https://github.com/Mayandev/hacker-feeds-cli) - GitHub, Reddit, Hacker News & other Feeds
|
* [FeedButler](https://feedbutler.app/en) - RSS to Email
|
||||||
* [rssmail](https://git.panda-roux.dev/rssmail/about/) or [FeedButler](https://feedbutler.app/en) - RSS to Email
|
|
||||||
* [siftrss](https://siftrss.com/) - RSS Feed Filters
|
* [siftrss](https://siftrss.com/) - RSS Feed Filters
|
||||||
* [Want My RSS](https://github.com/Reeywhaar/want-my-rss) - Restores Firefox RSS Features
|
* [Want My RSS](https://github.com/Reeywhaar/want-my-rss) - Restores Firefox RSS Features
|
||||||
* [RSS.app](https://rss.app/) or [Feedle](https://feedle.world/) - RSS Feed Search
|
* [RSS.app](https://rss.app/) or [Feedle](https://feedle.world/) - RSS Feed Search
|
||||||
|
@ -153,6 +147,7 @@
|
||||||
|
|
||||||
## ▷ RSS Readers
|
## ▷ RSS Readers
|
||||||
|
|
||||||
|
* 🌐 **[RSS Feed Reader Index](https://openrss.org/rss-feed-readers)**
|
||||||
* ⭐ **[Feedly](https://feedly.com/)** - RSS Reader / [Notifier](https://olsh.me/Feedly-Notifier/)
|
* ⭐ **[Feedly](https://feedly.com/)** - RSS Reader / [Notifier](https://olsh.me/Feedly-Notifier/)
|
||||||
* ⭐ **[RSS Guard](https://github.com/martinrotter/rssguard)** - RSS Reader / [Scraper](https://github.com/Owyn/CSS2RSS) / [Discord](https://discord.com/invite/7xbVMPPNqH)
|
* ⭐ **[RSS Guard](https://github.com/martinrotter/rssguard)** - RSS Reader / [Scraper](https://github.com/Owyn/CSS2RSS) / [Discord](https://discord.com/invite/7xbVMPPNqH)
|
||||||
* ⭐ **[Inoreader](https://www.inoreader.com/)** - RSS Reader
|
* ⭐ **[Inoreader](https://www.inoreader.com/)** - RSS Reader
|
||||||
|
@ -163,6 +158,7 @@
|
||||||
* [NewsFlash](https://gitlab.com/news-flash/news_flash_gtk) - RSS Reader
|
* [NewsFlash](https://gitlab.com/news-flash/news_flash_gtk) - RSS Reader
|
||||||
* [Miniflux](https://miniflux.app/) - RSS Reader
|
* [Miniflux](https://miniflux.app/) - RSS Reader
|
||||||
* [Photon](https://git.sr.ht/~ghost08/photon) - RSS Reader
|
* [Photon](https://git.sr.ht/~ghost08/photon) - RSS Reader
|
||||||
|
* [Feed Flow](https://www.feedflow.dev/) - RSS Reader / [GitHub](https://github.com/prof18/feed-flow)
|
||||||
* [selfoss](https://selfoss.aditu.de/) - RSS Reader
|
* [selfoss](https://selfoss.aditu.de/) - RSS Reader
|
||||||
* [gorss](https://github.com/Lallassu/gorss) - RSS Reader
|
* [gorss](https://github.com/Lallassu/gorss) - RSS Reader
|
||||||
* [NewsPipe](https://github.com/cedricbonhomme/newspipe) - RSS Reader
|
* [NewsPipe](https://github.com/cedricbonhomme/newspipe) - RSS Reader
|
||||||
|
@ -178,12 +174,11 @@
|
||||||
## ▷ RSS Feed Generators
|
## ▷ RSS Feed Generators
|
||||||
|
|
||||||
* ⭐ **[RSS Bridge](https://rss-bridge.org/bridge01/)** / [GitHub](https://github.com/RSS-Bridge/rss-bridge)
|
* ⭐ **[RSS Bridge](https://rss-bridge.org/bridge01/)** / [GitHub](https://github.com/RSS-Bridge/rss-bridge)
|
||||||
* ⭐ **[Feedless](https://feedless.org/)**
|
* ⭐ **[Feedless](https://feedless.org/)** / [GitHub](https://github.com/damoeb/feedless)
|
||||||
* [MoRSS](https://morss.it/)
|
* [MoRSS](https://morss.it/)
|
||||||
* [RSSHub](https://github.com/DIYgod/RSSHub)
|
* [RSSHub](https://github.com/DIYgod/RSSHub)
|
||||||
* [Open RSS](https://openrss.org/)
|
* [Open RSS](https://openrss.org/)
|
||||||
* [RSS Please](https://rsspls.7bit.org/)
|
* [RSS Finder](https://rss-finder.rook1e.com/) / [GitHub](https://github.com/0x2E/rss-finder)
|
||||||
* [RSS Finder](https://rss-finder.rook1e.com/)
|
|
||||||
* [FetchRSS](https://fetchrss.com/)
|
* [FetchRSS](https://fetchrss.com/)
|
||||||
* [RSS Diffbot](https://rss.diffbot.com/)
|
* [RSS Diffbot](https://rss.diffbot.com/)
|
||||||
* [RuSShdown](https://chaiaeran.github.io/RuSShdown/)
|
* [RuSShdown](https://chaiaeran.github.io/RuSShdown/)
|
||||||
|
@ -253,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/)
|
||||||
|
@ -335,10 +330,8 @@
|
||||||
* [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
|
* [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
|
||||||
* [pyFuzz](https://github.com/AyoobAli/pyfuzz) - URL Fuzzing Tool
|
|
||||||
* [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
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -347,7 +340,8 @@
|
||||||
|
|
||||||
* ⭐ **[Bypass All Shortlinks](https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/)** - Bypass Link Shorteners
|
* ⭐ **[Bypass All Shortlinks](https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/)** - Bypass Link Shorteners
|
||||||
* ⭐ **[Bypass.vip](https://bypass.vip/)** - Ad Links Bypasser / [Userscript](https://github.com/bypass-vip/userscript/raw/refs/heads/main/bypass-vip.user.js) / [Discord](https://bypass.vip/discord)
|
* ⭐ **[Bypass.vip](https://bypass.vip/)** - Ad Links Bypasser / [Userscript](https://github.com/bypass-vip/userscript/raw/refs/heads/main/bypass-vip.user.js) / [Discord](https://bypass.vip/discord)
|
||||||
* [TimerHooker](https://greasyfork.org/en/scripts/372673) - Skip Timers on File Hosts
|
* [bypass.link](https://bypass.link/) - Bypass Link Shorteners
|
||||||
|
* [TimerHooker](https://greasyfork.org/en/scripts/372673) - Skip Timers on File Hosts
|
||||||
* [bypass.city](https://bypass.city/), [2](https://adbypass.org/) - Bypass Link Shorteners / [Discord](https://discord.gg/bypass-city)
|
* [bypass.city](https://bypass.city/), [2](https://adbypass.org/) - Bypass Link Shorteners / [Discord](https://discord.gg/bypass-city)
|
||||||
* [BypassUnlock](https://bypassunlock.com/) - Bypass Link Shorteners
|
* [BypassUnlock](https://bypassunlock.com/) - Bypass Link Shorteners
|
||||||
* [Adsbypasser](https://adsbypasser.github.io/) - Bypass Link Shorteners
|
* [Adsbypasser](https://adsbypasser.github.io/) - Bypass Link Shorteners
|
||||||
|
@ -396,9 +390,6 @@
|
||||||
* [Goo.su](https://goo.su/) - `goo.su/7pNRjy7` / [Chrome Extension](https://chromewebstore.google.com/detail/free-link-shortener-goosu/clcoifeibkncgnegebeehkodandleohn)
|
* [Goo.su](https://goo.su/) - `goo.su/7pNRjy7` / [Chrome Extension](https://chromewebstore.google.com/detail/free-link-shortener-goosu/clcoifeibkncgnegebeehkodandleohn)
|
||||||
* [AI6](https://ai6.net/) - `ai6.net/nm3tyz`
|
* [AI6](https://ai6.net/) - `ai6.net/nm3tyz`
|
||||||
* [SmartLnks](https://smartlnks.com/) - `smartlnks.com/Vjr0m`
|
* [SmartLnks](https://smartlnks.com/) - `smartlnks.com/Vjr0m`
|
||||||
* [Bitly](https://bitly.com/) - `bit.ly/3cmqPIu` / Account Required / [Reveal URL](https://i.ibb.co/tQVKYRq/3a97e5dd64b2.png)
|
|
||||||
* [Sum.vn](https://sum.vn/) - `sum.vn/DTrXk` / Account Required
|
|
||||||
* [S.EE](https://s.ee/) - `u.nu/5nhzi` / Account Required
|
|
||||||
* [Anon.to](https://anon.to/) - Anonymous URLs / `anon.to/7SWqpG`
|
* [Anon.to](https://anon.to/) - Anonymous URLs / `anon.to/7SWqpG`
|
||||||
* [Thinfi](https://thinfi.com/) - Password Protected Short Links / `thinfi.com/q8aw`
|
* [Thinfi](https://thinfi.com/) - Password Protected Short Links / `thinfi.com/q8aw`
|
||||||
* [emojied](https://emojied.net/) - Emoji URL Shortener
|
* [emojied](https://emojied.net/) - Emoji URL Shortener
|
||||||
|
@ -491,7 +482,7 @@
|
||||||
* [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension
|
* [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension
|
||||||
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
||||||
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
||||||
* [MailTickingl](https://www.mailticking.com/) - Gmail / 2 Domains
|
* [MailTicking](https://www.mailticking.com/) - Gmail / 2 Domains
|
||||||
* [YOPmail](https://yopmail.com/email-generator) - Forever / 8 Days / 100+ Domains
|
* [YOPmail](https://yopmail.com/email-generator) - Forever / 8 Days / 100+ Domains
|
||||||
* [TempMail.Plus](https://tempmail.plus/en/) - Forever / 7 Days / 9 Domains / [.onion](http://tempmail4gi5qfqzjs2bxo3wf6eurpelxmior6ohzq5vw7aeay67wiyd.onion/)
|
* [TempMail.Plus](https://tempmail.plus/en/) - Forever / 7 Days / 9 Domains / [.onion](http://tempmail4gi5qfqzjs2bxo3wf6eurpelxmior6ohzq5vw7aeay67wiyd.onion/)
|
||||||
* [instant-email.org](https://instant-email.org/) - Forever / 3 Days / 7 Domains
|
* [instant-email.org](https://instant-email.org/) - Forever / 3 Days / 7 Domains
|
||||||
|
@ -510,6 +501,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
|
||||||
|
@ -520,6 +512,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
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -527,12 +520,11 @@
|
||||||
## ▷ Email Aliasing
|
## ▷ Email Aliasing
|
||||||
|
|
||||||
* ⭐ **[SimpleLogin](https://simplelogin.io/)** - Email Aliasing / [Subreddit](https://www.reddit.com/r/Simplelogin/) / [X](https://x.com/SimpleLogin) / [GitHub](https://github.com/simple-login/app)
|
* ⭐ **[SimpleLogin](https://simplelogin.io/)** - Email Aliasing / [Subreddit](https://www.reddit.com/r/Simplelogin/) / [X](https://x.com/SimpleLogin) / [GitHub](https://github.com/simple-login/app)
|
||||||
* ⭐ **[addy.io](https://addy.io/)** - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy)
|
|
||||||
* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing
|
* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing
|
||||||
|
* ⭐ **[addy.io](https://addy.io/)** - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy)
|
||||||
* [Mailgw](https://mailgw.com/) - Email Aliasing
|
* [Mailgw](https://mailgw.com/) - Email Aliasing
|
||||||
* [erine.email](https://erine.email/) - Email Aliasing
|
* [erine.email](https://erine.email/) - Email Aliasing
|
||||||
* [33mail](https://33mail.com/) - Email Aliasing
|
* [33mail](https://33mail.com/) - Email Aliasing
|
||||||
* [forwardemail](https://github.com/forwardemail/forwardemail.net) - Email Aliasing
|
|
||||||
* [TrashMail](https://trashmail.com/) - Email Aliasing
|
* [TrashMail](https://trashmail.com/) - Email Aliasing
|
||||||
* [Adguard Mail](https://adguard-mail.com/) - Email Aliasing
|
* [Adguard Mail](https://adguard-mail.com/) - Email Aliasing
|
||||||
|
|
||||||
|
@ -542,13 +534,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
|
||||||
|
@ -561,8 +553,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
|
||||||
|
@ -624,10 +615,11 @@
|
||||||
* ↪️ **[Bookmark Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_bookmark_managers)**
|
* ↪️ **[Bookmark Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_bookmark_managers)**
|
||||||
* ↪️ **[Tab Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_tab_managers)**
|
* ↪️ **[Tab Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_tab_managers)**
|
||||||
* ↪️ **[Browser Startpages](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_browser_startpages)**
|
* ↪️ **[Browser Startpages](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_browser_startpages)**
|
||||||
* ⭐ **[Stylus](https://add0n.com/stylus.html)** - Custom Website Color Schemes / [User Styles](https://userstyles.world/), [2](https://uso.kkx.one/) / [Oldschool Styles](https://forum.spacehey.com/topic?id=90895) / [Catppuccin](https://github.com/catppuccin/userstyles)
|
* ⭐ **[Stylus](https://add0n.com/stylus.html)** - Custom Website Color Schemes / [User Styles](https://userstyles.world/), [2](https://uso.kkx.one/) / [OLED](https://github.com/zettaexa/userstyles) / [Oldschool](https://forum.spacehey.com/topic?id=90895) / [Catppuccin](https://github.com/catppuccin/userstyles)
|
||||||
* ⭐ **[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
|
||||||
|
@ -640,7 +632,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
|
||||||
|
@ -676,7 +667,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
|
||||||
|
@ -702,7 +693,7 @@
|
||||||
|
|
||||||
* 🌐 **[Firefox Addons](https://addons.mozilla.org/en-US/firefox/extensions/)** - Firefox Addon Store
|
* 🌐 **[Firefox Addons](https://addons.mozilla.org/en-US/firefox/extensions/)** - Firefox Addon Store
|
||||||
* ⭐ **[FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/)** - Tab Tools
|
* ⭐ **[FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/)** - Tab Tools
|
||||||
* ⭐ **[Context Search](https://addons.mozilla.org/en-US/firefox/addon/contextsearch-web-ext/)** - Search Selected Text / Multi Site Search
|
* ⭐ **[Context Search](https://addons.mozilla.org/en-US/firefox/addon/contextsearch/)** or [Context Search Web](https://addons.mozilla.org/en-US/firefox/addon/contextsearch-web-ext/) - Search Selected Text / Multi Site Search
|
||||||
* [Firefox Containers](https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/), [Container Tab Groups](https://addons.mozilla.org/en-US/firefox/addon/container-tab-groups/) or [Temporary Containers](https://addons.mozilla.org/en-US/firefox/addon/temporary-containers/) - Separate Firefox Sessions / [Guide](https://www.thechiefmeat.com/guides/containers.html)
|
* [Firefox Containers](https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/), [Container Tab Groups](https://addons.mozilla.org/en-US/firefox/addon/container-tab-groups/) or [Temporary Containers](https://addons.mozilla.org/en-US/firefox/addon/temporary-containers/) - Separate Firefox Sessions / [Guide](https://www.thechiefmeat.com/guides/containers.html)
|
||||||
* [FoxyLink](https://addons.mozilla.org/en-US/firefox/addon/foxylink/) - Link Tools
|
* [FoxyLink](https://addons.mozilla.org/en-US/firefox/addon/foxylink/) - Link Tools
|
||||||
* [Multithreaded Download Manager](https://addons.mozilla.org/en-US/firefox/addon/multithreaded-download-manager/) - Download Manager
|
* [Multithreaded Download Manager](https://addons.mozilla.org/en-US/firefox/addon/multithreaded-download-manager/) - Download Manager
|
||||||
|
@ -710,11 +701,11 @@
|
||||||
* [FX Cast](https://hensm.github.io/fx_cast/) - Enable Chromecast in Firefox
|
* [FX Cast](https://hensm.github.io/fx_cast/) - Enable Chromecast in Firefox
|
||||||
* [Firefox Scripts](https://github.com/xiaoxiaoflood/firefox-scripts) - Chrome Extensions in Firefox
|
* [Firefox Scripts](https://github.com/xiaoxiaoflood/firefox-scripts) - Chrome Extensions in Firefox
|
||||||
* [Dark Background and Light Text](https://github.com/m-khvoinitsky/dark-background-light-text-extension) - Dark Mode
|
* [Dark Background and Light Text](https://github.com/m-khvoinitsky/dark-background-light-text-extension) - Dark Mode
|
||||||
* [New Tab Override](https://www.soeren-hentzschel.at/firefox-webextensions/new-tab-override/) - Pick Site that Opens in New Tabs
|
* [New Tab Override](https://www.soeren-hentzschel.at/firefox-webextensions/new-tab-override/) - Pick Site that Opens in New Tabs / [GitHub](https://github.com/cadeyrn/newtaboverride)
|
||||||
* [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
|
* [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
|
||||||
|
@ -897,4 +888,4 @@
|
||||||
* [OSINTgeek](https://osintgeek.de/tools) - General Index
|
* [OSINTgeek](https://osintgeek.de/tools) - General Index
|
||||||
* [OSINT for Countries](https://github.com/wddadk/OSINT-for-countries) / [V2](https://github.com/paulpogoda/OSINT-for-countries-V2.0) - Indexes Organized by Country
|
* [OSINT for Countries](https://github.com/wddadk/OSINT-for-countries) / [V2](https://github.com/paulpogoda/OSINT-for-countries-V2.0) - Indexes Organized by Country
|
||||||
* [DiscordOSINT](https://github.com/husseinmuhaisen/DiscordOSINT) - Discord OSINT Index
|
* [DiscordOSINT](https://github.com/husseinmuhaisen/DiscordOSINT) - Discord OSINT Index
|
||||||
* [Awesome Telegram OSINT](https://github.com/ItIsMeCall911/Awesome-Telegram-OSINT) or [The OSINT Toolbox](https://github.com/The-Osint-Toolbox/Telegram-OSINT) - Telegram OSINT Indexes
|
* [Awesome Telegram OSINT](https://github.com/ItIsMeCall911/Awesome-Telegram-OSINT) or [The OSINT Toolbox](https://github.com/The-Osint-Toolbox/Telegram-OSINT) - Telegram OSINT Indexes
|
|
@ -315,7 +315,6 @@
|
||||||
* [BlueComet](https://cs.rin.ru/forum/viewtopic.php?f=20&t=142413&hilit=bluecomet) - Offline Steam DRM Bypass / DLC Unlocker
|
* [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)
|
||||||
|
@ -412,7 +411,7 @@
|
||||||
* [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool
|
* [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool
|
||||||
* [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner
|
* [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner
|
||||||
* [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI
|
* [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI
|
||||||
* [Knapsu](https://knapsu.eu/plex/) or [Cloudbox](https://cloudbox.works/) - Media Server
|
* [Knapsu](https://knapsu.eu/plex/) - 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
|
||||||
|
@ -510,6 +509,7 @@
|
||||||
|
|
||||||
## ▷ Ricing / Customization
|
## ▷ Ricing / Customization
|
||||||
|
|
||||||
|
* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** - Linux Ricing Resources
|
||||||
* ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux
|
* ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux
|
||||||
* ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)** or **[Aylur's GTK Shell](https://github.com/Aylur/ags)** - Widgeting Systems
|
* ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)** or **[Aylur's GTK Shell](https://github.com/Aylur/ags)** - Widgeting Systems
|
||||||
* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer
|
* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer
|
||||||
|
@ -553,7 +553,7 @@
|
||||||
* [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), [Cider](https://cider.sh/) or [VOX Mac Music Player](https://vox.rocks/mac-music-player) - Audio Players
|
* [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
|
* [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
|
* [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player
|
||||||
* [SoundSeer](https://github.com/jonathangarelick/SoundSeer) - Spotify in Menu Bar
|
* [SoundSeer](https://github.com/jonathangarelick/SoundSeer) - Spotify in Menu Bar
|
||||||
|
@ -593,7 +593,6 @@
|
||||||
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
|
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
|
||||||
* [Tachimanga](https://tachimanga.app/) / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/tech/repo) - Manga Reader / [Discord](https://discord.gg/8aMcdYdaBz)
|
* [Tachimanga](https://tachimanga.app/) / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/tech/repo) - Manga Reader / [Discord](https://discord.gg/8aMcdYdaBz)
|
||||||
* [Dialect](https://github.com/dialect-app/dialect) - Translator
|
* [Dialect](https://github.com/dialect-app/dialect) - Translator
|
||||||
* [Flow](https://wisprflow.ai/) - Audio Transcription Tools
|
|
||||||
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Strflow](https://strflow.app/), [Kyun](https://github.com/lennart-finke/kyun), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
|
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Strflow](https://strflow.app/), [Kyun](https://github.com/lennart-finke/kyun), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
|
||||||
* [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
|
||||||
|
@ -677,7 +676,7 @@
|
||||||
* [SelfControlApp](https://selfcontrolapp.com/) - Website Blocker
|
* [SelfControlApp](https://selfcontrolapp.com/) - Website Blocker
|
||||||
* [Typist](https://apps.apple.com/us/app/typist/id415166115?ign-mpt=uo%3D4&mt=12) - Typing Practice
|
* [Typist](https://apps.apple.com/us/app/typist/id415166115?ign-mpt=uo%3D4&mt=12) - Typing Practice
|
||||||
* [Comet](https://apps.apple.com/us/app/comet-for-reddit/id1146204813) or [OpenArtemis](https://apps.apple.com/app/id6473462587) - Reddit Clients
|
* [Comet](https://apps.apple.com/us/app/comet-for-reddit/id1146204813) or [OpenArtemis](https://apps.apple.com/app/id6473462587) - Reddit Clients
|
||||||
* [Sink It](https://apps.apple.com/us/app/sink-it-for-reddit/id6449873635) - Reddit Enhancement Extension
|
* [Sink It](https://apps.apple.com/us/app/sink-it-for-reddit/id6449873635) - Reddit Enhancement Extension
|
||||||
* [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Grayscale Control
|
* [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Grayscale Control
|
||||||
* [macOSicons](https://macosicons.com/) - Icons
|
* [macOSicons](https://macosicons.com/) - Icons
|
||||||
* [equinux](https://equinux.github.io/) - OS X Certificate Fix
|
* [equinux](https://equinux.github.io/) - OS X Certificate Fix
|
||||||
|
|
|
@ -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
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
* [DeletedCity](http://deletedcity.net/) or [Restorativland](https://geocities.restorativland.org/) - Geocities Site Indexes
|
* [DeletedCity](http://deletedcity.net/) or [Restorativland](https://geocities.restorativland.org/) - Geocities Site Indexes
|
||||||
* [National Archives](https://www.nationalarchives.gov.uk/webarchive/) - UK Government Site Archive
|
* [National Archives](https://www.nationalarchives.gov.uk/webarchive/) - UK Government Site Archive
|
||||||
* [The Hive Index](https://thehiveindex.com/) - Online Communities Index
|
* [The Hive Index](https://thehiveindex.com/) - Online Communities Index
|
||||||
* [Gazetteer of Wikis](https://meta.miraheze.org/wiki/Gazetteer_of_wikis) or [WikiDiscover](https://meta.miraheze.org/wiki/Special:WikiDiscover) - Miraheze Wiki Indexes
|
* [Gazetteer of Wikis](https://meta.miraheze.org/wiki/Gazetteer_of_wikis), [Wiki Stats](https://wikistats.wmcloud.org/display.php?t=mh) or [WikiDiscover](https://meta.miraheze.org/wiki/Special:WikiDiscover) - Miraheze Wiki Indexes
|
||||||
* [NetSplit](https://netsplit.de/) - IRC Channel Index
|
* [NetSplit](https://netsplit.de/) - IRC Channel Index
|
||||||
* [Creative Commons](https://github.com/fmhy/FMHYedit/issues/1386#issuecomment-1906854653) - Creative Commons Content Sites
|
* [Creative Commons](https://github.com/fmhy/FMHYedit/issues/1386#issuecomment-1906854653) - Creative Commons Content Sites
|
||||||
* [Cyberlife](https://cyberpunk-life.neocities.org/) - Cyberpunk-Related Content / Sites Index
|
* [Cyberlife](https://cyberpunk-life.neocities.org/) - Cyberpunk-Related Content / Sites Index
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
* ⭐ **[Ripped](https://ripped.guide/)** - Piracy Index / [Discord](https://discord.ripped.guide/)
|
* ⭐ **[Ripped](https://ripped.guide/)** - Piracy Index / [Discord](https://discord.ripped.guide/)
|
||||||
* ⭐ **[Awesome Piracy](https://shakil-shahadat.github.io/awesome-piracy/)** - Piracy Index / [GitHub](https://github.com/Shakil-Shahadat/awesome-piracy)
|
* ⭐ **[Awesome Piracy](https://shakil-shahadat.github.io/awesome-piracy/)** - Piracy Index / [GitHub](https://github.com/Shakil-Shahadat/awesome-piracy)
|
||||||
* ⭐ **[/r/PiratedGames Megathread](https://rentry.org/pgames)** - Game Piracy Index / [Discord](https://discord.gg/dZWwhUy)
|
* ⭐ **[/r/PiratedGames Megathread](https://rentry.org/pgames)** - Game Piracy Index / [Discord](https://discord.gg/dZWwhUy)
|
||||||
* ⭐ **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** - Game Piracy Index
|
* ⭐ **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)**, [2](https://csrin.org/) - Game Piracy Index
|
||||||
* ⭐ **[privateersclub](https://megathread.pages.dev/)** - Game Piracy Index / [Discord](https://discord.gg/jz8dUnnD6Q)
|
* ⭐ **[privateersclub](https://megathread.pages.dev/)** - Game Piracy Index / [Discord](https://discord.gg/jz8dUnnD6Q)
|
||||||
* ⭐ **[The Index](https://theindex.moe)** - Japanese Piracy Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
* ⭐ **[The Index](https://theindex.moe)** - Japanese Piracy Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||||
* ⭐ **[Wotaku](https://wotaku.wiki/)** - Otaku Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
* ⭐ **[Wotaku](https://wotaku.wiki/)** - Otaku Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||||
|
@ -226,12 +226,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
|
||||||
|
@ -255,6 +255,7 @@
|
||||||
|
|
||||||
## ▷ Flights
|
## ▷ Flights
|
||||||
|
|
||||||
|
* ⭐ **[ADS-B Exchange](https://globe.adsbexchange.com/)**, [FlightRadar24](https://www.flightradar24.com/), [FlightStats](https://www.flightstats.com/), [PlaneFinder](https://planefinder.net/), [Airplanes.live](https://globe.airplanes.live/), [Radarbox](https://www.airnavradar.com/) or [FlightAware](https://www.flightaware.com/) - Live Flight Trackers
|
||||||
* ⭐ **[Passport Index](https://www.passportindex.org/)** - Passport Ratings
|
* ⭐ **[Passport Index](https://www.passportindex.org/)** - Passport Ratings
|
||||||
* ⭐ **[Visa Guide](https://visaguide.world/)** or [VisaIndex](https://visaindex.com/) - Worldwide Travel Visa Guides
|
* ⭐ **[Visa Guide](https://visaguide.world/)** or [VisaIndex](https://visaindex.com/) - Worldwide Travel Visa Guides
|
||||||
* [Travel Safe Abroad](https://www.travelsafe-abroad.com/) - Travel Destination Safety Ratings
|
* [Travel Safe Abroad](https://www.travelsafe-abroad.com/) - Travel Destination Safety Ratings
|
||||||
|
@ -263,7 +264,6 @@
|
||||||
* [Matrix](https://matrix.itasoftware.com/) - Airfare Search
|
* [Matrix](https://matrix.itasoftware.com/) - Airfare Search
|
||||||
* [FlightConnections](https://www.flightconnections.com/) - Interactive Flight Routes
|
* [FlightConnections](https://www.flightconnections.com/) - Interactive Flight Routes
|
||||||
* [SkyVector](https://skyvector.com/) - Flight Planner
|
* [SkyVector](https://skyvector.com/) - Flight Planner
|
||||||
* [FlightRadar24](https://www.flightradar24.com/), [FlightStats](https://www.flightstats.com/), [PlaneFinder](https://planefinder.net/), [ADS-B Exchange](https://globe.adsbexchange.com/), [Radarbox](https://www.airnavradar.com/) or [FlightAware](https://www.flightaware.com/) - Live Flight Trackers
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -342,6 +342,7 @@
|
||||||
* [Tropical Tidbits](https://www.tropicaltidbits.com/) - Hurricane Forecast Models
|
* [Tropical Tidbits](https://www.tropicaltidbits.com/) - Hurricane Forecast Models
|
||||||
* [FloodMap](https://www.floodmap.net/) - Sea Level / Flood Map
|
* [FloodMap](https://www.floodmap.net/) - Sea Level / Flood Map
|
||||||
* [Snow Forcast](https://www.snow-forecast.com/maps) - Snow Forcast Maps
|
* [Snow Forcast](https://www.snow-forecast.com/maps) - Snow Forcast Maps
|
||||||
|
* [AtticRadar](https://atticradar.steepatticstairs.net/) - Advanced Weather Radar / NOAA Stations
|
||||||
* [Tornado Archive](https://tornadoarchive.com/) - Tornado Archive Data Explorer
|
* [Tornado Archive](https://tornadoarchive.com/) - Tornado Archive Data Explorer
|
||||||
* [Find Your Tornado Shelter](https://findyourtornadoshelter.com/) - Tornado Shelter Map
|
* [Find Your Tornado Shelter](https://findyourtornadoshelter.com/) - Tornado Shelter Map
|
||||||
* [Blitzortung.org](https://www.blitzortung.org/en/live_lightning_maps.php) or [Lightning Maps](https://www.lightningmaps.org/) - Lightning / Thunderstorms Maps
|
* [Blitzortung.org](https://www.blitzortung.org/en/live_lightning_maps.php) or [Lightning Maps](https://www.lightningmaps.org/) - Lightning / Thunderstorms Maps
|
||||||
|
@ -367,6 +368,7 @@
|
||||||
* [Aporee](https://aporee.org/maps/) - World Map of Sounds
|
* [Aporee](https://aporee.org/maps/) - World Map of Sounds
|
||||||
* [Cost of Living](https://www.numbeo.com/cost-of-living/) - Cost of Living Map
|
* [Cost of Living](https://www.numbeo.com/cost-of-living/) - Cost of Living Map
|
||||||
* [MoveMap](https://www.movemap.io/) - North America Property Costs Map
|
* [MoveMap](https://www.movemap.io/) - North America Property Costs Map
|
||||||
|
* [ExoRoad](https://www.exoroad.com/) - Find Places to Live via Description
|
||||||
* [Beacon](https://beacon.schneidercorp.com/) - Property Info / Map Search
|
* [Beacon](https://beacon.schneidercorp.com/) - Property Info / Map Search
|
||||||
* [World Population Density](https://luminocity3d.org/WorldPopDen/) - Population Density Map
|
* [World Population Density](https://luminocity3d.org/WorldPopDen/) - Population Density Map
|
||||||
* [FIRMS](https://firms.modaps.eosdis.nasa.gov/map/) - Fire / Thermal Anomalies Map
|
* [FIRMS](https://firms.modaps.eosdis.nasa.gov/map/) - Fire / Thermal Anomalies Map
|
||||||
|
@ -394,7 +396,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
|
||||||
|
@ -404,6 +406,7 @@
|
||||||
* [Library of Congress](https://www.loc.gov/collections/?fa=partof:geography+and+map+division) - LOC Historic Maps Archive
|
* [Library of Congress](https://www.loc.gov/collections/?fa=partof:geography+and+map+division) - LOC Historic Maps Archive
|
||||||
* [Historic Borders](https://historicborders.app/) - Borders History Map
|
* [Historic Borders](https://historicborders.app/) - Borders History Map
|
||||||
* [American Panorama](https://dsl.richmond.edu/panorama/) - Interactive US History Maps
|
* [American Panorama](https://dsl.richmond.edu/panorama/) - Interactive US History Maps
|
||||||
|
* [NLS Maps](https://maps.nls.uk/) - Historical Maps of Scotland
|
||||||
* [Imperium](https://imperium.ahlfeldt.se/) - Digital Atlas of the Roman Empire
|
* [Imperium](https://imperium.ahlfeldt.se/) - Digital Atlas of the Roman Empire
|
||||||
* [Ancient Earth](https://dinosaurpictures.org/ancient-earth) - Globe of Ancient Earth
|
* [Ancient Earth](https://dinosaurpictures.org/ancient-earth) - Globe of Ancient Earth
|
||||||
* [1940s NYC](https://1940s.nyc/) - Explore 1940's New York
|
* [1940s NYC](https://1940s.nyc/) - Explore 1940's New York
|
||||||
|
@ -469,7 +472,7 @@
|
||||||
* [FinURLs](https://finurls.com/) - Finance & Business News
|
* [FinURLs](https://finurls.com/) - Finance & Business News
|
||||||
* [Web3 Is Going Great](https://www.web3isgoinggreat.com/) - Web3 Disaster News
|
* [Web3 Is Going Great](https://www.web3isgoinggreat.com/) - Web3 Disaster News
|
||||||
* [Citizen](https://citizen.com/explore) - Real Time Local News (US Only)
|
* [Citizen](https://citizen.com/explore) - Real Time Local News (US Only)
|
||||||
* [POTUS Tracker](https://potustracker.us/) or [WikiPolitica](https://wikipolitica.org/) - Track Presidential Executive Orders, Location & more
|
* [POTUS Tracker](https://potustracker.us/), [GovData](https://www.govactionlist.com/) or [WikiPolitica](https://wikipolitica.org/) - Government Executive Orders, Location & more
|
||||||
* [PlaneCrashInfo](https://www.planecrashinfo.com/) or [AVHerald](https://avherald.com/) - Aviation Incidents / News
|
* [PlaneCrashInfo](https://www.planecrashinfo.com/) or [AVHerald](https://avherald.com/) - Aviation Incidents / News
|
||||||
* [Read Something Interesting](https://readsomethinginteresting.com/), [Read Something Wonderful](https://readsomethingwonderful.com/), [Read Something Great](https://www.readsomethinggreat.com/) or [BoredReading](https://boredreading.com/) - Random Articles / Blog Posts
|
* [Read Something Interesting](https://readsomethinginteresting.com/), [Read Something Wonderful](https://readsomethingwonderful.com/), [Read Something Great](https://www.readsomethinggreat.com/) or [BoredReading](https://boredreading.com/) - Random Articles / Blog Posts
|
||||||
* [Media Bias Fact Check](https://drmikecrowe.github.io/mbfcext/), [ground.news](https://ground.news/extension) or [HonestyMeter](https://www.honestymeter.com/) - Media Bias Checkers
|
* [Media Bias Fact Check](https://drmikecrowe.github.io/mbfcext/), [ground.news](https://ground.news/extension) or [HonestyMeter](https://www.honestymeter.com/) - Media Bias Checkers
|
||||||
|
@ -485,7 +488,7 @@
|
||||||
* ⭐ **[Upstract](https://upstract.com/)**
|
* ⭐ **[Upstract](https://upstract.com/)**
|
||||||
* ⭐ **[QotNews](https://news.t0.vc/)** - Hacker News / Reddit / Lobsters / Tildes
|
* ⭐ **[QotNews](https://news.t0.vc/)** - Hacker News / Reddit / Lobsters / Tildes
|
||||||
* ⭐ **[Anime Blog Tracker](https://aniblogtracker.com/)** - Anime News Blogs
|
* ⭐ **[Anime Blog Tracker](https://aniblogtracker.com/)** - Anime News Blogs
|
||||||
* [Littleberg](https://mozberg.com/) - News Search
|
* [Mozberg](https://mozberg.com/) - News Search
|
||||||
* [NewsMinimalist](https://www.newsminimalist.com/) or [Brief](https://www.brief.news/) - AI News Aggregators
|
* [NewsMinimalist](https://www.newsminimalist.com/) or [Brief](https://www.brief.news/) - AI News Aggregators
|
||||||
* [devo](https://github.com/karakanb/devo) - New Tab Page News Extension
|
* [devo](https://github.com/karakanb/devo) - New Tab Page News Extension
|
||||||
* [RealClearPolitics](https://www.realclearpolitics.com/), [Ground News](https://ground.news/), [AllSides](https://www.allsides.com/), [SPIDR](https://spidr.today/) or [LegibleNews](https://legiblenews.com/) - Political News / World Events
|
* [RealClearPolitics](https://www.realclearpolitics.com/), [Ground News](https://ground.news/), [AllSides](https://www.allsides.com/), [SPIDR](https://spidr.today/) or [LegibleNews](https://legiblenews.com/) - Political News / World Events
|
||||||
|
@ -551,6 +554,7 @@
|
||||||
* [HG Search](https://hgsearch.ridhom.dev/) - HealthyGamerGG Keyword Search
|
* [HG Search](https://hgsearch.ridhom.dev/) - HealthyGamerGG Keyword Search
|
||||||
* [Medito](https://github.com/meditohq/medito-app) or [Heartfulness](https://www.heartfulnessapp.org/) - Meditation App
|
* [Medito](https://github.com/meditohq/medito-app) or [Heartfulness](https://www.heartfulnessapp.org/) - Meditation App
|
||||||
* [Meditation Infographic](https://i.ibb.co/BNWDCbS/2552-IIB-Meditation.png) - Meditation Techniques
|
* [Meditation Infographic](https://i.ibb.co/BNWDCbS/2552-IIB-Meditation.png) - Meditation Techniques
|
||||||
|
* [Conversations](https://conversations.movember.com/en/conversations/) - Mental Health Conversation Practice
|
||||||
* [Balance](https://balance.dvy.io/) - Challenge Anxious Thoughts with AI
|
* [Balance](https://balance.dvy.io/) - Challenge Anxious Thoughts with AI
|
||||||
* [Plees Tracker](https://vmiklos.hu/plees-tracker/) - Sleep Tracker
|
* [Plees Tracker](https://vmiklos.hu/plees-tracker/) - Sleep Tracker
|
||||||
* [TripSit](https://tripsit.me/) / [Discord](https://discord.gg/tripsit), [Drugs.com](https://www.drugs.com/) or [DrugBank](https://go.drugbank.com/) - Drug Information / Side Effects
|
* [TripSit](https://tripsit.me/) / [Discord](https://discord.gg/tripsit), [Drugs.com](https://www.drugs.com/) or [DrugBank](https://go.drugbank.com/) - Drug Information / Side Effects
|
||||||
|
@ -747,6 +751,7 @@
|
||||||
* [ChatProfolio](https://chatprofolio.vercel.app/) or [PeerList](https://peerlist.io/) - Portfolio Builders
|
* [ChatProfolio](https://chatprofolio.vercel.app/) or [PeerList](https://peerlist.io/) - Portfolio Builders
|
||||||
* [Dopefolio](https://github.com/rammcodes/Dopefolio) - Developer Portfolio Template
|
* [Dopefolio](https://github.com/rammcodes/Dopefolio) - Developer Portfolio Template
|
||||||
* [CoFolios](https://cofolios.com/) - Portfolio Sharing
|
* [CoFolios](https://cofolios.com/) - Portfolio Sharing
|
||||||
|
* [Resume Builder](https://resume.haveloc.com/)
|
||||||
* [ResumeMatcher](https://www.resumematcher.fyi/)
|
* [ResumeMatcher](https://www.resumematcher.fyi/)
|
||||||
* [resumonk](https://www.resumonk.com/)
|
* [resumonk](https://www.resumonk.com/)
|
||||||
* [Resuminator](https://www.resuminator.in/)
|
* [Resuminator](https://www.resuminator.in/)
|
||||||
|
@ -784,7 +789,8 @@
|
||||||
* [Remote Jobs](https://remotejobs.com/) - Remote Jobs
|
* [Remote Jobs](https://remotejobs.com/) - Remote Jobs
|
||||||
* [himalayas](https://himalayas.app/) - Remote Jobs
|
* [himalayas](https://himalayas.app/) - Remote Jobs
|
||||||
* [We Work Remotely](https://weworkremotely.com/) - Remote Jobs
|
* [We Work Remotely](https://weworkremotely.com/) - Remote Jobs
|
||||||
* [FlexHired](https://flexhired.com/) - Remote Jobs
|
* [TangerineFeed](https://tangerinefeed.net/) - Remote Jobs
|
||||||
|
* [FlexHired](https://flexhired.com/) - Remote Jobs
|
||||||
* [CareerVault](https://careervault.io/) - Remote Jobs
|
* [CareerVault](https://careervault.io/) - Remote Jobs
|
||||||
* [NoDesk](https://nodesk.co/) - Remote Jobs
|
* [NoDesk](https://nodesk.co/) - Remote Jobs
|
||||||
* [Remote OK](https://remoteok.com/) - Remote Jobs
|
* [Remote OK](https://remoteok.com/) - Remote Jobs
|
||||||
|
@ -955,7 +961,7 @@
|
||||||
|
|
||||||
* ⭐ **[PCPartPicker](https://pcpartpicker.com/)**, [Newegg PC Builder](https://www.newegg.com/tools/custom-pc-builder) or [CGDirector](https://www.cgdirector.com/pc-builder/) - PC Building Sites
|
* ⭐ **[PCPartPicker](https://pcpartpicker.com/)**, [Newegg PC Builder](https://www.newegg.com/tools/custom-pc-builder) or [CGDirector](https://www.cgdirector.com/pc-builder/) - PC Building Sites
|
||||||
* ⭐ **[/r/PCMasterrace Wiki](https://www.reddit.com/r/pcmasterrace/wiki/builds/)**, [/r/BuildaPC Wiki](https://www.reddit.com/r/buildapc/wiki/index), [PC Tiers](https://pctiers.com/) or [Logical Increments](https://www.logicalincrements.com/) - PC Building Guides / **[Video](https://youtu.be/s1fxZ-VWs2U)**
|
* ⭐ **[/r/PCMasterrace Wiki](https://www.reddit.com/r/pcmasterrace/wiki/builds/)**, [/r/BuildaPC Wiki](https://www.reddit.com/r/buildapc/wiki/index), [PC Tiers](https://pctiers.com/) or [Logical Increments](https://www.logicalincrements.com/) - PC Building Guides / **[Video](https://youtu.be/s1fxZ-VWs2U)**
|
||||||
* ⭐ **[NanoReview](https://nanoreview.net/en)**, [Octoparts](https://octopart.com/), [Technical City](https://technical.city/), [TechPowerup](https://www.techpowerup.com/) or [Techspecs](https://techspecs.io/) - Hardware Comparisons
|
* ⭐ **[NanoReview](https://nanoreview.net/)**, [Octoparts](https://octopart.com/), [Technical City](https://technical.city/), [TechPowerup](https://www.techpowerup.com/) or [Techspecs](https://techspecs.io/) - Hardware Comparisons
|
||||||
* ⭐ **[rtings](https://www.rtings.com/)** - Hardware Reviews / Clear Cookies Reset Limit
|
* ⭐ **[rtings](https://www.rtings.com/)** - Hardware Reviews / Clear Cookies Reset Limit
|
||||||
* ⭐ **[Open Benchmarking](https://openbenchmarking.org/)** - Hardware Benchmarks
|
* ⭐ **[Open Benchmarking](https://openbenchmarking.org/)** - Hardware Benchmarks
|
||||||
* ⭐ **[GSMArena](https://www.gsmarena.com/)**, [Prepaid Compare](https://prepaidcompare.net/), [PhoneDB](https://phonedb.net/), [GSMChoice](https://www.gsmchoice.com/en/) or [Kimovil](https://www.kimovil.com/en/) - Compare Phones / Prices
|
* ⭐ **[GSMArena](https://www.gsmarena.com/)**, [Prepaid Compare](https://prepaidcompare.net/), [PhoneDB](https://phonedb.net/), [GSMChoice](https://www.gsmchoice.com/en/) or [Kimovil](https://www.kimovil.com/en/) - Compare Phones / Prices
|
||||||
|
@ -971,9 +977,9 @@
|
||||||
* [Disk Prices](https://diskprices.com/) - Disk Price Tracker
|
* [Disk Prices](https://diskprices.com/) - Disk Price Tracker
|
||||||
* [Jarrod's Tech](https://jarrods.tech/resources/) or [SuggestALaptop](https://discord.gg/pes68JM) (discord) - Laptop Suggestions
|
* [Jarrod's Tech](https://jarrods.tech/resources/) or [SuggestALaptop](https://discord.gg/pes68JM) (discord) - Laptop Suggestions
|
||||||
* [Laptop Wiki](https://laptopwiki.eu/) - Laptop Info Database
|
* [Laptop Wiki](https://laptopwiki.eu/) - Laptop Info 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
|
||||||
|
@ -1006,15 +1012,15 @@
|
||||||
* [PSPrices](https://psprices.com/)
|
* [PSPrices](https://psprices.com/)
|
||||||
* [EpicGamesDC](https://epicgamesdb.info/) - Epic Store Price Tracker
|
* [EpicGamesDC](https://epicgamesdb.info/) - Epic Store Price Tracker
|
||||||
* [PriceCharting](https://www.pricecharting.com/) - Game, Comic & Trading Card Price Tracker
|
* [PriceCharting](https://www.pricecharting.com/) - Game, Comic & Trading Card Price Tracker
|
||||||
* [DekuDeals](https://www.dekudeals.com/) or [NTDeals](https://ntdeals.net/) - Switch Game Price Trackers
|
* [DekuDeals](https://www.dekudeals.com/), [NTDeals](https://ntdeals.net/) or [AppGG](https://appagg.com/) - Switch Game Price Trackers
|
||||||
* [PS Deals](https://psdeals.net/) or [XB Deals](https://xbdeals.net/) - Game Price Trackers
|
* [PS Deals](https://psdeals.net/) or [XB Deals](https://xbdeals.net/) - Game Price Trackers
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Toys / Figures
|
## ▷ Toys / Collectibles
|
||||||
|
|
||||||
* [MyFigureCollection](https://myfigurecollection.net/) - Japanese Pop-Culture Merch Database
|
* [MyFigureCollection](https://myfigurecollection.net/) - Japanese Pop-Culture Merch Database
|
||||||
* [Pokechange](https://en.pokechange.net/) - Buy / Sell Pokémon Cards
|
* [Pokechange](https://en.pokechange.net/) or [Misprint](https://www.misprint.com/) - Buy / Sell Pokémon Cards
|
||||||
* [Dinosaur Toy Blog](https://dinotoyblog.com/) or [Animal Toy Blog](https://animaltoyforum.com/blog/) - Animal Toy Reviews
|
* [Dinosaur Toy Blog](https://dinotoyblog.com/) or [Animal Toy Blog](https://animaltoyforum.com/blog/) - Animal Toy Reviews
|
||||||
* [Ty Collector](https://tycollector.com/) or [Beaniepedia](https://beaniepedia.com/) - Ty Collectibles Databases
|
* [Ty Collector](https://tycollector.com/) or [Beaniepedia](https://beaniepedia.com/) - Ty Collectibles Databases
|
||||||
* [Matchbox University](http://mbx-u.com/) - Matchbox Car Database
|
* [Matchbox University](http://mbx-u.com/) - Matchbox Car Database
|
||||||
|
@ -1054,9 +1060,9 @@
|
||||||
* [barcodrod.io](https://barcodrod.io/) or [QR Code Scan](https://qrcodescan.in/) - QR Code Scanners
|
* [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
|
* [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)
|
||||||
|
@ -1100,7 +1106,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
|
||||||
|
@ -1109,6 +1115,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
|
||||||
|
@ -1213,6 +1220,7 @@
|
||||||
* ↪️ **[4chan Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_4chan_archives)**
|
* ↪️ **[4chan Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_4chan_archives)**
|
||||||
* ⭐ **[SakugaBooru](https://www.sakugabooru.com/)** - Anime Animation Booru / [Enhancements](https://chromewebstore.google.com/detail/sakuga-extended/khmnmdaghmhkcbooicndamlhkcmpklmc)
|
* ⭐ **[SakugaBooru](https://www.sakugabooru.com/)** - Anime Animation Booru / [Enhancements](https://chromewebstore.google.com/detail/sakuga-extended/khmnmdaghmhkcbooicndamlhkcmpklmc)
|
||||||
* [loc.alize](https://loc.alize.us/) - Explore Earth via Images
|
* [loc.alize](https://loc.alize.us/) - Explore Earth via Images
|
||||||
|
* [Newgrounds Auditorium](https://bluemaxima.org/auditorium/) - Newground Flash Animation Archive
|
||||||
* [MSPFA](https://mspfa.com/) - MS Paint Fan Adventures
|
* [MSPFA](https://mspfa.com/) - MS Paint Fan Adventures
|
||||||
* [GigaMacro](https://viewer.gigamacro.com/) or [Gigapan](https://www.gigapan.com/) - Panoramic Photography
|
* [GigaMacro](https://viewer.gigamacro.com/) or [Gigapan](https://www.gigapan.com/) - Panoramic Photography
|
||||||
* [stringers.live](https://stringers.live/) - Live Freelance Journalist Streams
|
* [stringers.live](https://stringers.live/) - Live Freelance Journalist Streams
|
||||||
|
@ -1295,6 +1303,7 @@
|
||||||
* ⭐ **[2020 Game](https://2020game.io/)** - Play Through 2020
|
* ⭐ **[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
|
||||||
* [JUST SCREAM!](https://justscream.baby/) - Scream into the Universe
|
* [JUST SCREAM!](https://justscream.baby/) - Scream into the Universe
|
||||||
* [VentScape](https://www.ventscape.life/) or [PostSecretVoicemail](https://www.postsecretvoicemail.com/) - Speak into a Void
|
* [VentScape](https://www.ventscape.life/) or [PostSecretVoicemail](https://www.postsecretvoicemail.com/) - Speak into a Void
|
||||||
* [AfterTheBeep](https://afterthebeep.tel/) - Public Voicemail
|
* [AfterTheBeep](https://afterthebeep.tel/) - Public Voicemail
|
||||||
|
@ -1326,6 +1335,7 @@
|
||||||
* [Ballooning](https://alexanderperrin.com.au/triangles/ballooning/) - Procedurally Generated Balloon Simulator
|
* [Ballooning](https://alexanderperrin.com.au/triangles/ballooning/) - Procedurally Generated Balloon Simulator
|
||||||
* [Tamajoji](https://aericode.itch.io/tamajoji) - Browser Tamagotchi
|
* [Tamajoji](https://aericode.itch.io/tamajoji) - Browser Tamagotchi
|
||||||
* [Koi Pond](https://koipond.fish/) - Feed Koi
|
* [Koi Pond](https://koipond.fish/) - Feed Koi
|
||||||
|
* [Our World of Text](https://ourworldoftext.com/) or [TextWall](https://tw.2s4.me/) - Infinite Community Text Grid
|
||||||
* [This Is Sand](https://thisissand.com/) - Make Sand Art
|
* [This Is Sand](https://thisissand.com/) - Make Sand Art
|
||||||
* [Orb.Farm](https://orb.farm/) - Virtual Aquatic Ecosystem
|
* [Orb.Farm](https://orb.farm/) - Virtual Aquatic Ecosystem
|
||||||
* [Generativeplanets](https://zehfernandes.com/generativeplanets/builder) or [Planet](https://oskarstalberg.com/game/planet/planet.html) - Planet Generators
|
* [Generativeplanets](https://zehfernandes.com/generativeplanets/builder) or [Planet](https://oskarstalberg.com/game/planet/planet.html) - Planet Generators
|
||||||
|
@ -1336,7 +1346,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
|
||||||
|
@ -1428,6 +1438,7 @@
|
||||||
* [Aesthetics Wiki](https://aesthetics.fandom.com/wiki/Aesthetics_Wiki) - Aesthetics Wiki / [Discord](https://discord.gg/mEWddNCAqv) / [Subreddit](https://www.reddit.com/r/aesthetic/)
|
* [Aesthetics Wiki](https://aesthetics.fandom.com/wiki/Aesthetics_Wiki) - Aesthetics Wiki / [Discord](https://discord.gg/mEWddNCAqv) / [Subreddit](https://www.reddit.com/r/aesthetic/)
|
||||||
* [Pushing Pixels](https://www.pushing-pixels.org/fui/) - Imaginary UI from Movies
|
* [Pushing Pixels](https://www.pushing-pixels.org/fui/) - Imaginary UI from Movies
|
||||||
* [Nestflix](https://nestflix.fun/) - Fictional Media in Media Database
|
* [Nestflix](https://nestflix.fun/) - Fictional Media in Media Database
|
||||||
|
* [List of Aesthetics](https://aesthetics.fandom.com/wiki/List_of_Aesthetics)
|
||||||
* [BogLeech](https://bogleech.com/) - Monster Design Reviews
|
* [BogLeech](https://bogleech.com/) - Monster Design Reviews
|
||||||
* [BrickLink Studio](https://www.bricklink.com/v3/studio/download.page) - Lego Building Software
|
* [BrickLink Studio](https://www.bricklink.com/v3/studio/download.page) - Lego Building Software
|
||||||
* [Instructables](https://www.instructables.com/) or [CreativePark](https://creativepark.canon/en/index.html) - Free Projects / Crafts
|
* [Instructables](https://www.instructables.com/) or [CreativePark](https://creativepark.canon/en/index.html) - Free Projects / Crafts
|
||||||
|
@ -1482,6 +1493,7 @@
|
||||||
* [OpenBulkURL](https://openbulkurl.com/random/) - Find Random Sites
|
* [OpenBulkURL](https://openbulkurl.com/random/) - Find Random Sites
|
||||||
* [ViralWalk](https://www.viralwalk.com/) - Find Random Sites
|
* [ViralWalk](https://www.viralwalk.com/) - Find Random Sites
|
||||||
* [The Forest](https://theforest.link/) - Find Random Sites
|
* [The Forest](https://theforest.link/) - Find Random Sites
|
||||||
|
* [PortalPioneer](https://www.portalpioneer.com/) - Find Random Sites
|
||||||
* [TheSillyWeb](https://thesillyweb.com/) - Find Random Sites
|
* [TheSillyWeb](https://thesillyweb.com/) - Find Random Sites
|
||||||
* [WhatsMYIP](http://random.whatsmyip.org/) - Find Random Sites
|
* [WhatsMYIP](http://random.whatsmyip.org/) - Find Random Sites
|
||||||
* [Random-Website](https://random-website.com/) - Find Random Sites
|
* [Random-Website](https://random-website.com/) - Find Random Sites
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -187,7 +189,7 @@
|
||||||
* [VmoMusic](https://t.me/VmoMusic) - Audio / FLAC
|
* [VmoMusic](https://t.me/VmoMusic) - Audio / FLAC
|
||||||
* [ZAYU_music](https://t.me/ZAYU_music) - Audio / FLAC
|
* [ZAYU_music](https://t.me/ZAYU_music) - Audio / FLAC
|
||||||
|
|
||||||
## ▷ Torrenting
|
## ▷ Torrenting / 下载种子
|
||||||
|
|
||||||
* [Csze BT](https://bt.orzx.im/) - Video / Audio / Books
|
* [Csze BT](https://bt.orzx.im/) - Video / Audio / Books
|
||||||
* [acgnx](https://www.acgnx.se/) - Video / Audio / Books / NSFW
|
* [acgnx](https://www.acgnx.se/) - Video / Audio / Books / NSFW
|
||||||
|
@ -211,6 +213,7 @@
|
||||||
|
|
||||||
* 🌐 **[Chinese Drama Site Index](https://www.reddit.com/r/CDrama/wiki/streaming)** - Chinese Drama Sites Index
|
* 🌐 **[Chinese Drama Site Index](https://www.reddit.com/r/CDrama/wiki/streaming)** - Chinese Drama Sites Index
|
||||||
* 🌐 **[Movie Forest](https://549.tv/)** or **[klyingshi](https://klyingshi.com/)** - Chinese Streaming Sites Index
|
* 🌐 **[Movie Forest](https://549.tv/)** or **[klyingshi](https://klyingshi.com/)** - Chinese Streaming Sites Index
|
||||||
|
* ⭐ **[555dy](https://555u.store/)** - Movies / TV / Anime / NSFW / Sub / 1080p
|
||||||
* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Multi-Platform Client](https://xfangfang.github.io/wiliwili/) / [Signup Block](https://greasyfork.org/en/scripts/467474)
|
* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Multi-Platform Client](https://xfangfang.github.io/wiliwili/) / [Signup Block](https://greasyfork.org/en/scripts/467474)
|
||||||
* [ddrk](https://ddys.pro/), [2](https://ddys.info/) - Movies / TV / Anime / Sub / 1080p
|
* [ddrk](https://ddys.pro/), [2](https://ddys.info/) - Movies / TV / Anime / Sub / 1080p
|
||||||
* [Tencent Video](https://v.qq.com/) - Movies / TV / Anime / Cartoons / Sub / Dub / 1080p / [Downloader](https://weibomiaopai.com/online-video-downloader/tencent)
|
* [Tencent Video](https://v.qq.com/) - Movies / TV / Anime / Cartoons / Sub / Dub / 1080p / [Downloader](https://weibomiaopai.com/online-video-downloader/tencent)
|
||||||
|
@ -218,7 +221,6 @@
|
||||||
* [VidHub](https://vidhub.me/) - Movies / TV / Anime / Sub / 1080p
|
* [VidHub](https://vidhub.me/) - Movies / TV / Anime / Sub / 1080p
|
||||||
* [ztv.tw](https://ztv.tw) - Streaming / Movies / TV / Anime
|
* [ztv.tw](https://ztv.tw) - Streaming / Movies / TV / Anime
|
||||||
* [chinaq.app](https://chinaq.app/) - Movies / TV / Anime
|
* [chinaq.app](https://chinaq.app/) - Movies / TV / Anime
|
||||||
* [555dy](https://555u.store/) - Movies / TV / Anime / NSFW / Sub / 1080p
|
|
||||||
* [Imaple](https://imaple8.co/) - Movies / TV / Sub / 1080p
|
* [Imaple](https://imaple8.co/) - Movies / TV / Sub / 1080p
|
||||||
* [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
|
||||||
|
@ -226,7 +228,6 @@
|
||||||
* [gimytw](https://gimytw.cc/) - Movies / TV
|
* [gimytw](https://gimytw.cc/) - Movies / TV
|
||||||
* [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
|
||||||
|
@ -242,10 +243,11 @@
|
||||||
* [MissEvan](https://www.missevan.com/) - Music / Podcasts / Audio Comics
|
* [MissEvan](https://www.missevan.com/) - Music / Podcasts / Audio Comics
|
||||||
* [Kilamanbo](https://kilakila.cn/) - Audio Comic Drama
|
* [Kilamanbo](https://kilakila.cn/) - Audio Comic Drama
|
||||||
* [Huya](https://www.huya.com/) - Live Streaming
|
* [Huya](https://www.huya.com/) - Live Streaming
|
||||||
|
* [IPTV807](https://iptv807.com/) - Live TV
|
||||||
* [數學老師張旭](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 / 阅读
|
||||||
|
|
||||||
|
@ -254,7 +256,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
|
||||||
|
@ -361,7 +362,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
|
||||||
|
|
||||||
|
@ -411,6 +412,7 @@
|
||||||
|
|
||||||
## ▷ Downloading
|
## ▷ Downloading
|
||||||
|
|
||||||
|
* [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
|
||||||
|
@ -429,8 +431,9 @@
|
||||||
* ⭐ **[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)
|
||||||
* ⭐ **[Frembed](https://frembed.live/)** - Movies / TV / Anime / API
|
* ⭐ **[Frembed](https://frembed.live/)** - Movies / TV / Anime / API
|
||||||
|
* [Deksov](https://deksov.com/) - Movies / TV / Anime
|
||||||
* [VoirAnime](https://v6.voiranime.com/) - Anime / Sub / 1080p
|
* [VoirAnime](https://v6.voiranime.com/) - Anime / Sub / 1080p
|
||||||
* [Darkiworld](https://darkiworld1.com/) - Movies / TV / Anime
|
* [Darkiworld](https://darkiworld7.com/) - Movies / TV / Anime
|
||||||
* [Sadisflix](https://sadisflix.ing/), [2](https://sadisflix.vip/) - Movies / TV / Anime / Dub / 1080p / Use Adblocker / [Mirrors](https://sadisflix.wiki/) / [Telegram](https://t.me/sadisflix)
|
* [Sadisflix](https://sadisflix.ing/), [2](https://sadisflix.vip/) - Movies / TV / Anime / Dub / 1080p / Use Adblocker / [Mirrors](https://sadisflix.wiki/) / [Telegram](https://t.me/sadisflix)
|
||||||
* [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
|
||||||
|
@ -456,6 +459,7 @@
|
||||||
* [WITV](https://witv.space/) - Live TV / Sports
|
* [WITV](https://witv.space/) - Live TV / Sports
|
||||||
* [LeFoot](https://lefoot.ru/) - Live Sports
|
* [LeFoot](https://lefoot.ru/) - Live Sports
|
||||||
* [JokerTV](https://jokertv.ru/) - Live Football
|
* [JokerTV](https://jokertv.ru/) - 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
|
* [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)
|
||||||
|
@ -503,7 +507,6 @@
|
||||||
* [Nima4k](https://nima4k.org/) - Video / Audio
|
* [Nima4k](https://nima4k.org/) - Video / Audio
|
||||||
* [FilmFans](https://filmfans.org/) - Video
|
* [FilmFans](https://filmfans.org/) - Video
|
||||||
* [hd-source](https://hd-source.to/) or [DDL-Warez](https://ddl-warez.cc/) - Video / NSFW
|
* [hd-source](https://hd-source.to/) or [DDL-Warez](https://ddl-warez.cc/) - Video / NSFW
|
||||||
* [serienjunkies](https://serienjunkies.org/) - TV
|
|
||||||
* [MLCBoard](https://mlcboard.com/) - Movies
|
* [MLCBoard](https://mlcboard.com/) - Movies
|
||||||
* [Data Load](https://www.data-load.in/) - Movies / Signup Required
|
* [Data Load](https://www.data-load.in/) - Movies / Signup Required
|
||||||
* [Anime-Loads](https://www.anime-loads.org/) - Anime
|
* [Anime-Loads](https://www.anime-loads.org/) - Anime
|
||||||
|
@ -576,7 +579,6 @@
|
||||||
## ▷ 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
|
||||||
|
@ -590,9 +592,9 @@
|
||||||
* [GRecoTM Builds](https://grecotm.club/) - Kodi Builds / [Guide](<https://web.archive.org/web/20210925022803/https://en.iguru.gr/odigos-egkatastasis-ellinikou-build-sto-kodi/>) / [Discord](https://discord.com/invite/zVVfbDY)
|
* [GRecoTM Builds](https://grecotm.club/) - Kodi Builds / [Guide](<https://web.archive.org/web/20210925022803/https://en.iguru.gr/odigos-egkatastasis-ellinikou-build-sto-kodi/>) / [Discord](https://discord.com/invite/zVVfbDY)
|
||||||
* [GreekTV](https://greektv.app/) - IPTV
|
* [GreekTV](https://greektv.app/) - IPTV
|
||||||
* [NetNix](https://netnix.tv/) - Live TV
|
* [NetNix](https://netnix.tv/) - Live TV
|
||||||
* [stokourbeti](https://www.stokourbeti.art/) - Live Sports
|
* [stokourbeti](https://stokourbeti.online/) - Live Sports
|
||||||
* [GreekSport](https://greeksport.pages.dev/) - Live Sports
|
* [GreekSport](https://greeksport.pages.dev/) - Live Sports
|
||||||
* [Foothubhd](https://foothubhd.org/) - Live Football / [Discord](https://discord.com/invite/KGgsRmKZPC)
|
* [Foothubhd](https://foothubhd.online/) - Live Football / [Discord](https://discord.com/invite/KGgsRmKZPC)
|
||||||
* [Live24](https://live24.gr/) or [e-Radio](https://www.e-radio.gr/) - Radio
|
* [Live24](https://live24.gr/) or [e-Radio](https://www.e-radio.gr/) - Radio
|
||||||
* [Subs4series](https://www.subs4series.com/), [xsubs](http://xsubs.tv), [greeksubs](https://greeksubs.net) or [subs4free](https://www.subs4free.club/) - Greek Subtitles
|
* [Subs4series](https://www.subs4series.com/), [xsubs](http://xsubs.tv), [greeksubs](https://greeksubs.net) or [subs4free](https://www.subs4free.club/) - Greek Subtitles
|
||||||
|
|
||||||
|
@ -632,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)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -644,11 +647,12 @@
|
||||||
|
|
||||||
## ▷ 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
|
||||||
* ⭐ **[SD Toons](https://sdtoons.in)** - Movies / TV / Anime / 1080p
|
* ⭐ **[SD Toons](https://sdtoons.in)** - Movies / TV / Anime / 1080p
|
||||||
* ⭐ **[AToZ Cartoonist](https://atozcartoonist.me/)** - Cartoons / Anime / Sub / Dub / 1080p / [Link Bypasser](https://greasyfork.org/en/scripts/484907) / [Discord](https://discord.com/invite/ZUW8yzDutd)
|
* ⭐ **[AToZ Cartoonist](https://atozcartoonist.me/)** - Cartoons / Anime / Sub / Dub / 1080p / [Link Bypasser](https://greasyfork.org/en/scripts/484907) / [Discord](https://discord.com/invite/ZUW8yzDutd)
|
||||||
* ⭐ **[ToonsHub](https://www.toonshub.xyz/)** - Anime / Dub / 1080p / [Telegram](https://t.me/s/toonshubupdates) / [Discord](https://discord.com/invite/2mPFKykW4j)
|
* ⭐ **[ToonsHub](https://www.toonshub.xyz/)** - Anime / Dub / 1080p / [Telegram](https://t.me/s/toonshubupdates) / [Discord](https://discord.com/invite/2mPFKykW4j)
|
||||||
|
@ -656,7 +660,8 @@
|
||||||
* ⭐ **[TamilBlasters](https://www.1tamilblasters.net/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges
|
* ⭐ **[TamilBlasters](https://www.1tamilblasters.net/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges
|
||||||
* ⭐ **[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://oomoye.guru/) - 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)
|
||||||
|
@ -695,9 +700,10 @@
|
||||||
## ▷ 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)
|
||||||
* ⭐ **[AnPlay](https://anplay.in/)** - Anime / Dub / 1080p
|
* ⭐ **[AniSAGA](https://anisaga.org/)** - Anime / Dub / 1080p
|
||||||
* ⭐ **[FireFlix](https://fireflixhd1.netlify.app/)** - Movies / TV / Anime
|
* ⭐ **[FireFlix](https://fireflixhd1.netlify.app/)** - Movies / TV / Anime
|
||||||
* ⭐ **[HDDMovies](https://hhdmovies.baby/)** - Movies / TV / Anime
|
* ⭐ **[HDDMovies](https://hhdmovies.baby/)** - Movies / TV / Anime
|
||||||
* ⭐ **[MultiMovies](https://multimovies.today)** - Movies / TV
|
* ⭐ **[MultiMovies](https://multimovies.today)** - Movies / TV
|
||||||
|
@ -803,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
|
||||||
|
@ -812,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
|
||||||
|
@ -868,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
|
||||||
|
@ -985,7 +991,7 @@
|
||||||
|
|
||||||
* 🌐 **[Persian Telegram Courses](https://rentry.co/sn66v)** - Persian Courses Index
|
* 🌐 **[Persian Telegram Courses](https://rentry.co/sn66v)** - Persian Courses Index
|
||||||
* [git_ir](https://t.me/git_ir) - Programming Courses
|
* [git_ir](https://t.me/git_ir) - Programming Courses
|
||||||
* [soft98](https://soft98.ir/) - Courses / Software / Games / [Anti-Adblock Fix](https://github.com/uBlockOrigin/uAssets/issues/14480#issuecomment-1907310059)
|
* [soft98](https://soft98.ir/) - Courses / Software / Games / [Anti-Adblock Fix](https://github.com/AdguardTeam/AdGuardExtra)
|
||||||
* [Old Persian Games](https://oldpersiangames.org/) - Iranian Games
|
* [Old Persian Games](https://oldpersiangames.org/) - Iranian Games
|
||||||
* [Download.ir](https://download.ir/) - Video / Software / ROMs / Books
|
* [Download.ir](https://download.ir/) - Video / Software / ROMs / Books
|
||||||
* [DigiMovie](https://digimoviez.com/) - Movies / TV / Sub / Dub / 1080p
|
* [DigiMovie](https://digimoviez.com/) - Movies / TV / Sub / Dub / 1080p
|
||||||
|
@ -1111,6 +1117,7 @@
|
||||||
## ▷ Downloading / Baixar
|
## ▷ Downloading / Baixar
|
||||||
|
|
||||||
* ⭐ **[WR Educacional](https://www.wreducacional.com.br)** - Courses
|
* ⭐ **[WR Educacional](https://www.wreducacional.com.br)** - Courses
|
||||||
|
* ⭐ **[Curso_vip](https://t.me/Curso_vip)** - Courses / Books
|
||||||
* [Rei dos Torrents](https://reidostorrents.com) - Video / Audio / Books / Sub / Dub / 1080p
|
* [Rei dos Torrents](https://reidostorrents.com) - Video / Audio / Books / Sub / Dub / 1080p
|
||||||
* [Os Reformados](https://osreformados.com) - Video / Audio / Magazines / Sub / Dub / 1080p
|
* [Os Reformados](https://osreformados.com) - Video / Audio / Magazines / Sub / Dub / 1080p
|
||||||
* [Online Cursos Gratuitos](https://onlinecursosgratuitos.com) - Courses
|
* [Online Cursos Gratuitos](https://onlinecursosgratuitos.com) - Courses
|
||||||
|
@ -1135,6 +1142,7 @@
|
||||||
* [Vizer](https://vizertv.in/) - Movies / TV / Anime / Sub / Dub / 1080p
|
* [Vizer](https://vizertv.in/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||||
* [GoFilmes](https://gofilmes.me/m/) - Movies / TV / Sub / Dub / 1080p
|
* [GoFilmes](https://gofilmes.me/m/) - Movies / TV / Sub / Dub / 1080p
|
||||||
* [tugaflix](https://tugaflix.best) - Movies / TV / Sub / 1080p
|
* [tugaflix](https://tugaflix.best) - Movies / TV / Sub / 1080p
|
||||||
|
* [megafilmeshd50](https://megafilmeshd50.zip/) - Movies / TV
|
||||||
* [Filmes Online HD](https://www.filmesonlinehdgratis.com.br) - Movies / TV / Sub / 720p
|
* [Filmes Online HD](https://www.filmesonlinehdgratis.com.br) - Movies / TV / Sub / 720p
|
||||||
* [99](https://www.99.media/pt/) - Documentaries / Sub / 1080p
|
* [99](https://www.99.media/pt/) - Documentaries / Sub / 1080p
|
||||||
* [Libreflix](https://libreflix.org) - Portuguese TV / Documentaries / 720p
|
* [Libreflix](https://libreflix.org) - Portuguese TV / Documentaries / 720p
|
||||||
|
@ -1143,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
|
||||||
|
@ -1151,6 +1158,7 @@
|
||||||
* [TV Gazeta](https://www.tvgazeta.com.br/aovivo/) - Live TV
|
* [TV Gazeta](https://www.tvgazeta.com.br/aovivo/) - Live TV
|
||||||
* [TV Cultura](https://cultura.uol.com.br/aovivo/) - Live TV
|
* [TV Cultura](https://cultura.uol.com.br/aovivo/) - Live TV
|
||||||
* [Futebol Agora](https://futebolagora.gratis/) - Live Sports
|
* [Futebol Agora](https://futebolagora.gratis/) - Live Sports
|
||||||
|
* [futemax](https://futemax.mn/) - Live Football / [Telegram](https://t.me/OfcFuteMAX)
|
||||||
* [IPTV Brasil](https://iptvbrasilapk.com) - IPTV Player
|
* [IPTV Brasil](https://iptvbrasilapk.com) - IPTV Player
|
||||||
* [Kultivi](https://app.kultivi.com) - Courses
|
* [Kultivi](https://app.kultivi.com) - Courses
|
||||||
* [Prime Cursos](https://www.primecursos.com.br) - Courses
|
* [Prime Cursos](https://www.primecursos.com.br) - Courses
|
||||||
|
@ -1305,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
|
||||||
|
@ -1391,6 +1399,7 @@
|
||||||
* [MovieCorn](https://moviecorn.one/) - Torrent Streaming
|
* [MovieCorn](https://moviecorn.one/) - Torrent Streaming
|
||||||
* [Dokonlin](https://www.dokonlin.online/) - Documentaries / Dub / 1080p
|
* [Dokonlin](https://www.dokonlin.online/) - Documentaries / Dub / 1080p
|
||||||
* [mult-fan](https://mult-fan.tv/) - Cartoons
|
* [mult-fan](https://mult-fan.tv/) - Cartoons
|
||||||
|
* [animatsiya](https://animatsiya.net/) - Russian Animation Archive
|
||||||
* [TVRF](https://tvrf.online/) - Live TV
|
* [TVRF](https://tvrf.online/) - Live TV
|
||||||
* [Viks](http://ip.viks.tv/) - Live TV
|
* [Viks](http://ip.viks.tv/) - Live TV
|
||||||
* [Telik](https://telik.top/) - Live TV
|
* [Telik](https://telik.top/) - Live TV
|
||||||
|
@ -1405,6 +1414,7 @@
|
||||||
* [MDCORE](https://vk.com/mdcore) - Metal
|
* [MDCORE](https://vk.com/mdcore) - Metal
|
||||||
* [Russian Records](https://www.russian-records.com/) - Russian Record Recordings
|
* [Russian Records](https://www.russian-records.com/) - Russian Record Recordings
|
||||||
* [Top Radio](https://top-radio.ru/) - Radio
|
* [Top Radio](https://top-radio.ru/) - Radio
|
||||||
|
* [recradio](https://t.me/recradio) - Radio
|
||||||
* [OpenEDU](https://openedu.ru/) - Courses
|
* [OpenEDU](https://openedu.ru/) - Courses
|
||||||
* [Teach.in](https://teach-in.ru/) - Lectures
|
* [Teach.in](https://teach-in.ru/) - Lectures
|
||||||
* [videotuts](https://videotuts.ru/) - Design Video Tutorials
|
* [videotuts](https://videotuts.ru/) - Design Video Tutorials
|
||||||
|
@ -1481,6 +1491,7 @@
|
||||||
|
|
||||||
* ⭐ **[DescargasDD](https://descargasdd.org/)** - Video / Audio / Castilian / Latino / [Telegram](https://t.me/joinchat/VAWOu0TNfOXfnauA)
|
* ⭐ **[DescargasDD](https://descargasdd.org/)** - Video / Audio / Castilian / Latino / [Telegram](https://t.me/joinchat/VAWOu0TNfOXfnauA)
|
||||||
* ⭐ **[eMule](https://www.emule-project.com/home/perl/help.cgi?l=17&rm=show_topic&topic_id=586)** - Video / Audio / Reading / NSFW / Castilian
|
* ⭐ **[eMule](https://www.emule-project.com/home/perl/help.cgi?l=17&rm=show_topic&topic_id=586)** - Video / Audio / Reading / NSFW / Castilian
|
||||||
|
* ⭐ **[Curso_vip](https://t.me/Curso_vip)** - Courses / Books
|
||||||
* [identi](https://identi.io/) - Video / Audio / Reading / Latino / Castilian
|
* [identi](https://identi.io/) - Video / Audio / Reading / Latino / Castilian
|
||||||
* [ExVagos](https://www.exvagos.org/) - Video / Audio / Reading / Castilian
|
* [ExVagos](https://www.exvagos.org/) - Video / Audio / Reading / Castilian
|
||||||
* [Gun's Cave](https://lacuevadeguns.com/forum/index.php?action=forum) - Video / Audio / Reading / Castilian
|
* [Gun's Cave](https://lacuevadeguns.com/forum/index.php?action=forum) - Video / Audio / Reading / Castilian
|
||||||
|
@ -1564,7 +1575,6 @@
|
||||||
* [TVRetro](https://tvretro.top/) - Classic Movies / TV
|
* [TVRetro](https://tvretro.top/) - Classic Movies / TV
|
||||||
* [poseidonhd2](https://www.poseidonhd2.co/) - Movies / TV
|
* [poseidonhd2](https://www.poseidonhd2.co/) - Movies / TV
|
||||||
* [PelisPedia](https://pelispedia.mov/) - Movies / TV / Latino
|
* [PelisPedia](https://pelispedia.mov/) - Movies / TV / Latino
|
||||||
* [Streamdz4](https://streamdz4.lat/) - Live TV / Sports
|
|
||||||
* [futbollibrehd](https://futbol-libre.org/) / [2](https://futbollibrehd.cl/) - Live Sports
|
* [futbollibrehd](https://futbol-libre.org/) / [2](https://futbollibrehd.cl/) - Live Sports
|
||||||
* [la12hd](https://la12hd.com/) - Live Sports
|
* [la12hd](https://la12hd.com/) - Live Sports
|
||||||
* [Zanex](https://zanex.lat/) - Live Sports
|
* [Zanex](https://zanex.lat/) - Live Sports
|
||||||
|
@ -1631,7 +1641,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
|
||||||
|
@ -1704,7 +1714,7 @@
|
||||||
|
|
||||||
* [Türkçe Altyazı](https://turkcealtyazi.org/) - Subtitles
|
* [Türkçe Altyazı](https://turkcealtyazi.org/) - Subtitles
|
||||||
* [Playstation Haber](https://playstationhaber.com/) / [MCpsp](https://www.mcpsp.com) - PlayStation Piracy Forums
|
* [Playstation Haber](https://playstationhaber.com/) / [MCpsp](https://www.mcpsp.com) - PlayStation Piracy Forums
|
||||||
* [Turkish Audio Center](https://www.turkishaudiocenter.com), [Shareses](https://shareses.com), [Türkçe Ses İndir](https://www.turkcesesindir.com/), [Dw Force](http://dwa-audio.blogspot.com/) or [Tr Sound Track](https://trsoundtrack.blogspot.com/) - Turkish Dubs
|
* [Turkish Audio Center](https://www.turkishaudiocenter.com), [Shareses](https://shareses.com), [Türkçe Ses İndir](https://www.turkcesesindir.com/), [Turkce Ses Dosyası](https://turkce-sesdosyasi.blogspot.com/) or [Turkish Sound Track](https://trsoundtrack.blogspot.com/) - Turkish Dubs
|
||||||
* [Sinner Clown](https://sinnerclownceviri.net) / [Discord](https://discord.com/invite/nApvcT6Tt6), [Hangar](https://www.hangarceviri.com) - Game Localizations
|
* [Sinner Clown](https://sinnerclownceviri.net) / [Discord](https://discord.com/invite/nApvcT6Tt6), [Hangar](https://www.hangarceviri.com) - Game Localizations
|
||||||
|
|
||||||
## ▷ Streaming / İzleme
|
## ▷ Streaming / İzleme
|
||||||
|
@ -1728,9 +1738,8 @@
|
||||||
|
|
||||||
* ⭐ **[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/rRuHcDN9G-QzMTk8), [Whatsapp Groups](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books
|
* [Telegram Groups](https://t.me/addlist/ioGiM9KIZvhjOTZk), [Whatsapp Groups](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)
|
||||||
* [Manga TR](https://manga-tr.com/) - Manga
|
|
||||||
* [Mavi Manga](https://mavimanga.com/) - Manga
|
* [Mavi Manga](https://mavimanga.com/) - Manga
|
||||||
* [Trwebtoon](https://trwebtoon.com/) - Manga
|
* [Trwebtoon](https://trwebtoon.com/) - Manga
|
||||||
* [Nirvana Manga](https://nirvanamanga.com/) - Manga
|
* [Nirvana Manga](https://nirvanamanga.com/) - Manga
|
||||||
|
@ -1783,17 +1792,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
|
||||||
|
@ -1803,7 +1812,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)
|
||||||
|
@ -1829,7 +1838,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
|
||||||
|
@ -1840,7 +1848,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)
|
||||||
|
@ -1928,6 +1936,7 @@
|
||||||
* [TorrentHeaven](https://www.torrentheaven.org/) - Dutch Torrents / Video / Audio / Books / NSFW
|
* [TorrentHeaven](https://www.torrentheaven.org/) - Dutch Torrents / Video / Audio / Books / NSFW
|
||||||
* [NPO](https://npo.nl/) - Dutch / TV Streaming
|
* [NPO](https://npo.nl/) - Dutch / TV Streaming
|
||||||
* [Oorboekje](https://oorboekje.nl/) - Dutch Radio Stations
|
* [Oorboekje](https://oorboekje.nl/) - Dutch Radio Stations
|
||||||
|
* [Eboek.info](https://eboek.info/) - Dutch / Download / Comics
|
||||||
* [Deildu](https://deildu.net/) - Icelandic / Torrents
|
* [Deildu](https://deildu.net/) - Icelandic / Torrents
|
||||||
* [Shafilm](https://shafilm.vip/) - Kurdish / Streaming / Movies / TV / Anime / Cartoons
|
* [Shafilm](https://shafilm.vip/) - Kurdish / Streaming / Movies / TV / Anime / Cartoons
|
||||||
* [kzkitap](https://t.me/kzkitap) - Kazakh Books
|
* [kzkitap](https://t.me/kzkitap) - Kazakh Books
|
||||||
|
|
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,11 +9,11 @@
|
||||||
* 🌐 **[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/) - 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)
|
||||||
* ⭐ **[Bookracy](https://bookracy.ru/)**, [2](https://bookracy.org/), [3](https://lite.bookracy.org/) / [Download Buttons](https://greasyfork.org/en/scripts/514877) / [Subreddit](https://reddit.com/r/bookracy) / [Discord](https://discord.com/invite/bookracy)
|
|
||||||
* ⭐ **[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)
|
||||||
|
* [Bookracy](https://bookracy.ru/), [2](https://bookracy.org/), [3](https://lite.bookracy.org/) / [Download Buttons](https://greasyfork.org/en/scripts/514877) / [Subreddit](https://reddit.com/r/bookracy) / [Discord](https://discord.com/invite/bookracy)
|
||||||
* [Liber3](https://liber3.eth.limo/)
|
* [Liber3](https://liber3.eth.limo/)
|
||||||
* [The Library](https://discord.gg/mSyFJz9) - Book Discord Server
|
* [The Library](https://discord.gg/mSyFJz9) - Book Discord Server
|
||||||
* [eBookHunter](https://ebook-hunter.org/) - Books / Comics / Use Adblocker
|
* [eBookHunter](https://ebook-hunter.org/) - Books / Comics / Use Adblocker
|
||||||
|
@ -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
|
||||||
|
@ -292,7 +291,7 @@
|
||||||
|
|
||||||
# ► Audiobooks
|
# ► Audiobooks
|
||||||
|
|
||||||
* ⭐ **[Text Reader](https://elevenreader.io/)** or [Ebook2Audiobook](https://hub.docker.com/r/athomasson2/ebook2audiobook) - Ebook to Audiobook Converters
|
* ⭐ **[Text Reader](https://elevenreader.io/)**, [Audiblez](https://github.com/santinic/audiblez) or [Ebook2Audiobook](https://hub.docker.com/r/athomasson2/ebook2audiobook) - Ebook to Audiobook Converters
|
||||||
* [AudioBookConverter](https://github.com/yermak/AudioBookConverter) - Audiobook Format Converter
|
* [AudioBookConverter](https://github.com/yermak/AudioBookConverter) - Audiobook Format Converter
|
||||||
* [Audible Tools](https://audible-tools.kamsker.at/), [AaxAudioConverter](https://github.com/audiamus/AaxAudioConverter) or [Libation](https://getlibation.com/) - Remove DRM from Audible Audiobooks
|
* [Audible Tools](https://audible-tools.kamsker.at/), [AaxAudioConverter](https://github.com/audiamus/AaxAudioConverter) or [Libation](https://getlibation.com/) - Remove DRM from Audible Audiobooks
|
||||||
* [AudiobookShelf](https://www.audiobookshelf.org/) / [GitHub](https://github.com/advplyr/audiobookshelf-app) or [BookSonic](https://booksonic.org/) - Self-Hosted Audiobook Servers
|
* [AudiobookShelf](https://www.audiobookshelf.org/) / [GitHub](https://github.com/advplyr/audiobookshelf-app) or [BookSonic](https://booksonic.org/) - Self-Hosted Audiobook Servers
|
||||||
|
@ -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/)
|
||||||
|
@ -357,6 +355,7 @@
|
||||||
* ⭐ **[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
|
||||||
|
* [BatCave](https://batcave.biz/)
|
||||||
* [XOXO Comics](https://xoxocomic.com/)
|
* [XOXO Comics](https://xoxocomic.com/)
|
||||||
* [ComicsOnlineFree](https://comiconlinefree.me/)
|
* [ComicsOnlineFree](https://comiconlinefree.me/)
|
||||||
* [Read Comics Online](https://readcomicsonline.ru/)
|
* [Read Comics Online](https://readcomicsonline.ru/)
|
||||||
|
@ -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/)
|
||||||
|
@ -453,7 +453,8 @@
|
||||||
* 🌐 **[The Index](https://theindex.moe/library/novels)** - Light Novel Site Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
* 🌐 **[The Index](https://theindex.moe/library/novels)** - Light Novel Site Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||||
* ⭐ **[Novel Updates](https://www.novelupdates.com/)**
|
* ⭐ **[Novel Updates](https://www.novelupdates.com/)**
|
||||||
* ⭐ **[jnovels](https://jnovels.com/)** or [MP4DIRECTS](https://mp4directs.com/) / Allows Downloads
|
* ⭐ **[jnovels](https://jnovels.com/)** or [MP4DIRECTS](https://mp4directs.com/) / Allows Downloads
|
||||||
* ⭐ **[Just Light Novels](https://www.justlightnovels.com/)** / Allows Downloads
|
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||||
|
* [Just Light Novels](https://www.justlightnovels.com/) / Allows Downloads
|
||||||
* [Web Novel Pub](https://www.webnovelpub.pro/)
|
* [Web Novel Pub](https://www.webnovelpub.pro/)
|
||||||
* [LightNovelHeaven](https://lightnovelheaven.com), [AllNovel](https://allnovel.org), [NovelFull](https://novelfull.com/) or [NOVGO](https://novgo.net/)
|
* [LightNovelHeaven](https://lightnovelheaven.com), [AllNovel](https://allnovel.org), [NovelFull](https://novelfull.com/) or [NOVGO](https://novgo.net/)
|
||||||
* [Vynovel](https://vynovel.com/)
|
* [Vynovel](https://vynovel.com/)
|
||||||
|
@ -480,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
|
||||||
|
@ -521,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
|
||||||
|
@ -546,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)
|
||||||
|
@ -714,18 +713,18 @@
|
||||||
* ⭐ **[ResearchGate](https://www.researchgate.net/)** - Research Papers / Publications
|
* ⭐ **[ResearchGate](https://www.researchgate.net/)** - Research Papers / Publications
|
||||||
* ⭐ **[SciLit](https://www.scilit.com/)** - Research Papers / Publications
|
* ⭐ **[SciLit](https://www.scilit.com/)** - Research Papers / Publications
|
||||||
* ⭐ **[Mendeley](https://www.mendeley.com/)** - Research Papers / [Data](https://data.mendeley.com/) / [Reference Manager](https://www.mendeley.com/download-reference-manager/)
|
* ⭐ **[Mendeley](https://www.mendeley.com/)** - Research Papers / [Data](https://data.mendeley.com/) / [Reference Manager](https://www.mendeley.com/download-reference-manager/)
|
||||||
* ⭐ **[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
|
* [Lumina](https://www.lumina.sh/) - AI Research Paper Search / [Discord](https://discord.com/invite/YSsSK2g3rY)
|
||||||
* [BulletPapers](https://www.bulletpapers.ai/) - Paper Summaries
|
* [BulletPapers](https://www.bulletpapers.ai/) - Paper Summaries
|
||||||
* [Springer](https://link.springer.com/) - Research Papers / Publications
|
* [Springer](https://link.springer.com/) - Research Papers / Publications
|
||||||
* [ScienceDirect](https://www.sciencedirect.com/) - Research Papers
|
* [ScienceDirect](https://www.sciencedirect.com/) - Research Papers
|
||||||
* [base-search](https://www.base-search.net/) - Academic Papers Search Engine
|
* [BASE](https://www.base-search.net/) - Academic Papers Search Engine
|
||||||
* [Share OSF](https://share.osf.io/) - Academic Papers Search Engine
|
* [Share OSF](https://share.osf.io/) - Academic Papers Search Engine
|
||||||
* [Scinapse](https://scinapse.io/) - Academic Papers Search Engine / [Pro Script](https://rentry.co/scinapsebypass)
|
* [Scinapse](https://scinapse.io/) - Academic Papers Search Engine / [Pro Script](https://rentry.co/scinapsebypass)
|
||||||
* [Semantic Scholar](https://www.semanticscholar.org/) - Academic Papers Search Engine
|
* [Semantic Scholar](https://www.semanticscholar.org/) - Academic Papers Search Engine
|
||||||
* [Consensus](https://consensus.app/) - Academic Papers Search Engine
|
* [Consensus](https://consensus.app/) - Academic Papers Search Engine
|
||||||
* [Crossref](https://search.crossref.org/) - Articles Papers Search Engine
|
* [Crossref](https://search.crossref.org/) - Articles Papers Search Engine
|
||||||
* [lens](https://www.lens.org/) - Research Papers / Patents Database
|
* [Lens](https://www.lens.org/) - Research Papers / Patents Database
|
||||||
* [dimensions](https://app.dimensions.ai/discover/publication) - Research Papers / Patents Database
|
* [Dimensions](https://app.dimensions.ai/discover/publication) - Research Papers / Patents Database
|
||||||
* [Academia](https://www.academia.edu/) - Academic Papers / [Downloader](https://github.com/ryanfb/academia-dl)
|
* [Academia](https://www.academia.edu/) - Academic Papers / [Downloader](https://github.com/ryanfb/academia-dl)
|
||||||
* [FreeFullPDF](https://freefullpdf.com/) - Academic Papers
|
* [FreeFullPDF](https://freefullpdf.com/) - Academic Papers
|
||||||
* [Zooniverse](https://www.zooniverse.org/) - Crowdsourced Research
|
* [Zooniverse](https://www.zooniverse.org/) - Crowdsourced Research
|
||||||
|
@ -756,11 +755,12 @@
|
||||||
* [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
|
* [Biorxiv](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
|
||||||
* [CensorBib](https://censorbib.nymity.ch/) or [censoredplanet.org](https://censoredplanet.org/) - Internet Censorship 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
|
||||||
|
* [CensorBib](https://censorbib.nymity.ch/) or [Censored Planet](https://censoredplanet.org/) - Internet Censorship Research Papers
|
||||||
* [Connected Papers](https://www.connectedpapers.com/) or [LitMaps](https://app.litmaps.com/) - Find Connected Academic Papers
|
* [Connected Papers](https://www.connectedpapers.com/) or [LitMaps](https://app.litmaps.com/) - Find Connected Academic Papers
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
|
@ -86,7 +86,7 @@
|
||||||
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
|
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
|
||||||
* [Vesktop](https://github.com/Vencord/Vesktop) - Web Client w/ Vencord Preinstalled
|
* [Vesktop](https://github.com/Vencord/Vesktop) - Web Client w/ Vencord Preinstalled
|
||||||
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Compatible Client
|
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Compatible Client
|
||||||
* [Dorion](https://github.com/SpikeHD/Dorion) - Lightweight Discord Client
|
* [Dorion](https://spikehd.github.io/projects/dorion/) - Lightweight Discord Client / [GitHub](https://github.com/SpikeHD/Dorion)
|
||||||
* [Dissent](https://github.com/diamondburned/dissent) - GTK4 Discord Client
|
* [Dissent](https://github.com/diamondburned/dissent) - GTK4 Discord Client
|
||||||
* [Discord Portable](https://portapps.io/app/discord-portable/) / [PTB PortApps](https://portapps.io/app/discord-ptb-portable/) - Portable Discord Stable
|
* [Discord Portable](https://portapps.io/app/discord-portable/) / [PTB PortApps](https://portapps.io/app/discord-ptb-portable/) - Portable Discord Stable
|
||||||
|
|
||||||
|
@ -177,11 +177,11 @@
|
||||||
# ► Reddit Tools
|
# ► Reddit Tools
|
||||||
|
|
||||||
* ⭐ **[Reddit Stream](https://reddit-stream.com/)** - Live Thread Viewer
|
* ⭐ **[Reddit Stream](https://reddit-stream.com/)** - Live Thread Viewer
|
||||||
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit Fix](https://greasyfork.org/en/scripts/404497-reddit-fix), [Reddit Extension](https://lawrenzo.com/p/reddit-extension), [RedditEnhancer](https://github.com/joelacus/RedditEnhancer) or [RedditMod2](https://greasyfork.org/en/scripts/29724-redditmod2) - Reddit Enhancement Extensions / Scripts
|
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit++](https://greasyfork.org/en/scripts/490046), [Reddit Fix](https://greasyfork.org/en/scripts/404497-reddit-fix), [Reddit Extension](https://lawrenzo.com/p/reddit-extension), [RedditEnhancer](https://github.com/joelacus/RedditEnhancer) or [RedditMod2](https://greasyfork.org/en/scripts/29724-redditmod2) - Reddit Enhancement Extensions / Scripts
|
||||||
* ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old
|
* ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old
|
||||||
* [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/) - Bulk Subreddit Unsub Tool
|
* [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,6 +294,7 @@
|
||||||
|
|
||||||
## ▷ Telegram File Tools
|
## ▷ Telegram File Tools
|
||||||
|
|
||||||
|
* ⭐ **[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
|
||||||
|
@ -356,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
|
||||||
|
@ -406,7 +407,6 @@
|
||||||
* ⭐ **[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
|
||||||
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
||||||
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#video-resumer-note)
|
|
||||||
* [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
|
||||||
* [Annotations Data Archive](https://archive.org/details/youtubeannotations) - Restore Video Annotations
|
* [Annotations Data Archive](https://archive.org/details/youtubeannotations) - Restore Video Annotations
|
||||||
|
@ -441,12 +441,12 @@
|
||||||
* ⭐ **[AMP4](https://amp4.cc/)** - YouTube Downloader / Online
|
* ⭐ **[AMP4](https://amp4.cc/)** - YouTube Downloader / Online
|
||||||
* [Videomass](https://jeanslack.github.io/Videomass/) / [GitHub](https://github.com/jeanslack/Videomass) or [ezytdl](https://github.com/sylviiu/ezytdl), [Tartube](https://tartube.sourceforge.io/), [Media Downloader](https://github.com/mhogomchungu/media-downloader) or [Parabolic](https://github.com/NickvisionApps/Parabolic) - Cross-Platform YT-DLP GUIs
|
* [Videomass](https://jeanslack.github.io/Videomass/) / [GitHub](https://github.com/jeanslack/Videomass) or [ezytdl](https://github.com/sylviiu/ezytdl), [Tartube](https://tartube.sourceforge.io/), [Media Downloader](https://github.com/mhogomchungu/media-downloader) or [Parabolic](https://github.com/NickvisionApps/Parabolic) - Cross-Platform YT-DLP GUIs
|
||||||
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface), [GDownloader](https://github.com/hstr0100/GDownloader), [dsymbol yt-dlp](https://github.com/dsymbol/yt-dlp-gui) or [Vividl](https://github.com/Bluegrams/Vividl) - YT-DLP GUIs
|
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface), [GDownloader](https://github.com/hstr0100/GDownloader), [dsymbol yt-dlp](https://github.com/dsymbol/yt-dlp-gui) or [Vividl](https://github.com/Bluegrams/Vividl) - YT-DLP GUIs
|
||||||
* [MeTube](https://github.com/alexta69/metube) or [yt-dlp Web UI](https://github.com/marcopiovanello/yt-dlp-web-ui) - Self-Hosted YT-DLP WebUIs
|
* [MeTube](https://github.com/alexta69/metube), [YoutubeDL-Material](https://github.com/Tzahi12345/YoutubeDL-Material) or [yt-dlp Web UI](https://github.com/marcopiovanello/yt-dlp-web-ui) - Self-Hosted YT-DLP
|
||||||
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - YouTube-DL GUI
|
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - YouTube-DL GUI
|
||||||
* [YoutubeDL-Material](https://github.com/Tzahi12345/YoutubeDL-Material) - Self-Hosted youtube-dl WebUI
|
|
||||||
* [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - YouTube CLI Downloader / yt-dlp fork
|
* [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - YouTube CLI Downloader / yt-dlp fork
|
||||||
* [YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader) - YouTube Downloader App
|
* [YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader) - YouTube Downloader App
|
||||||
* [EZMP3](https://ezmp3.cc/) - YouTube Downloader / Online
|
* [EZMP3](https://ezmp3.cc/) - YouTube Downloader / Online
|
||||||
|
* [CNVMP3](https://cnvmp3.com/) - YouTube Downloader / Online
|
||||||
* [ytarchive](https://github.com/Kethsar/ytarchive) - YouTube Livestream Downloader
|
* [ytarchive](https://github.com/Kethsar/ytarchive) - YouTube Livestream Downloader
|
||||||
* [Get Thumbs](https://boingboing.net/features/getthumbs), [YTI](https://youtubethumbnailimage.com/), [thumbnailsave](https://thumbnailsave.com/), [YouTube Thumbnail Grabber](https://youtube-thumbnail-grabber.com/) or [thumbnail-download](https://thumbnail-download.com/) - Download Video Thumbnails
|
* [Get Thumbs](https://boingboing.net/features/getthumbs), [YTI](https://youtubethumbnailimage.com/), [thumbnailsave](https://thumbnailsave.com/), [YouTube Thumbnail Grabber](https://youtube-thumbnail-grabber.com/) or [thumbnail-download](https://thumbnail-download.com/) - Download Video Thumbnails
|
||||||
* [youtube-comment-downloader](https://github.com/egbertbouman/youtube-comment-downloader) - Download YouTube Comments
|
* [youtube-comment-downloader](https://github.com/egbertbouman/youtube-comment-downloader) - Download YouTube Comments
|
||||||
|
@ -544,7 +544,6 @@
|
||||||
* [TTV LOL PRO](https://github.com/younesaassila/ttv-lol-pro) - Twitch Adblocker / [Proxies](https://wiki.cdn-perfprod.com/v/v1/must-read/proxies)
|
* [TTV LOL PRO](https://github.com/younesaassila/ttv-lol-pro) - Twitch Adblocker / [Proxies](https://wiki.cdn-perfprod.com/v/v1/must-read/proxies)
|
||||||
* [PurpleAdblock](https://addons.mozilla.org/en-US/firefox/addon/purpleadblock/) - Twitch Adblocker
|
* [PurpleAdblock](https://addons.mozilla.org/en-US/firefox/addon/purpleadblock/) - Twitch Adblocker
|
||||||
* [luminous-ttv](https://github.com/AlyoshaVasilieva/luminous-ttv) - Twitch Adblocker
|
* [luminous-ttv](https://github.com/AlyoshaVasilieva/luminous-ttv) - Twitch Adblocker
|
||||||
* [Adblocker for Twitch](https://microsoftedge.microsoft.com/addons/detail/adblocker-for-twitch%E2%84%A2/glgpmlmjlaljaddimbgekaepkgbojjdn) - Edge Twitch Adblocker
|
|
||||||
* [PurpleTV](https://purpletv.aeong.win/) / [Alpha](https://t.me/pubTwAlpha) / [Telegram](https://t.me/pubTw) or [TwitchAdBlock](https://github.com/level3tjg/TwitchAdBlock) - Ad-Free Twitch APKs
|
* [PurpleTV](https://purpletv.aeong.win/) / [Alpha](https://t.me/pubTwAlpha) / [Telegram](https://t.me/pubTw) or [TwitchAdBlock](https://github.com/level3tjg/TwitchAdBlock) - Ad-Free Twitch APKs
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -635,6 +634,7 @@
|
||||||
* [Image Counter](https://openuserjs.org/scripts/darkred/Instagram_-_visible_images_counter) - Count Page Images
|
* [Image Counter](https://openuserjs.org/scripts/darkred/Instagram_-_visible_images_counter) - Count Page Images
|
||||||
* [InstaAddict](https://github.com/Androz2091/instaddict) - Instagram Addiction Test
|
* [InstaAddict](https://github.com/Androz2091/instaddict) - Instagram Addiction Test
|
||||||
* [Unfollow-Everyone](https://github.com/tlorien/Unfollow-Everyone-on-Instagram) - Bulk Instagram Unfollow
|
* [Unfollow-Everyone](https://github.com/tlorien/Unfollow-Everyone-on-Instagram) - Bulk Instagram Unfollow
|
||||||
|
* [InstagramUnfollowers](https://davidarroyo1234.github.io/InstagramUnfollowers/) - Check Who Follows Back / [GitHub](https://github.com/davidarroyo1234/InstagramUnfollowers)
|
||||||
* [Instagram Experiments Guide](https://github.com/daniiii5/Public-Guide)
|
* [Instagram Experiments Guide](https://github.com/daniiii5/Public-Guide)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -767,11 +767,11 @@
|
||||||
|
|
||||||
# ► Blogging Tools
|
# ► Blogging Tools
|
||||||
|
|
||||||
|
* ⭐ **[Bear Blog](https://bearblog.dev/)**, [Mataroa](https://mataroa.blog/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
||||||
* [Telescope](https://telescope.ac/) - Publishing Platform
|
* [Telescope](https://telescope.ac/) - Publishing Platform
|
||||||
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
|
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
|
||||||
* [Dreamwidth](https://www.dreamwidth.org/) - Blogging Platform
|
* [Dreamwidth](https://www.dreamwidth.org/) - Blogging Platform
|
||||||
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-Hosted Blogging Platforms
|
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-Hosted Blogging Platforms
|
||||||
* [Bear Blog](https://bearblog.dev/), [Mataroa](https://mataroa.blog/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
|
||||||
* [Notepin](https://notepin.co/) - Anonymous Blogging Platform
|
* [Notepin](https://notepin.co/) - Anonymous Blogging Platform
|
||||||
* [Zonelets](https://zonelets.net/) - Static Blog Template
|
* [Zonelets](https://zonelets.net/) - Static Blog Template
|
||||||
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
|
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
|
||||||
|
|
|
@ -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
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
|
|
||||||
### Note-Taking
|
### Note-Taking
|
||||||
|
|
||||||
* ⭐ **[Obsidian](https://obsidian.md/mobile)**
|
* ⭐ **[Obsidian](https://obsidian.md/mobile)**
|
||||||
* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)**
|
* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)**
|
||||||
* [OpenNote](https://github.com/YangDai2003/OpenNote-Compose) - Markdown Support
|
* [OpenNote](https://github.com/YangDai2003/OpenNote-Compose) - Markdown Support
|
||||||
* [neutriNote](https://github.com/appml/neutrinote) - Markdown / Math Support
|
* [neutriNote](https://github.com/appml/neutrinote) - Markdown / Math Support
|
||||||
|
@ -126,7 +126,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)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -147,7 +147,7 @@
|
||||||
|
|
||||||
* ⭐ **[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**
|
* ⭐ **[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**
|
||||||
|
|
||||||
[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/)
|
[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/)
|
||||||
|
|
||||||
### 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/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -200,7 +200,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)
|
||||||
|
|
||||||
|
@ -263,6 +263,8 @@
|
||||||
* [Pie Chart Maker](https://piechartmaker.co/), [2](https://www.piechartmaker.me/) - Create Pie Charts
|
* [Pie Chart Maker](https://piechartmaker.co/), [2](https://www.piechartmaker.me/) - Create Pie Charts
|
||||||
* [Bar Graph Maker](https://www.bargraphmaker.net/) - Create Bar Graphs
|
* [Bar Graph Maker](https://www.bargraphmaker.net/) - Create Bar Graphs
|
||||||
* [Vinnslu](https://maltsev.github.io/vinnslu/) - Tabular Data Parser
|
* [Vinnslu](https://maltsev.github.io/vinnslu/) - Tabular Data Parser
|
||||||
|
* [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
|
||||||
|
|
||||||
[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/)
|
[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/)
|
||||||
|
|
||||||
|
@ -272,7 +274,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/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -376,13 +378,11 @@
|
||||||
|
|
||||||
* [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)
|
* [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/)
|
||||||
|
@ -433,6 +433,7 @@
|
||||||
* [Leprd](https://leprd.space/) - 1GB Storage / 10GB Bandwidth / Unlimited DB / Limited Registration
|
* [Leprd](https://leprd.space/) - 1GB Storage / 10GB Bandwidth / Unlimited DB / Limited Registration
|
||||||
* [x10hosting](https://x10hosting.com/) - 500MB Storage / Unlimited Bandwidth / 2 DB
|
* [x10hosting](https://x10hosting.com/) - 500MB Storage / Unlimited Bandwidth / 2 DB
|
||||||
* [Profreehost](https://profreehost.com/) - 5GB Storage / Unlimited Bandwidth / Unlimited DB
|
* [Profreehost](https://profreehost.com/) - 5GB Storage / Unlimited Bandwidth / Unlimited DB
|
||||||
|
* [Render](https://render.com/)
|
||||||
* [pythonanywhere](https://www.pythonanywhere.com/)
|
* [pythonanywhere](https://www.pythonanywhere.com/)
|
||||||
* [IBM Cloud](https://www.ibm.com/cloud/free)
|
* [IBM Cloud](https://www.ibm.com/cloud/free)
|
||||||
* [Fleek](https://fleek.xyz/)
|
* [Fleek](https://fleek.xyz/)
|
||||||
|
@ -456,7 +457,6 @@
|
||||||
* [DropPages](https://droppages.com/)
|
* [DropPages](https://droppages.com/)
|
||||||
* [W3Schools Spaces](https://www.w3schools.com/spaces/)
|
* [W3Schools Spaces](https://www.w3schools.com/spaces/)
|
||||||
* [BitBucket](https://support.atlassian.com/bitbucket-cloud/docs/publishing-a-website-on-bitbucket-cloud/)
|
* [BitBucket](https://support.atlassian.com/bitbucket-cloud/docs/publishing-a-website-on-bitbucket-cloud/)
|
||||||
* [Render](https://render.com/)
|
|
||||||
* [Straw.Page](https://straw.page/)
|
* [Straw.Page](https://straw.page/)
|
||||||
* [Own Free Website](https://www.own-free-website.com)
|
* [Own Free Website](https://www.own-free-website.com)
|
||||||
* [itty.bitty](https://itty.bitty.site/)
|
* [itty.bitty](https://itty.bitty.site/)
|
||||||
|
@ -540,12 +540,10 @@
|
||||||
* [Hackintosh Graphics Fix](https://rentry.org/fix-graphics)
|
* [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
|
||||||
* [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-macos](https://rentry.org/unplugged-macos) - Unplugged Hackintosh
|
||||||
* [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 Unlocker](https://github.com/paolo-projects/unlocker) - Patch VMware Workstation / Player to Run macOS
|
|
||||||
* [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://github.com/BDisp/unlocker/)
|
||||||
* [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
|
||||||
|
@ -581,13 +579,12 @@
|
||||||
* [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/mass-downloader-for-insta/ldoldiahbhnbfdihknppjbhgjngibdbe) - 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/), [Picuki](https://www.picuki.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/)
|
[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/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## Internet Archive Tools
|
## Internet Archive Tools
|
||||||
|
|
||||||
* [arch1ve](https://rentry.org/arch1ve) - IA Book Ripping Guide
|
|
||||||
* [Archive.org-Downloader](https://github.com/MiniGlome/Archive.org-Downloader) - Download Books to PDF
|
* [Archive.org-Downloader](https://github.com/MiniGlome/Archive.org-Downloader) - Download Books to PDF
|
||||||
* [IA Book Ripper](https://bookripper.neocities.org/) or [IA Downloader](https://github.com/elementdavv/internet_archive_downloader) - Download Borrowed Books
|
* [IA Book Ripper](https://bookripper.neocities.org/) or [IA Downloader](https://github.com/elementdavv/internet_archive_downloader) - Download Borrowed Books
|
||||||
* [internetarchive](https://github.com/jjjake/internetarchive) - CLI Tool
|
* [internetarchive](https://github.com/jjjake/internetarchive) - CLI Tool
|
||||||
|
@ -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)
|
||||||
|
@ -898,15 +895,17 @@
|
||||||
* ⭐ **[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
|
||||||
|
|
||||||
* ⭐ **[SomaFM](https://somafm.com/)**
|
* ⭐ **[SomaFM](https://somafm.com/)**
|
||||||
|
|
||||||
[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)
|
[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), [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), [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/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -1128,7 +1110,7 @@
|
||||||
* [Udemy-Course-Enroller](https://github.com/techtanic/Discounted-Udemy-Course-Enroller) - Auto Course Enrollment
|
* [Udemy-Course-Enroller](https://github.com/techtanic/Discounted-Udemy-Course-Enroller) - Auto Course Enrollment
|
||||||
* [UdemyBot](https://github.com/gautamajay52/UdemyBot) or [UdemyPy](https://github.com/dylannalex/UdemyPy) - Udemy Course Bots
|
* [UdemyBot](https://github.com/gautamajay52/UdemyBot) or [UdemyPy](https://github.com/dylannalex/UdemyPy) - Udemy Course Bots
|
||||||
* [udemy-downloader](https://github.com/Puyodead1/udemy-downloader) - Udemy Downloader
|
* [udemy-downloader](https://github.com/Puyodead1/udemy-downloader) - Udemy Downloader
|
||||||
* [Udemy Download Guide](https://docs.google.com/document/d/1W91OS9rj7h9DBp5UwR68lA2zMEtqNmxdGaNVmBktIaw/) - [Discord](https://discord.gg/tMzrSxQ)
|
* [Udemy Download Guide](https://docs.google.com/document/d/1W91OS9rj7h9DBp5UwR68lA2zMEtqNmxdGaNVmBktIaw/) / [Discord](https://discord.gg/tMzrSxQ)
|
||||||
|
|
||||||
[discudemy](https://www.discudemy.com/), [BARONIP COUPONS](https://baronip-coupons.blogspot.com/), [freebiesglobal](https://freebiesglobal.com/), [onlinecourses](https://www.onlinecourses.ooo/), [UdemyKing](https://t.me/udemyking1), [CourseArray](https://t.me/udemycoursesfree), [Udemy 24](https://coursesbag.com/), [Download Online Tutorials Free](https://www.howtofree.org/), [UdemyFreeCourses](https://udemyfreecourses.org/), [Study Bullet](https://studybullet.com/) / [Telegram](https://telegram.me/joinchat/AAAAAFdxBDqPv7ZzVoUASw), [/r/udemyfreebies](https://reddit.com/r/udemyfreebies), [Online Courses Tracker](https://comidoc.net/), [Techlinks](https://www.techlinks.in/udemy-free-coupons), [Real.Discount](https://www.real.discount/), [OnlineTutorials](https://www.onlinetutorials.org/), [Scroll Coupons](https://scrollcoupons.com/) / [Telegram](https://t.me/scroll_coupons), [UdemyXpert](https://udemyxpert.com/) / [Telegram](https://t.me/UdemyXpert)
|
[discudemy](https://www.discudemy.com/), [BARONIP COUPONS](https://baronip-coupons.blogspot.com/), [freebiesglobal](https://freebiesglobal.com/), [onlinecourses](https://www.onlinecourses.ooo/), [UdemyKing](https://t.me/udemyking1), [CourseArray](https://t.me/udemycoursesfree), [Udemy 24](https://coursesbag.com/), [Download Online Tutorials Free](https://www.howtofree.org/), [UdemyFreeCourses](https://udemyfreecourses.org/), [Study Bullet](https://studybullet.com/) / [Telegram](https://telegram.me/joinchat/AAAAAFdxBDqPv7ZzVoUASw), [/r/udemyfreebies](https://reddit.com/r/udemyfreebies), [Online Courses Tracker](https://comidoc.net/), [Techlinks](https://www.techlinks.in/udemy-free-coupons), [Real.Discount](https://www.real.discount/), [OnlineTutorials](https://www.onlinetutorials.org/), [Scroll Coupons](https://scrollcoupons.com/) / [Telegram](https://t.me/scroll_coupons), [UdemyXpert](https://udemyxpert.com/) / [Telegram](https://t.me/UdemyXpert)
|
||||||
|
|
||||||
|
@ -1150,6 +1132,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/)
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
* 🌐 **[Awesome Windows 11](https://github.com/awesome-windows11/windows11)** - Windows 11 Resources
|
* 🌐 **[Awesome Windows 11](https://github.com/awesome-windows11/windows11)** - Windows 11 Resources
|
||||||
* 🌐 **[PC-Optimization-Hub](https://github.com/BoringBoredom/PC-Optimization-Hub)** - System Optimization Resources
|
* 🌐 **[PC-Optimization-Hub](https://github.com/BoringBoredom/PC-Optimization-Hub)** - System Optimization Resources
|
||||||
* ↪️ **[Gaming Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools#wiki_.25B7_optimization_tools)**
|
* ↪️ **[Gaming Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools#wiki_.25B7_optimization_tools)**
|
||||||
* ⭐ **[PowerToys](https://learn.microsoft.com/en-us/windows/powertoys/)** / [Search](https://github.com/lin-ycv/EverythingPowerToys) or [Sysinternals](https://learn.microsoft.com/en-us/sysinternals/) / [Plugins](https://github.com/hlaueriksson/awesome-powertoys-run-plugins) / [Suite](https://apps.microsoft.com/store/detail/sysinternals-suite/9P7KNL5RWT25) - System Tools
|
* ⭐ **[PowerToys](https://learn.microsoft.com/en-us/windows/powertoys/)** / [Search](https://github.com/lin-ycv/EverythingPowerToys) / [GitHub](https://github.com/microsoft/PowerToys/) or [Sysinternals](https://learn.microsoft.com/en-us/sysinternals/) / [Plugins](https://github.com/hlaueriksson/awesome-powertoys-run-plugins) / [Suite](https://apps.microsoft.com/store/detail/sysinternals-suite/9P7KNL5RWT25) - System Tools
|
||||||
* ⭐ **[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)**, [winfetch](https://github.com/lptstr/winfetch), [CPU Fetch](https://github.com/Dr-Noob/cpufetch), [Glow](https://github.com/turkaysoftware/glow) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Info Tools
|
* ⭐ **[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)**, [winfetch](https://github.com/lptstr/winfetch), [CPU Fetch](https://github.com/Dr-Noob/cpufetch), [Glow](https://github.com/turkaysoftware/glow) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Info Tools
|
||||||
* ⭐ **[SuperF4](https://stefansundin.github.io/superf4/)** or [FKill](https://github.com/sindresorhus/fkill-cli) - Process Killers
|
* ⭐ **[SuperF4](https://stefansundin.github.io/superf4/)** or [FKill](https://github.com/sindresorhus/fkill-cli) - Process Killers
|
||||||
* ⭐ **[AutoHotkey](https://www.autohotkey.com/)** - Task Automation / [Discord](https://discord.com/invite/Aat7KHmG7v) / [Script Gen](https://www.ahkgen.com/) / [Resources](https://github.com/ahkscript/awesome-AutoHotkey)
|
* ⭐ **[AutoHotkey](https://www.autohotkey.com/)** - Task Automation / [Discord](https://discord.com/invite/Aat7KHmG7v) / [Script Gen](https://www.ahkgen.com/) / [Resources](https://github.com/ahkscript/awesome-AutoHotkey)
|
||||||
|
@ -79,7 +79,8 @@
|
||||||
|
|
||||||
* ⭐ **[WinGet](https://github.com/microsoft/winget-cli)** - CLI Package Manager / [Repos](https://winstall.app/) / [Automation](https://github.com/topgrade-rs/topgrade) / [Auto Update](https://github.com/Romanitho/Winget-AutoUpdate)
|
* ⭐ **[WinGet](https://github.com/microsoft/winget-cli)** - CLI Package Manager / [Repos](https://winstall.app/) / [Automation](https://github.com/topgrade-rs/topgrade) / [Auto Update](https://github.com/Romanitho/Winget-AutoUpdate)
|
||||||
* ⭐ **[UniGetUI](https://www.marticliment.com/unigetui/)** - GUI for Popular Package Managers
|
* ⭐ **[UniGetUI](https://www.marticliment.com/unigetui/)** - GUI for Popular Package Managers
|
||||||
* ⭐ [hok](https://github.com/chawyehsu/hok) or [Scoop](https://scoop.sh/) / [Faster Commands](https://github.com/winpax/sfsu/) - CLI Package Managers
|
* ⭐ **[Scoop](https://scoop.sh/)** - Portable Package Manager
|
||||||
|
* ⭐ **[sfsu](https://github.com/winpax/sfsu/)** or [hok](https://github.com/chawyehsu/hok) - Fast Scoop Utilities
|
||||||
* [Spinel](https://spinel.ovh/) - Multi-Program Install Script Generator
|
* [Spinel](https://spinel.ovh/) - Multi-Program Install Script Generator
|
||||||
* [Chocolatey](https://github.com/chocolatey/choco) / [GUI](https://github.com/chocolatey/ChocolateyGUI), [Patch My PC](https://patchmypc.com/home-updater) or [RuckZuck](https://ruckzuck.tools/) - Package Managers
|
* [Chocolatey](https://github.com/chocolatey/choco) / [GUI](https://github.com/chocolatey/ChocolateyGUI), [Patch My PC](https://patchmypc.com/home-updater) or [RuckZuck](https://ruckzuck.tools/) - Package Managers
|
||||||
* [Silent Install](https://www.silentinstall.org/) - Build Multi-Program Installers
|
* [Silent Install](https://www.silentinstall.org/) - Build Multi-Program Installers
|
||||||
|
@ -162,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
|
||||||
|
@ -232,7 +233,7 @@
|
||||||
* 🌐 **[Awesome DataHoarding](https://github.com/simon987/awesome-datahoarding)** - Data Hoarding Resources
|
* 🌐 **[Awesome DataHoarding](https://github.com/simon987/awesome-datahoarding)** - Data Hoarding Resources
|
||||||
* ⭐ **[WizTree](https://www.diskanalyzer.com/)** - Disk Usage Analyzer
|
* ⭐ **[WizTree](https://www.diskanalyzer.com/)** - Disk Usage Analyzer
|
||||||
* ⭐ **[CrystalDiskMark](https://crystalmark.info/en/software/crystaldiskmark/)** or [CCISOBench](https://ccsiobench.com/) - Disk Benchmarking Tools
|
* ⭐ **[CrystalDiskMark](https://crystalmark.info/en/software/crystaldiskmark/)** or [CCISOBench](https://ccsiobench.com/) - Disk Benchmarking Tools
|
||||||
* ⭐ **[GParted](https://gparted.org/)** / [GitLab](https://gitlab.gnome.org/GNOME/gparted/), [MiniTool Partition Wizard](https://www.partitionwizard.com/) or [AOMEI Partition Assistant](https://www.diskpart.com/) - Partition Managers
|
* ⭐ **[GParted](https://gparted.org/)** / [GitLab](https://gitlab.gnome.org/GNOME/gparted/), [MiniTool Partition Wizard](https://www.partitionwizard.com/) or [AOMEI Partition Assistant](https://www.diskpart.com/) / [Unlocker](https://rentry.co/FMHYBase64#aomei-partition) - Partition Managers
|
||||||
* ⭐ **[Validrive](https://www.grc.com/validrive.htm)** - Check True Storage Size of USB Devices
|
* ⭐ **[Validrive](https://www.grc.com/validrive.htm)** - Check True Storage Size of USB Devices
|
||||||
* [WinDirStat](https://windirstat.net/) - Disk Usage Analyzer / Cleanup Tool / [GitHub](https://github.com/windirstat/windirstat/)
|
* [WinDirStat](https://windirstat.net/) - Disk Usage Analyzer / Cleanup Tool / [GitHub](https://github.com/windirstat/windirstat/)
|
||||||
* [TrueNAS](https://www.truenas.com/) - Storage System
|
* [TrueNAS](https://www.truenas.com/) - Storage System
|
||||||
|
@ -329,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/)
|
||||||
|
@ -338,10 +339,9 @@
|
||||||
|
|
||||||
## ▷ Windows Activation
|
## ▷ Windows Activation
|
||||||
|
|
||||||
* ⭐ **[MAS](https://massgrave.dev/#Method_1_-_PowerShell)** / [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts/) / [Discord](https://discord.gg/gjJEfq7ux8) - Windows Activation Scripts
|
* ⭐ **[MAS](https://rentry.co/FMHYBase64#mas)** - Activation Scripts / Windows / Office / [Discord](https://discord.gg/gjJEfq7ux8)
|
||||||
* ⭐ **[KMS_VL_ALL_AIO](https://github.com/abbodi1406/KMS_VL_ALL_AIO)** - Offline Activator
|
* ⭐ **[KMS_VL_ALL_AIO](https://rentry.co/FMHYBase64#kms-vl)** - Offline Activator / Windows / Office
|
||||||
* [EzWindSLIC](https://github.com/Dir3ctr1x/EzWindSLIC) - Vista / Server 2008 Activator
|
* [OfficeRTool](https://rentry.co/FMHYBase64#officertool-project) - Offline Activator / Office
|
||||||
* [OfficeRTool](https://rentry.co/FMHYBase64#officertool-project) - Office 2016 Activator
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -373,96 +373,84 @@
|
||||||
|
|
||||||
# ► Customization
|
# ► Customization
|
||||||
|
|
||||||
|
* 🌐 **[Windows-Ricing](https://github.com/winthemers/wiki)**, or [Heliohost Guide](https://ninjasr.varesia.com/w/lb/windows) - Windows Ricing Resources
|
||||||
* ⭐ **[Rainmeter](https://www.rainmeter.net/)** - Desktop Customization / [Discord](https://discord.com/invite/rainmeter)
|
* ⭐ **[Rainmeter](https://www.rainmeter.net/)** - Desktop Customization / [Discord](https://discord.com/invite/rainmeter)
|
||||||
* ⭐ **Rainmeter Tools** - [Skins](https://discord.com/invite/rainmeter) / [Menu Bar / App Launcher](https://www.droptopfour.com/)
|
* ⭐ **[OpenRGB](https://openrgb.org/)** / [Beta](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#openrbg-beta), **[WLED](https://kno.wled.ge/)**, [Aurora](https://www.project-aurora.com/), [LiquidCTL](https://github.com/liquidctl/liquidctl), [Artemis](https://artemis-rgb.com/), [RGBSync](https://rgbsync.com/), [SignalRGB](https://www.signalrgb.com/) or [FireLight](https://github.com/nicolasdeory/firelight) - RGB Lighting Control
|
||||||
* ⭐ **[OpenRGB](https://openrgb.org/)** / [Beta](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#openrbg-beta), **[WLED](https://kno.wled.ge/)**, [Aurora](https://www.project-aurora.com/), [LiquidCTL](https://github.com/liquidctl/liquidctl), [Artemis](https://artemis-rgb.com/), [RBGSync](https://rgbsync.com/), [SignalRGB](https://www.signalrgb.com/) or [FireLight](https://github.com/nicolasdeory/firelight) - Lighting Control
|
* ⭐ **[VSThemes](https://vsthemes.org/en/)**, [WindowsCustomization](https://windowscustomization.com/) or [7Themes](https://7themes.su/) - Theme Indexes
|
||||||
|
* Styled Themes - [Anime](https://winmoes.com/) / [Modern Style](https://www.vinstartheme.com/) / [MacOS Style](https://redd.it/pd5ha6), [2](https://github.com/Runixe786/Macified-Windows) / [Old School Style](https://winclassic.boards.net/), [2](https://forum.spacehey.com/topic?id=94545)
|
||||||
* [VirtualCustoms](https://virtualcustoms.net/) or [winthemers](https://discord.com/invite/8FFWAqdtc4) - Customization Communities
|
* [VirtualCustoms](https://virtualcustoms.net/) or [winthemers](https://discord.com/invite/8FFWAqdtc4) - Customization Communities
|
||||||
|
* [Desktops](https://deskto.ps/) - Customization Showcases
|
||||||
* [XDesktopSoft](https://www.xwidget.com/) - Desktop Customization
|
* [XDesktopSoft](https://www.xwidget.com/) - Desktop Customization
|
||||||
* [Taskbar Tweaker](https://tweaker.ramensoftware.com/) or [NiceTaskbar](https://www.microsoft.com/en-us/p/nicetaskbar/9pkl2s93xwb5) - Taskbar Customization Tools
|
* [SecureUxTheme](https://github.com/namazso/SecureUxTheme) or [UltraUXThemePatcher](https://mhoefs.eu/software_uxtheme.php?ref=syssel&lang=en) - UX Patcher
|
||||||
* [msstyleEditor](https://github.com/nptr/msstyleEditor) or [WinPaletter](https://github.com/Abdelrhman-AK/WinPaletter) - Windows Visual Style Editors
|
* [Windhawk](https://windhawk.net/) / [GitHub](https://github.com/ramensoftware/windhawk) or [WinAero](https://winaero.com) - Windows Mods
|
||||||
* [BeautySearch](https://github.com/krlvm/BeautySearch) - Windows 10 Search Appearance Tweaker
|
* [Cursormania Archive](https://archive.org/details/cursormania) - Cursors
|
||||||
|
* [macOS-cursors-for-Windows](https://github.com/antiden/macOS-cursors-for-Windows) or [CursorOS](https://cursor.design/) - MacOS Style Cursors
|
||||||
* [Mechvibes](https://mechvibes.com/) / [GitHub](https://github.com/hainguyents13/mechvibes) or [MechaKeys](https://mechakeys.robolab.io/) - Keyboard Sound Effects
|
* [Mechvibes](https://mechvibes.com/) / [GitHub](https://github.com/hainguyents13/mechvibes) or [MechaKeys](https://mechakeys.robolab.io/) - Keyboard Sound Effects
|
||||||
* [Aerial Screen Saver](https://github.com/OrangeJedi/Aerial) - Apple TV Style Screensavers
|
* [ElectricSheep](https://electricsheep.org/) or [After Dark CSS](https://www.bryanbraun.com/after-dark-css/) - Screensavers
|
||||||
* [ElectricSheep](https://electricsheep.org/) - Collaborative Usergenerated Screensaver
|
* [FolderMarker](https://foldermarker.com/), [Flaired Folder](https://flaired-folders.vercel.app/), [CustomFolder](https://www.gdzsoft.com/) - Custom Folder Icons
|
||||||
* [After Dark CSS](https://www.bryanbraun.com/after-dark-css/) - Browser Screensavers
|
|
||||||
* [HackBGRT](https://github.com/Metabolix/HackBGRT) - Change Windows Boot Logo
|
|
||||||
* [Cursor Mania Archive](https://archive.org/details/cursormania), [Bibata Cursor](https://github.com/ful1e5/Bibata_Cursor) or [rw-designer](http://rw-designer.com/cursor-library) - Cursors
|
|
||||||
* [macOS-cursors-for-Windows](https://github.com/antiden/macOS-cursors-for-Windows) or [CursorOS](https://cursor.design/) - macOS Cursors for Windows
|
|
||||||
* [FolderMarker](https://foldermarker.com/), [Flaired Folder](https://flaired-folders.vercel.app/) or [CustomFolder](https://www.gdzsoft.com/) - Custom Folders & Markers
|
|
||||||
* [Recycle Bin Themes](https://github.com/sdushantha/recycle-bin-themes) - Custom Recycle Bin Icons
|
* [Recycle Bin Themes](https://github.com/sdushantha/recycle-bin-themes) - Custom Recycle Bin Icons
|
||||||
* [ElevenClock](https://www.marticliment.com/elevenclock/) - Customize Windows 11 Clock
|
* [msstyleEditor](https://github.com/nptr/msstyleEditor) - Visual Style Editor
|
||||||
* [TranslucentFlyouts](https://github.com/ALTaleX531/TranslucentFlyouts) - Translucent Context Menus / [GUI](https://github.com/Satanarious/TranslucentFlyoutsConfig)
|
* [StartIsBack](https://www.startisback.com/) or [StartAllBack](https://www.startallback.com/) - Start Menu Customization
|
||||||
* [TranslucentTB](https://github.com/TranslucentTB/TranslucentTB) - Translucent Windows Taskbar
|
* [Taskbar Tweaker](https://tweaker.ramensoftware.com/), [TranslucentTB](https://github.com/TranslucentTB/TranslucentTB), [NiceTaskbar](https://www.microsoft.com/en-us/p/nicetaskbar/9pkl2s93xwb5) - Taskbar Customization / [Old School Style](https://github.com/dremin/RetroBar)
|
||||||
* [ExplorerBlurMica](https://github.com/Maplespe/ExplorerBlurMica) - Blur / Acrylic Effect for File Explorer
|
* [AccentColorizer](https://github.com/krlvm/AccentColorizer) - Accent Color Customization
|
||||||
* [RetroBar](https://github.com/dremin/RetroBar) - Retro Classic Taskbars
|
* [BeautySearch](https://github.com/krlvm/BeautySearch) - Search Customization
|
||||||
* [StartIsBack](https://www.startisback.com/) or [StartAllBack](https://www.startallback.com/) - Restore Classic Start Menu in Win 10/11
|
* [ElevenClock](https://www.marticliment.com/elevenclock/) - Clock Customization
|
||||||
* [ModernFlyouts](https://apps.microsoft.com/store/detail/modernflyouts-preview/9MT60QV066RP) - Modern Audio Flyouts / [GitHub](https://github.com/ModernFlyouts-Community/ModernFlyouts)
|
* [HackBGRT](https://github.com/Metabolix/HackBGRT) - Boot Logo Changer
|
||||||
|
* [WinDynamicDesktop](https://github.com/t1m0thyj/WinDynamicDesktop) or [Dynamic Theme](https://apps.microsoft.com/detail/9nblggh1zbkw) - Auto Change Wallpaper
|
||||||
|
* [ExplorerBlurMica](https://github.com/Maplespe/ExplorerBlurMica) - File Explorer Effects
|
||||||
|
* [MicaForEveryone](https://github.com/MicaForEveryone/MicaForEveryone) - Title Bar Effects
|
||||||
|
* [Cute Borders](https://github.com/keifufu/cute-borders) - Border Color Changer (Win11 Only)
|
||||||
|
* [ModernFlyouts](https://modernflyouts-community.github.io) - Modern Flyouts / [GitHub](https://github.com/ModernFlyouts-Community/ModernFlyouts)
|
||||||
|
* [Alternative Windows Shells Wiki](https://en.wikipedia.org/wiki/List_of_alternative_shells_for_Windows) - Alt Windows Shells
|
||||||
|
* [Aerial](https://github.com/OrangeJedi/Aerial) - Apple TV Screensaver
|
||||||
|
* [ExcelDarkThemeFix](https://github.com/matafokka/ExcelDarkThemeFix) - Fix Excel on Themed Windows
|
||||||
|
* [MacType](https://www.mactype.net/) - Use Mac Fonts on Windows / [GitHub](https://github.com/snowie2000/mactype)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Custom Themes
|
## ▷ App Themes
|
||||||
|
|
||||||
* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** or [Windows-Ricing](https://github.com/winthemers/wiki) - Windows Ricing Resources
|
|
||||||
* ⭐ **[Dracula](https://draculatheme.com/)** / [Discord](https://discord.com/invite/yDcFsrYuq9) or **[Catppuccin](https://catppuccin.com/)** / [Discord](https://discord.gg/r6Mdz5dpFc) - Custom App Themes
|
* ⭐ **[Dracula](https://draculatheme.com/)** / [Discord](https://discord.com/invite/yDcFsrYuq9) or **[Catppuccin](https://catppuccin.com/)** / [Discord](https://discord.gg/r6Mdz5dpFc) - Custom App Themes
|
||||||
* ⭐ **[terminal.sexy](https://terminal.sexy/)**, [TerminalSplash](https://terminalsplash.com/), [Solarized](https://ethanschoonover.com/solarized) or [WindowsTerminalThemes](https://windowsterminalthemes.dev/) - Terminal Themes
|
* ⭐ **[terminal.sexy](https://terminal.sexy/)**, [TerminalSplash](https://terminalsplash.com/), [Solarized](https://ethanschoonover.com/solarized) or [WindowsTerminalThemes](https://windowsterminalthemes.dev/) - Terminal Themes
|
||||||
* [VSThemes](https://vsthemes.org/en/) - Custom Windows Themes
|
* [Rosé Pine](https://rosepinetheme.com/) / [Discord](https://discord.gg/r6wf35KVJW), [Aura Theme](https://github.com/daltonmenezes/aura-theme), or [theme.park](https://theme-park.dev/) - Custom App Themes
|
||||||
* [Heliohost Guide](https://ninjasr.varesia.com/w/lb/windows) - Windows Customization Guides
|
* [Totally Awesome List](https://forum.spacehey.com/topic?id=94545) - Old School App Themes
|
||||||
* [Alternative Windows Shells Wiki](https://en.wikipedia.org/wiki/List_of_alternative_shells_for_Windows) - Alt Windows Shells
|
|
||||||
* [WindowsCustomization](https://windowscustomization.com/), [WinCustomize](https://www.wincustomize.com/), [Win10 DeviantArt](https://www.deviantart.com/tag/windows10), [WinClassic](https://winclassic.boards.net/), [Vin Star Theme](https://www.vinstartheme.com/) or [7Themes](https://7themes.su/) - Customization / Themes / Wallpapers
|
|
||||||
* [WinDynamicDesktop](https://github.com/t1m0thyj/WinDynamicDesktop) or [Dynamic Theme](https://apps.microsoft.com/detail/9nblggh1zbkw) - Dynamic Desktop Themes
|
|
||||||
* [SecureUxTheme](https://github.com/namazso/SecureUxTheme) or [UltraUXThemePatcher](https://mhoefs.eu/software_uxtheme.php?ref=syssel&lang=en) - Ux Theme Patcher
|
|
||||||
* [7TSP GUI](https://www.deviantart.com/devillnside/art/7TSP-GUI-2019-Edition-804769422) - Theme Source Patcher
|
|
||||||
* [Winmoes](https://winmoes.com/) - Anime Windows Themes / Wallpapers
|
|
||||||
* [Desktops](https://deskto.ps/) - OS Theme Examples
|
|
||||||
* [Macdows11](https://redd.it/pd5ha6) or [Macified Windows](https://github.com/Runixe786/Macified-Windows) - Win 11 Mac Theme Guides
|
|
||||||
* [Rosé Pine](https://rosepinetheme.com/) / [Discord](https://discord.gg/r6wf35KVJW), [Aura Theme](https://github.com/daltonmenezes/aura-theme), [Windhawk](https://windhawk.net/) or [theme.park](https://theme-park.dev/) - Custom App Themes
|
|
||||||
* [Totally Awesome List](https://forum.spacehey.com/topic?id=94545) - Oldschool App Themes
|
|
||||||
* [AccentColorizer](https://github.com/krlvm/AccentColorizer) - Custom Windows Accent Color
|
|
||||||
* [Cute Borders](https://github.com/keifufu/cute-borders) - Change Border Color / Win 11 Only
|
|
||||||
* [MicaForEveryone](https://github.com/MicaForEveryone/MicaForEveryone) - System Backdrop Customization
|
|
||||||
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - Network & Hardware Monitor Themes
|
|
||||||
* [Pokemon Terminal](https://github.com/LazoCoder/Pokemon-Terminal) - Pokémon Terminal Themes
|
* [Pokemon Terminal](https://github.com/LazoCoder/Pokemon-Terminal) - Pokémon Terminal Themes
|
||||||
* [ExcelDarkThemeFix](https://github.com/matafokka/ExcelDarkThemeFix) - Fix Excel on Themed Windows
|
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - System Monitor Themes
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Wallpapers
|
## ▷ Wallpapers
|
||||||
|
|
||||||
* ⭐ **[wallhaven.cc](https://wallhaven.cc/)** - Search Wallpapers / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader) / [Client](https://github.com/luisflorido/wallhaven-desktop)
|
* ⭐ **[wallhaven.cc](https://wallhaven.cc/)** - Search Wallpapers / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader) / [Client](https://github.com/luisflorido/wallhaven-desktop)
|
||||||
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)** - Search Wallpapers
|
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)**, [WallpaperCave](https://wallpapercave.com/), [WallpapersCraft](https://wallpaperscraft.com/), [VSThemes](https://vsthemes.org/en/) - Search Wallpapers
|
||||||
* ⭐ **[Rev Wallpaper](https://we-img-search.ordinall.me/)** - Reverse Wallpaper Search
|
* ⭐ **[Rev Wallpaper](https://we-img-search.ordinall.me/)** or [r/WallpaperRequests](https://www.reddit.com/r/WallpaperRequests/) - Reverse Wallpaper Search
|
||||||
* ⭐ **[Studio Ghibli Wallpapers](https://www.ghibli.jp/info/013772)** or [Ghibli Upscaled](https://rentry.co/FMHYBase64#ghibli-upscaled) - Studio Ghibli Wallpapers
|
* ⭐ **[Studio Ghibli Wallpapers](https://www.ghibli.jp/info/013772)** or [Ghibli Upscaled](https://rentry.co/FMHYBase64#ghibli-upscaled) - Studio Ghibli Wallpapers
|
||||||
* ⭐ **[Windows Wall Packs](https://rentry.co/fmhybase64#windows-wallpapers)**, [WallpaperHub](https://www.wallpaperhub.app/), [Windows 10 Spotlight](https://windows10spotlight.com/), [Win7Walls](https://windowswallpaper.miraheze.org/wiki/Windows_7) or [WindowsWallpaper](https://windowswallpaper.miraheze.org/wiki/Main_Page) - Windows Wallpapers
|
* ⭐ **[Ultimate Windows Wallpack](https://rentry.co/fmhybase64#windows-wallpapers)** / [Wiki](https://windowswallpaper.miraheze.org/wiki/Main_Page), [Spotlight](https://windows10spotlight.com/) - Windows Wallpapers
|
||||||
* ⭐ **[LWP](https://github.com/jszczerbinsky/lwp)** - Move Wallpapers with Cursor
|
* ⭐ **[LWP](https://github.com/jszczerbinsky/lwp)**, [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Live Wallpapers
|
||||||
* [WallpaperCave](https://wallpapercave.com/) - Search Wallpapers
|
|
||||||
* [WallpapersCraft](https://wallpaperscraft.com/) - Search Wallpapers
|
|
||||||
* [/r/Wallpaper](https://www.reddit.com/r/wallpaper/) - Wallpapers Community
|
* [/r/Wallpaper](https://www.reddit.com/r/wallpaper/) - Wallpapers Community
|
||||||
* [Faerber](https://farbenfroh.io/) - Edit Wallpapers to Match Color Scheme
|
|
||||||
* [DualMonitorBackgrounds](https://www.dualmonitorbackgrounds.com/) - Dual Monitor Wallpapers
|
* [DualMonitorBackgrounds](https://www.dualmonitorbackgrounds.com/) - Dual Monitor Wallpapers
|
||||||
* [Scenic Illustrations](https://www.pixeltrue.com/scenic-illustrations) - Landscape Wallpapers
|
* [Scenic Illustrations](https://www.pixeltrue.com/scenic-illustrations) - Landscape Wallpapers
|
||||||
* [CoolBackgrounds](https://coolbackgrounds.io/) or [wallup](https://wallup.net/) - Customizable Wallpapers
|
* [CoolBackgrounds](https://coolbackgrounds.io/) - Customizable Wallpapers
|
||||||
* [Simple Desktops](https://simpledesktops.com/), [Minimalistic Wallpaper](https://minimalistic-wallpaper.demolab.com/), [Positron Dream](https://www.positrondream.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalist Wallpapers
|
* [Simple Desktops](https://simpledesktops.com/), [Minimalistic Wallpaper](https://minimalistic-wallpaper.demolab.com/), [Positron Dream](https://www.positrondream.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalist Wallpapers
|
||||||
* [Aesthetic Wallpapers](https://github.com/D3Ext/aesthetic-wallpapers) - Aesthetic Wallpapers
|
* [Aesthetic Wallpapers](https://github.com/D3Ext/aesthetic-wallpapers) - Aesthetic Wallpapers
|
||||||
* [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [VSThemes Live Walls](https://vsthemes.org/en/wallpapers/), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Animated / Live Wallpapers
|
* [Mac Walls](https://goo.gl/photos/HjY1hmo6p3jfFz8a7) or [BasicAppleBlog](https://basicappleguy.com/basicappleblog/category/Wallpaper) - Apple Wallpapers
|
||||||
* [AutoWall](https://github.com/SegoCode/AutoWall) - Turn Videos / GIFs to Live Wallpapers
|
|
||||||
* [Screencaps](https://screencaps.us/) or [shot.cafe](https://shot.cafe/) - Movie / TV Wallpapers
|
|
||||||
* [Anime Pictures](https://anime-pictures.net/), [WallpaperWaifu](https://wallpaperwaifu.com/), [TheOtaku](https://theotaku.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
|
||||||
* [Dracula Wallpapers](https://draculatheme.com/wallpaper) - Dracula Wallpapers
|
|
||||||
* [Mac Walls](https://goo.gl/photos/HjY1hmo6p3jfFz8a7), [2](https://photos.google.com/share/AF1QipNNQyeVrqxBdNmBkq9ILswizuj-RYJFNt5GlxJZ90Y6hx0okrVSLKSnmFFbX7j5Mg?key=RV8tSXVJVGdfS1RIQUI0Q3RZZVhlTmw0WmhFZ2V3) - Apple Wallpapers
|
|
||||||
* [BasicAppleBlog](https://basicappleguy.com/basicappleblog/category/Wallpaper) - Custom Apple Wallpapers
|
|
||||||
* [ChromecastBG](https://chromecastbg.alexmeub.com/) - Chromecast Wallpapers
|
* [ChromecastBG](https://chromecastbg.alexmeub.com/) - Chromecast Wallpapers
|
||||||
* [Bing Wallpaper Archive](https://bingwallpaper.anerg.com/) - Bing Wallpapers
|
* [Bing Wallpaper Archive](https://bingwallpaper.anerg.com/) - Bing Wallpapers
|
||||||
* [Xbox Wallpapers](https://www.xbox.com/en-us/wallpapers/) - Xbox Wallpapers
|
* [Xbox Wallpapers](https://www.xbox.com/en-us/wallpapers/) - Xbox Wallpapers
|
||||||
|
* [Screencaps](https://screencaps.us/) or [shot.cafe](https://shot.cafe/) - Movie / TV Wallpapers
|
||||||
|
* [Anime Pictures](https://anime-pictures.net/), [WallpaperWaifu](https://wallpaperwaifu.com/), [TheOtaku](https://theotaku.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
||||||
* [WallsPic](https://wallspic.com/), [WallpaperFlare](https://www.wallpaperflare.com/), [HDQwalls](https://hdqwalls.com/) or [UHD Wallpaper](https://www.uhdpaper.com/) - Misc Wallpapers
|
* [WallsPic](https://wallspic.com/), [WallpaperFlare](https://www.wallpaperflare.com/), [HDQwalls](https://hdqwalls.com/) or [UHD Wallpaper](https://www.uhdpaper.com/) - Misc Wallpapers
|
||||||
* [G_Walls](https://t.me/G_Walls) - Telegram Wallpaper Channels
|
* [G_Walls](https://t.me/G_Walls) - Telegram Wallpaper Channels
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Wallpaper Managers
|
## ▷ Wallpaper Tools
|
||||||
|
|
||||||
* ⭐ **[Wallpaper Engine](https://rentry.co/FMHYBase64#wallpaper-engine)** / [PKG to Zip](https://github.com/TheRioMiner/Wallpaper-Engine-Pkg-to-Zip) / [Collections](https://www.wallpaperengine.space/collections), [2](https://steamcommunity.com/sharedfiles/filedetails/?id=2801058904) / [Workshop DL](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders) - Wallpaper Manager
|
* ⭐ **[Wallpaper Engine](https://rentry.co/FMHYBase64#wallpaper-engine)** / [PKG to Zip](https://github.com/TheRioMiner/Wallpaper-Engine-Pkg-to-Zip) / [Collections](https://www.wallpaperengine.space/collections), [2](https://steamcommunity.com/sharedfiles/filedetails/?id=2801058904) / [Workshop DL](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders) - Wallpaper Manager
|
||||||
* ⭐ **[Lively](https://www.rocksdanister.com/lively/)** or [ScreenPlay](https://screen-play.app/) - Live Wallpaper Manager
|
* ⭐ **[Lively](https://www.rocksdanister.com/lively/)** or [ScreenPlay](https://screen-play.app/) - Live Wallpaper Manager
|
||||||
* [backiee](https://apps.microsoft.com/store/detail/backiee-wallpaper-studio-10/9WZDNCRFHZCD) - Wallpaper Manager
|
* [backiee](https://apps.microsoft.com/store/detail/backiee-wallpaper-studio-10/9WZDNCRFHZCD) - Wallpaper Manager
|
||||||
* [SuperPaper](https://github.com/hhannine/superpaper) - Cross-Platform Multi-Monitor Wallpaper Manager
|
* [SuperPaper](https://github.com/hhannine/superpaper) - Cross-Platform Multi-Monitor Wallpaper Manager
|
||||||
* [Background Switcher](https://johnsad.ventures/software/backgroundswitcher/) - Multi-Host Wallpaper Switcher
|
* [Background Switcher](https://johnsad.ventures/software/backgroundswitcher/) - Multi-Host Wallpaper Switcher
|
||||||
* [Awesome Wallpaper](https://awesome-wallpaper.com/) - Show System Information on Wallpaper
|
* [Faerber](https://farbenfroh.io/) - Edit Wallpapers to Match Color Scheme
|
||||||
|
* [AutoWall](https://github.com/SegoCode/AutoWall) - Turn Videos / GIFs to Live Wallpapers
|
||||||
|
* [Awesome Wallpaper](https://awesome-wallpaper.com/) - Show System Information on Wallpaper
|
|
@ -36,12 +36,11 @@
|
||||||
* ⭐ **[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
|
||||||
* [bpa.st](https://bpa.st/) - Multi-Syntax / Markdown Support
|
* [bpa.st](https://bpa.st/) - Multi-Syntax / Markdown Support
|
||||||
* [Mozilla Community Pastebin](https://paste.mozilla.org/) - Multi-Syntax / Markdown Support
|
|
||||||
* [dpaste](https://dpaste.org/) - Multi-Syntax / Markdown Support / [GitHub](https://github.com/DarrenOfficial/dpaste)
|
* [dpaste](https://dpaste.org/) - Multi-Syntax / Markdown Support / [GitHub](https://github.com/DarrenOfficial/dpaste)
|
||||||
* [cryptgeon](https://cryptgeon.org/) - Single View / Plain Text / [GitHub](https://github.com/cupcakearmy/cryptgeon)
|
* [cryptgeon](https://cryptgeon.org/) - Single View / Plain Text / [GitHub](https://github.com/cupcakearmy/cryptgeon)
|
||||||
* [Paste.ee](https://paste.ee/) - Multi-Syntax / Markdown Support
|
* [Paste.ee](https://paste.ee/) - Multi-Syntax / Markdown Support
|
||||||
|
@ -104,10 +103,10 @@
|
||||||
|
|
||||||
## ▷ Audio Transcription
|
## ▷ Audio Transcription
|
||||||
|
|
||||||
* [Whisper](https://github.com/openai/whisper) - Audio Transcription / [WebUI](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 Transcription Services
|
* [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
|
||||||
* [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
|
||||||
|
@ -120,9 +119,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
|
||||||
|
@ -310,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/)
|
||||||
|
@ -424,14 +425,12 @@
|
||||||
|
|
||||||
## ▷ ASCII Art
|
## ▷ ASCII Art
|
||||||
|
|
||||||
* ⭐ **[TAAG](https://patorjk.com/software/taag/)**, [DeepAA](https://github.com/OsciiArt/DeepAA), [Kammerl](https://www.kammerl.de/ascii/AsciiSignature.php) or [ASCII Today](https://ascii.today/) - ASCII Art / Text Generators
|
* ⭐ **[TAAG](https://patorjk.com/software/taag/)**, [DeepAA](https://github.com/OsciiArt/DeepAA), [Kammerl](https://www.kammerl.de/ascii/AsciiSignature.php), [ASCII Art Studio](https://www.majorgeeks.com/files/details/ascii_art_studio.html) or [ASCII Today](https://ascii.today/) - ASCII Art / Text Generators
|
||||||
* [REXPaint](https://www.gridsagegames.com/rexpaint/), [Playscii](https://jp.itch.io/playscii) or [PabloDraw](https://picoe.ca/products/pablodraw/) - ASCII Editors
|
* [REXPaint](https://www.gridsagegames.com/rexpaint/), [Playscii](https://jp.itch.io/playscii) or [PabloDraw](https://picoe.ca/products/pablodraw/) - ASCII Editors
|
||||||
* [ASCII Paint](https://ascii.alienmelon.com/) - ASCII Paint Tool
|
* [ASCII Paint](https://ascii.alienmelon.com/) - ASCII Paint Tool
|
||||||
* [ascii-art-generator](https://www.ascii-art-generator.org/), [asciiart](https://asciiart.club/), [ascii-image-converter](https://github.com/TheZoraiz/ascii-image-converter), [Monospace](https://codepen.io/Mikhail-Bespalov/pen/JoPqYrz), [ITOA](https://itoa.hex.dance/) or [ASCII-art-creator](https://github.com/CherryPill/ASCII-art-creator) - Image to ASCII Art
|
* [ascii-art-generator](https://www.ascii-art-generator.org/), [asciiart](https://asciiart.club/), [ascii-image-converter](https://github.com/TheZoraiz/ascii-image-converter), [Monospace](https://codepen.io/Mikhail-Bespalov/pen/JoPqYrz), [ITOA](https://itoa.hex.dance/) or [ASCII-art-creator](https://github.com/CherryPill/ASCII-art-creator) - Image to ASCII Art
|
||||||
* [Love ASCII](http://loveascii.com/), [asciiart.eu](https://www.asciiart.eu/), [EmojiCombos](https://emojicombos.com/), [16colors](https://16colo.rs/), [ascii.co](https://ascii.co.uk/art) or [RoySAC](http://www.roysac.com/sitemap.html) - Browse / Copy ASCII Art
|
* [Love ASCII](http://loveascii.com/), [asciiart.eu](https://www.asciiart.eu/), [EmojiCombos](https://emojicombos.com/), [16colors](https://16colo.rs/), [ascii.co](https://ascii.co.uk/art) or [RoySAC](http://www.roysac.com/sitemap.html) - Browse / Copy ASCII Art
|
||||||
* [ASCII Flow](https://asciiflow.com/) or [tree](https://tree.nathanfriend.com/) - Create ASCII Diagrams
|
|
||||||
* [Image to Braille](https://505e06b2.github.io/Image-to-Braille/) - Convert Images to Braille
|
* [Image to Braille](https://505e06b2.github.io/Image-to-Braille/) - Convert Images to Braille
|
||||||
* [SVGBob Editor](https://ivanceras.github.io/svgbob-editor/) - Convert ASCII Diagrams to SVG Images
|
|
||||||
* [AnsiLove](https://www.ansilove.org/downloads.html) or [convert-ascii-to-image](https://onlinetools.com/ascii/convert-ascii-to-image) - ANSI / ASCII Art to PNG Converters
|
* [AnsiLove](https://www.ansilove.org/downloads.html) or [convert-ascii-to-image](https://onlinetools.com/ascii/convert-ascii-to-image) - ANSI / ASCII Art to PNG Converters
|
||||||
* [lvllvl](https://lvllvl.com/) or [Petmate](https://nurpax.github.io/petmate/) - C64 PETSCII Image Editor
|
* [lvllvl](https://lvllvl.com/) or [Petmate](https://nurpax.github.io/petmate/) - C64 PETSCII Image Editor
|
||||||
|
|
||||||
|
@ -444,7 +443,6 @@
|
||||||
* [Typewolf](https://www.typewolf.com/) or [Typ.io](https://typ.io/) - Trending Website Fonts
|
* [Typewolf](https://www.typewolf.com/) or [Typ.io](https://typ.io/) - Trending Website Fonts
|
||||||
* [Cava's Pixel Resources](https://caveras.net/) - Pixel Fonts
|
* [Cava's Pixel Resources](https://caveras.net/) - Pixel Fonts
|
||||||
* [Oldschool PC Fonts](https://int10h.org/oldschool-pc-fonts/) - Oldschool PC Fonts
|
* [Oldschool PC Fonts](https://int10h.org/oldschool-pc-fonts/) - Oldschool PC Fonts
|
||||||
* [Codeface](https://github.com/chrissimpkins/codeface), [Monaspace](https://monaspace.githubnext.com/), [Programming Fonts](https://www.programmingfonts.org/) or [Dev Fonts](https://devfonts.gafi.dev/) - Fonts for Coding / [Comparison](https://www.codingfont.com/)
|
|
||||||
* [FiraCode](https://github.com/tonsky/FiraCode), [Cascadia Code](https://github.com/microsoft/cascadia-code) or [Maple Font](https://github.com/subframe7536/Maple-font) - Monospace Fonts
|
* [FiraCode](https://github.com/tonsky/FiraCode), [Cascadia Code](https://github.com/microsoft/cascadia-code) or [Maple Font](https://github.com/subframe7536/Maple-font) - Monospace Fonts
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -470,6 +468,7 @@
|
||||||
* [Online Fonts](https://online-fonts.com/) - Freeware
|
* [Online Fonts](https://online-fonts.com/) - Freeware
|
||||||
* [CDNFonts](https://www.cdnfonts.com/) - Freeware
|
* [CDNFonts](https://www.cdnfonts.com/) - Freeware
|
||||||
* [Fontesk](https://fontesk.com/) - Freeware
|
* [Fontesk](https://fontesk.com/) - Freeware
|
||||||
|
* [FontStruct](https://fontstruct.com/) - Freeware
|
||||||
* [iFonts](https://ifonts.xyz/) - Freeware
|
* [iFonts](https://ifonts.xyz/) - Freeware
|
||||||
* [DownloadFonts](https://www.downloadfonts.io/) - Freeware
|
* [DownloadFonts](https://www.downloadfonts.io/) - Freeware
|
||||||
* [AbstractFonts](https://www.abstractfonts.com/) - Freeware
|
* [AbstractFonts](https://www.abstractfonts.com/) - Freeware
|
||||||
|
@ -487,12 +486,13 @@
|
||||||
* ⭐ **[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)
|
||||||
* [DFonts](https://www.dfonts.org/)
|
* [DFonts](https://www.dfonts.org/)
|
||||||
|
* [Font Spring](https://www.fontspring.com/free)
|
||||||
* [FFonts](https://www.ffonts.net/)
|
* [FFonts](https://www.ffonts.net/)
|
||||||
* [FontsHub](https://fontshub.pro/)
|
* [FontsHub](https://fontshub.pro/)
|
||||||
* [Font Meme](https://fontmeme.com/)
|
* [Font Meme](https://fontmeme.com/)
|
||||||
|
@ -508,7 +508,8 @@
|
||||||
|
|
||||||
* ⭐ **[Font Interceptor](https://fontinterceptor.mschfmag.com/)** - Download Fonts from Websites
|
* ⭐ **[Font Interceptor](https://fontinterceptor.mschfmag.com/)** - Download Fonts from Websites
|
||||||
* ⭐ **[FontDrop](https://fontdrop.info/)** - Analyze Font Files
|
* ⭐ **[FontDrop](https://fontdrop.info/)** - Analyze Font Files
|
||||||
* [WhatTheFont](https://www.myfonts.com/pages/whatthefont), [Identifont](http://www.identifont.com/), [WhatFont](https://whatfonttool.com/) or [Font Finder](https://www.whatfontis.com/) - Font Identification Tools
|
* ⭐ **[Adobe Fonts](https://fonts.adobe.com/fonts/vs/upload)**, [Font Finder](https://www.whatfontis.com/), [WhatTheFont](https://www.myfonts.com/pages/whatthefont), [Identifont](http://www.identifont.com/), [WhatFont](https://whatfonttool.com/) - Font Identification Tools
|
||||||
|
* [Fonts Ninja](https://fonts.ninja/tools) - Font Identification Extension
|
||||||
* [Unicode Explorer](https://unicode-explorer.com/) or [Compart](https://www.compart.com/en/unicode) - Unicode Character Identification
|
* [Unicode Explorer](https://unicode-explorer.com/) or [Compart](https://www.compart.com/en/unicode) - Unicode Character Identification
|
||||||
* [Transfonter](https://transfonter.org/) - Create CSS @font-face Kits
|
* [Transfonter](https://transfonter.org/) - Create CSS @font-face Kits
|
||||||
* [TypeRip](https://badnoise.net/TypeRip/) - Adobe Font Ripper / [GitHub](https://github.com/CodeZombie/TypeRip)
|
* [TypeRip](https://badnoise.net/TypeRip/) - Adobe Font Ripper / [GitHub](https://github.com/CodeZombie/TypeRip)
|
||||||
|
@ -518,7 +519,6 @@
|
||||||
* [Formito](https://formito.com/tools/logo) - Typography Logo Maker
|
* [Formito](https://formito.com/tools/logo) - Typography Logo Maker
|
||||||
* [Type Terms](https://avark.agency/typeterms/) - Typography Cheat Sheet
|
* [Type Terms](https://avark.agency/typeterms/) - Typography Cheat Sheet
|
||||||
* [The Good Line-Height](https://thegoodlineheight.com/) - Typography Scaling Editor
|
* [The Good Line-Height](https://thegoodlineheight.com/) - Typography Scaling Editor
|
||||||
* [MacType](https://www.mactype.net/) - Use Mac fonts on Windows
|
|
||||||
* [Font List](https://wavian.com/font-list.html) or [So You Need A Typeface 2.0](https://ianli.github.io/so-you-need-a-typeface/) - Examples of Font Styles
|
* [Font List](https://wavian.com/font-list.html) or [So You Need A Typeface 2.0](https://ianli.github.io/so-you-need-a-typeface/) - Examples of Font Styles
|
||||||
* [Type Design Resources](https://typedesignresources.com/) or [Free Faces](https://www.freefaces.gallery/) - Typeface Resources
|
* [Type Design Resources](https://typedesignresources.com/) or [Free Faces](https://www.freefaces.gallery/) - Typeface Resources
|
||||||
|
|
||||||
|
@ -543,7 +543,7 @@
|
||||||
|
|
||||||
* ⭐ **[TypeTrials](https://typetrials.com/)** - Variable Font Playground
|
* ⭐ **[TypeTrials](https://typetrials.com/)** - Variable Font Playground
|
||||||
* [V-Fonts](https://v-fonts.com/) or [Phase](https://www.eliashanzer.com/phase/) - Variable Fonts Testers
|
* [V-Fonts](https://v-fonts.com/) or [Phase](https://www.eliashanzer.com/phase/) - Variable Fonts Testers
|
||||||
* [enFont](https://enfont.javierarce.com/), [Calligraphr](https://www.calligraphr.com/en/) or [FontStruct](https://fontstruct.com/) - Custom Font Creators
|
* [enFont](https://enfont.javierarce.com/) or [Calligraphr](https://www.calligraphr.com/en/) - Custom Font Creators
|
||||||
* [Fontjoy](https://fontjoy.com/) - Generate Font Combinations
|
* [Fontjoy](https://fontjoy.com/) - Generate Font Combinations
|
||||||
* [FontSprite](https://adamstrange.itch.io/fontsprite) - FontSprite Editor
|
* [FontSprite](https://adamstrange.itch.io/fontsprite) - FontSprite Editor
|
||||||
* [BitFontMaker2](https://pentacom.jp/pentacom/bitfontmaker2/) - BitMap Font Editor
|
* [BitFontMaker2](https://pentacom.jp/pentacom/bitfontmaker2/) - BitMap Font Editor
|
||||||
|
|
|
@ -36,7 +36,6 @@
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[BTDigg](https://btdig.com/)** - DHT-Based / [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/) / [.i2p](http://btdigg.i2p/)
|
* ⭐ **[BTDigg](https://btdig.com/)** - DHT-Based / [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/) / [.i2p](http://btdigg.i2p/)
|
||||||
* ⭐ **[BitSearch](https://bitsearch.to/)**, [2](https://solidtorrents.to) - DHT-Based
|
|
||||||
* ⭐ **[Knaben](https://knaben.org/)**
|
* ⭐ **[Knaben](https://knaben.org/)**
|
||||||
* [ExT](https://ext.to/), [2](https://search.extto.com/) / [Proxy](https://extranet.torrentbay.st/)
|
* [ExT](https://ext.to/), [2](https://search.extto.com/) / [Proxy](https://extranet.torrentbay.st/)
|
||||||
* [TorrentProject](https://torrentproject.cc/), [2](https://torrentproject2.net/) - DHT-Based
|
* [TorrentProject](https://torrentproject.cc/), [2](https://torrentproject2.net/) - DHT-Based
|
||||||
|
@ -92,7 +91,7 @@
|
||||||
* ⭐ **[Deluge](https://www.deluge-torrent.org/)** - [Plugins](https://deluge-torrent.org/plugins/) / [Config](https://github.com/ratanakvlun/deluge-ltconfig/releases) / [Telegram Plugin](https://github.com/noam09/deluge-telegramer)
|
* ⭐ **[Deluge](https://www.deluge-torrent.org/)** - [Plugins](https://deluge-torrent.org/plugins/) / [Config](https://github.com/ratanakvlun/deluge-ltconfig/releases) / [Telegram Plugin](https://github.com/noam09/deluge-telegramer)
|
||||||
* ⭐ **[Transmission](https://transmissionbt.com/)**
|
* ⭐ **[Transmission](https://transmissionbt.com/)**
|
||||||
* [torrent-control](https://github.com/Mika-/torrent-control) or [Remote Torrent Adder](https://github.com/bogenpirat/remote-torrent-adder) - Easily Send Torrents to Client
|
* [torrent-control](https://github.com/Mika-/torrent-control) or [Remote Torrent Adder](https://github.com/bogenpirat/remote-torrent-adder) - Easily Send Torrents to Client
|
||||||
* [Motrix](https://motrix.app/) / [GitHub](https://github.com/agalwood/Motrix)
|
* [imFile](https://imfile.io/) / Updated Motrix fork / [GitHub](https://github.com/imfile-io/imfile-desktop)
|
||||||
* [Tixati](https://tixati.com/)
|
* [Tixati](https://tixati.com/)
|
||||||
* [WizTorrent](https://wiztorrent.com/) / Torrent Player / WebShare
|
* [WizTorrent](https://wiztorrent.com/) / Torrent Player / WebShare
|
||||||
* [BiglyBT](https://www.biglybt.com/)
|
* [BiglyBT](https://www.biglybt.com/)
|
||||||
|
|
|
@ -99,6 +99,4 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
|
||||||
|
|
||||||
### [Fake Z-Lib Sites](https://www.reddit.com/r/zlibrary/wiki/index/scamsites/) / [2](https://i.imgur.com/lSMHLlL.png) / [3](https://i.ibb.co/KGDLZRp/image.png)
|
### [Fake Z-Lib Sites](https://www.reddit.com/r/zlibrary/wiki/index/scamsites/) / [2](https://i.imgur.com/lSMHLlL.png) / [3](https://i.ibb.co/KGDLZRp/image.png)
|
||||||
|
|
||||||
### [Fake Windows Activators](https://pastebin.com/gCmWs2GR)
|
### [Fake Windows Activators](https://pastebin.com/gCmWs2GR)
|
||||||
|
|
||||||
### [Unsafe Wayback Machine Links](https://rentry.co/ue9qk)
|
|
|
@ -176,7 +176,7 @@
|
||||||
* ⭐ **[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)
|
* [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)
|
||||||
|
@ -252,7 +252,6 @@
|
||||||
|
|
||||||
* 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)**
|
* 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)**
|
||||||
* ⭐ **[Jellyfin](https://jellyfin.org/)** - Media Server
|
* ⭐ **[Jellyfin](https://jellyfin.org/)** - Media Server
|
||||||
* ⭐ **[Plex](https://www.plex.tv/)** - Media Server
|
|
||||||
* ⭐ **[Kodi](https://kodi.tv/)** - Media Server
|
* ⭐ **[Kodi](https://kodi.tv/)** - Media Server
|
||||||
* [TRaSH Guides](https://trash-guides.info/) / [Discord](https://discord.com/invite/4K2kdvwzFh) or [The Complete Guide](https://redd.it/pqsomd) - Server Setup Guides
|
* [TRaSH Guides](https://trash-guides.info/) / [Discord](https://discord.com/invite/4K2kdvwzFh) or [The Complete Guide](https://redd.it/pqsomd) - Server Setup Guides
|
||||||
* [Self-hosted Anime](https://github.com/shyonae/selfhosted-anime/wiki) - Anime Server Setup Guides
|
* [Self-hosted Anime](https://github.com/shyonae/selfhosted-anime/wiki) - Anime Server Setup Guides
|
||||||
|
@ -261,6 +260,7 @@
|
||||||
* [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer
|
* [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer
|
||||||
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation
|
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation
|
||||||
* [Emby](https://emby.media/) - Media Server
|
* [Emby](https://emby.media/) - Media Server
|
||||||
|
* [Plex](https://www.plex.tv/) - Media Server
|
||||||
* [Universal Media Server](https://www.universalmediaserver.com/) - Media Server
|
* [Universal Media Server](https://www.universalmediaserver.com/) - Media Server
|
||||||
* [OSMC](https://osmc.tv/) - Media Server
|
* [OSMC](https://osmc.tv/) - Media Server
|
||||||
* [Kawaii-Player](https://github.com/kanishka-linux/kawaii-player) - Media Server
|
* [Kawaii-Player](https://github.com/kanishka-linux/kawaii-player) - Media Server
|
||||||
|
@ -280,14 +280,13 @@
|
||||||
* [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
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Plex Tools
|
## ▷ Plex Tools
|
||||||
|
|
||||||
* [Plxplainers](https://www.plxplainers.xyz/) or [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides
|
* [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides
|
||||||
* [Tautulli](https://tautulli.com/) - Server Monitor / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#tautulli-note)
|
* [Tautulli](https://tautulli.com/) - Server Monitor / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#tautulli-note)
|
||||||
* [SuperPlex](https://normantheidiot.neocities.org/superplex/) - Plex Plugins
|
* [SuperPlex](https://normantheidiot.neocities.org/superplex/) - Plex Plugins
|
||||||
* [Kitana](https://github.com/pannal/Kitana) - Plugin Frontend
|
* [Kitana](https://github.com/pannal/Kitana) - Plugin Frontend
|
||||||
|
@ -304,7 +303,7 @@
|
||||||
## ▷ Jellyfin Tools
|
## ▷ Jellyfin Tools
|
||||||
|
|
||||||
* 🌐 **[Awesome Jellyfin](https://github.com/awesome-jellyfin/awesome-jellyfin)** - Jellyfin Resources
|
* 🌐 **[Awesome Jellyfin](https://github.com/awesome-jellyfin/awesome-jellyfin)** - Jellyfin Resources
|
||||||
* ⭐ **[Blink](https://github.com/prayag17/Blink)** or [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Clients
|
* ⭐ **[Blink](https://github.com/prayag17/Blink)**, [Fladder](https://github.com/DonutWare/Fladder/) or [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Clients
|
||||||
* [/r/JellyfinShare](https://www.reddit.com/r/JellyfinShare/) - Jellyfin Server Sharing
|
* [/r/JellyfinShare](https://www.reddit.com/r/JellyfinShare/) - Jellyfin Server Sharing
|
||||||
* [Jellyfin Forum](https://forum.jellyfin.org/) - Official Jellyfin Forum
|
* [Jellyfin Forum](https://forum.jellyfin.org/) - Official Jellyfin Forum
|
||||||
* [Jellyfin Vue](https://github.com/jellyfin/jellyfin-vue) - Jellyfin Web Client
|
* [Jellyfin Vue](https://github.com/jellyfin/jellyfin-vue) - Jellyfin Web Client
|
||||||
|
@ -340,11 +339,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)
|
||||||
|
@ -408,7 +405,7 @@
|
||||||
## ▷ Online Editors
|
## ▷ Online Editors
|
||||||
|
|
||||||
* ⭐ **[wide.video](https://wide.video/)** / [Discord](https://discord.gg/Q54kW97yj5)
|
* ⭐ **[wide.video](https://wide.video/)** / [Discord](https://discord.gg/Q54kW97yj5)
|
||||||
* ⭐ **[Pikimov](https://pikimov.com/)** / Requires Chromium
|
* ⭐ **[Pikimov](https://pikimov.com/)** / Use Edge or Chrome
|
||||||
* ⭐ **[Mastershot](https://mastershot.app/)** / Signup Required
|
* ⭐ **[Mastershot](https://mastershot.app/)** / Signup Required
|
||||||
* [VideoInu](https://videoinu.com/)
|
* [VideoInu](https://videoinu.com/)
|
||||||
* [Clideo](https://clideo.com/)
|
* [Clideo](https://clideo.com/)
|
||||||
|
@ -436,10 +433,10 @@
|
||||||
* [FreeVideoEffect](https://freevideoeffect.com/)
|
* [FreeVideoEffect](https://freevideoeffect.com/)
|
||||||
* [VideoCoPilot](https://www.videocopilot.net/)
|
* [VideoCoPilot](https://www.videocopilot.net/)
|
||||||
* [VFXmed](https://www.vfxmed.com/)
|
* [VFXmed](https://www.vfxmed.com/)
|
||||||
|
* [Team V.R releases](https://rentry.co/FMHYBase64#team-vr)
|
||||||
* [flex_cg_vfx](https://t.me/flex_cg_vfx)
|
* [flex_cg_vfx](https://t.me/flex_cg_vfx)
|
||||||
* [VFXLoot](https://vfxloot.com/)
|
* [VFXLoot](https://vfxloot.com/)
|
||||||
* [Download Pirate](https://www.downloadpirate.com/) - **Use Adblock / Avoid Fake Download Buttons** / [Discord](https://discord.gg/ucTvVtBz9Z)
|
* [Download Pirate](https://www.downloadpirate.com/) - **Use Adblock / Avoid Fake Download Buttons** / [Discord](https://discord.gg/ucTvVtBz9Z)
|
||||||
* [Team V.R](https://codec.kyiv.ua/ad0be.html) - After Effects
|
|
||||||
* [ShareAE](https://www.shareae.com/) - After Effects
|
* [ShareAE](https://www.shareae.com/) - After Effects
|
||||||
* [HunterAE](https://hunterae.com/) - After Effects
|
* [HunterAE](https://hunterae.com/) - After Effects
|
||||||
* [Visual Effects Pack](https://t.me/visual_effects_pack) - After Effects
|
* [Visual Effects Pack](https://t.me/visual_effects_pack) - After Effects
|
||||||
|
|
|
@ -6,101 +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, and their respective pros & cons.
|
* **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. 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.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* 🌟 **[Cineby](https://www.cineby.app/)** or [Bitcine](https://www.bitcine.app/) - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (Unofficial)
|
* 🌟 **[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)
|
||||||
* 🌟 **[XPrime](https://xprime.tv/)** - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/ZKcN9KNdn6)
|
* 🌟 **[XPrime](https://xprime.tv/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/ZKcN9KNdn6)
|
||||||
* 🌟 **[1Shows](https://www.1shows.com/)** or [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / 4K / [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)
|
* 🌟 **[Hexa](https://hexa.watch/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
||||||
* 🌟 **[FlickyStream](https://flickystream.com/)** - Movies / TV / Anime / 4K / Auto-Next/ [Telegram](https://t.me/FlickyStream)
|
|
||||||
* 🌟 **[movie-web instances](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 Guide + 4K](https://vimeo.com/1059834885/c3ab398d42) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web-extension) / [Docs](https://docs.undi.rest/) / [GitHub](https://github.com/erynith/movie-web-instances)
|
|
||||||
* 🌟 **[Freek](https://freek.to/)**, [2](https://freeky.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/q8Y9FmYFPR)
|
|
||||||
* 🌟 **[HydraHD](https://hydrahd.me/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
|
||||||
* 🌟 **[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)
|
||||||
* 🌟 **[456movie](https://456movie.com/)**, [2](https://www.345movies.com/), [3](https://345movie.net/), [4](https://456movie.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/456movies)
|
* ⭐ **[uira.live](https://uira.live/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/5ACWhK4Dzf)
|
||||||
* 🌟 **[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)
|
|
||||||
* ⭐ **[Broflix](https://broflix.ci/)** - Movies / TV / Anime / Auto-Next
|
|
||||||
* ⭐ **[PopcornMovies](https://popcornmovies.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
|
||||||
* ⭐ **[AlienFlix](https://alienflix.net/)** - Movies / TV / Anime / Auto-Next
|
|
||||||
* ⭐ **[Hexa](https://hexa.watch/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
|
||||||
* ⭐ **[Vidbox](https://vidbox.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
* ⭐ **[Vidbox](https://vidbox.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||||
* ⭐ **[uira.live](https://uira.live/)** - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.com/invite/5ACWhK4Dzf)
|
* ⭐ **[Cineby](https://www.cineby.app/)** or [Bitcine](https://www.bitcine.app/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||||
* ⭐ **[Bingeflex](https://bingeflex.vercel.app/)** - Movies / TV / Auto-Next / [Discord](https://discord.gg/ajRY6Bn3rr)
|
* ⭐ **[Freek](https://freek.to/)**, [2](https://freeky.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/q8Y9FmYFPR)
|
||||||
* ⭐ **[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)
|
* ⭐ **[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)
|
||||||
|
* ⭐ **[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)
|
||||||
|
* ⭐ **[PopcornMovies](https://popcornmovies.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||||
|
* ⭐ **[Ronny Flix](https://ronnyflix.xyz/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/ronnyflix) / [Discord](https://discord.gg/ygsNU4Ac)
|
||||||
|
* ⭐ **[FlickyStream](https://flickystream.com/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/FlickyStream)
|
||||||
* ⭐ **[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)
|
* ⭐ **[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)
|
||||||
* ⭐ **[Cinemull](https://cinemull.space/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/watch2dayonline)
|
* ⭐ **[SpenFlix](https://watch.spencerdevs.xyz/)** - Movies / TV / [Discord](https://discord.gg/RF8vMBRtTs)
|
||||||
* [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)
|
* ⭐ **[Bingeflex](https://bingeflex.vercel.app/)** - Movies / TV / Auto-Next / [Discord](https://discord.gg/ajRY6Bn3rr)
|
||||||
* [Arabflix](https://www.arabiflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/AMQdQehThg)
|
* ⭐ **[456movie](https://456movie.net/)**, [3](https://345movie.net/), [4](https://456movie.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/456movies)
|
||||||
* [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/)
|
* ⭐ **[AlienFlix](https://alienflix.net/)** - Movies / TV / Anime / Auto-Next
|
||||||
* [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/)
|
* [Broflix](https://broflix.ci/) - Movies / TV / Anime / Auto-Next
|
||||||
* [Noxe](https://noxe.live/) - Movies / TV / Anime / Auto-Next
|
* [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||||
* [ZILLAXR](https://zilla-xr.xyz/) - Movies / TV / [Telegram](https://t.me/+MQUUqEx2WXA0ZmZk)
|
|
||||||
* [AbleFlix](https://ableflix.xyz/), [2](https://ableflix.cc/) - Movies / TV / Anime / [Discord](https://discord.gg/tDKYeh9eQn)
|
|
||||||
* [Mokmobi](https://mokmobi.ovh/), [2](https://mokmobi.site/) - Movies / TV / Anime
|
|
||||||
* [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)
|
||||||
|
* [Arabflix](https://www.arabiflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/AMQdQehThg)
|
||||||
|
* [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
|
||||||
|
* [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
|
||||||
* [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/)
|
||||||
|
* [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
|
||||||
|
* [AbleFlix](https://ableflix.xyz/), [2](https://ableflix.cc/) - Movies / TV / Anime / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||||
|
* [Vidjoy](https://vidjoy.pro/) - Movies / TV / Anime / [Telegram](https://t.me/vidjoy) / [Discord](https://discord.gg/4cq9vkerA3)
|
||||||
|
* [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
|
||||||
|
* [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/)
|
||||||
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4)
|
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4)
|
||||||
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Discord](https://l.cinemadeck.com/discord)
|
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Discord](https://l.cinemadeck.com/discord)
|
||||||
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime
|
|
||||||
* [CorsFlix](https://corsflix.net/) - Movies / TV / Anime
|
|
||||||
* [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / [Discord](https://discord.gg/V8XUhQb2MZ)
|
|
||||||
* [MyFlixed](https://www.myflixed.fun/) - Movies / TV / Anime
|
|
||||||
* [Let's Stream](https://www.letstream.site/) - Movies / TV / Anime
|
* [Let's Stream](https://www.letstream.site/) - Movies / TV / Anime
|
||||||
* [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)
|
* [Mokmobi](https://mokmobi.ovh/), [2](https://mokmobi.site/) - Movies / TV / Anime
|
||||||
* [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/)
|
|
||||||
* [PressPlay](https://www.pressplay.top/), [2](https://pressplay.cam/) - Movies / TV / [Discord](https://discord.gg/r4QrghF4B9)
|
|
||||||
* [Nkiri](https://nkiri.cc/), [2](https://soapertv.cc/), [3](https://popcorntimeonline.cc/), [4](https://streammovies.to/) - Movies / TV
|
|
||||||
* [watch.inzi](https://watch.inzi.dev/) - Movies / TV / Anime
|
|
||||||
* [zmov](https://zmov.vercel.app/), [2](https://watch.coen.ovh/), [3](https://plexmovies.online/) - Movies / TV / Anime / [GitHub](https://github.com/coen-h/zmov)
|
|
||||||
* [Qstream](https://qstream.pages.dev/) - Movies / TV / Anime
|
|
||||||
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
|
|
||||||
* [catflix](https://catflix.su/) - Movies / TV
|
|
||||||
* [ValhallaStream](https://valhallastream.com/), [2](https://valhallastream.pages.dev/) - Movies / TV / Anime
|
|
||||||
* [Vidjoy](https://vidjoy.pro/) - Movies / TV / Anime / [Telegram](https://t.me/vidjoy) / [Discord](https://discord.gg/4cq9vkerA3)
|
|
||||||
* [NEPU](https://nepu.to/) - Movies / TV / Anime / 4K / Auto-Next / **Use Adblock** / [Discord](https://discord.gg/nepu)
|
|
||||||
* [Novafork](https://novafork.cc/) - Movies / TV / [Discord](https://discord.gg/XbDBBmh5FY) / [GitHub](https://github.com/noname25495/novafork)
|
|
||||||
* [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
|
||||||
* [FilmeX](https://filmex.to/) - Movies / TV / Anime / [Discord](https://discord.gg/6r5KTZgqXV)
|
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
|
||||||
* [FlixWatch](https://flixwatch.site/) - Movies / TV / Anime / [Discord](https://discord.com/invite/5MJhpjzv)
|
* [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)
|
||||||
|
* [Novafork](https://novafork.cc/) - Movies / TV / [Discord](https://discord.gg/XbDBBmh5FY) / [GitHub](https://github.com/noname25495/novafork)
|
||||||
|
* [FshareTV](https://fsharetv.co/) - Movies
|
||||||
|
* [Mp4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies / [Mirrors](https://mp4hydra.org/about#domains)
|
||||||
|
* [PressPlay](https://www.pressplay.top/), [2](https://pressplay.cam/) - Movies / TV / [Discord](https://discord.gg/r4QrghF4B9)
|
||||||
|
* [CorsFlix](https://corsflix.net/) - 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)
|
||||||
* [EE3](https://ee3.me/), [2](https://rips.cc/) - Movies / Invite Code: fmhy / Sign-Up Required
|
* [SoaPy](https://soapy.to/) - Movies / TV / Anime
|
||||||
* [M4uFree](https://m4ufree.se/) - Movies / TV / Anime / [Clones](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_m4ufree_clones)
|
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
||||||
* [Wovie](https://wovie.vercel.app/) - Movies / TV / Anime / [GitHub](https://github.com/iswilljr/wovie)
|
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / Use Throwaway Gmail / [4K Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
||||||
* [EnjoyTown](https://enjoytown.pro/) - Movies / TV / Anime / [GitHub](https://github.com/avalynndev/enjoytown)
|
* [Heartive](https://heartive.pages.dev/) - Movies / TV / Anime
|
||||||
* [Cinebook](https://www.cinebook.xyz/) - Movies / TV / Anime / [Discord](https://discord.com/invite/dDKP5Hk7Bp)
|
* [zmov](https://zmov.vercel.app/), [2](https://watch.coen.ovh/), [3](https://plexmovies.online/) - Movies / TV / Anime / [GitHub](https://github.com/coen-h/zmov)
|
||||||
|
* [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
|
||||||
* [Heartive](https://heartive.pages.dev/) - Movies / TV / Anime
|
* [EnjoyTown](https://enjoytown.pro/) - Movies / TV / Anime / [GitHub](https://github.com/avalynndev/enjoytown)
|
||||||
* [SFlix](https://sflix.to/) - Movies / TV / [Clones](https://rentry.co/sflix) / Use Adblocker
|
* [SFlix](https://sflix2.to/) - Movies / TV / [Clones](https://rentry.co/sflix)
|
||||||
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
* [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/), [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)
|
||||||
* [SoaPy](https://soapy.to/) - Movies / TV / Anime
|
* [UniqueStream](https://uniquestream.net/) - Movies / TV / Anime / 720p
|
||||||
* [Mp4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies / [Mirrors](https://mp4hydra.org/about#domains)
|
|
||||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / / [4K Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq) / Use Throwaway Gmail
|
|
||||||
* [LookMovie](https://lookmovie2.to/) - Movies / TV / 480p / Auto-Next / [Clones](https://proxymirrorlookmovie.github.io/)
|
|
||||||
* [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
|
||||||
* [FireFlix](https://fireflix.fun/) - Movies / TV / Anime / [Discord](https://discord.gg/aMEGepsr5A)
|
|
||||||
* [FshareTV](https://fsharetv.co/) - Movies
|
|
||||||
* [SpenFlix](https://watch.spencerdevs.xyz/) - Movies / TV / [Discord](https://discord.gg/RF8vMBRtTs)
|
|
||||||
* [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)
|
* [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
|
||||||
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - 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
|
||||||
* [AZMovies](https://azmovies.ag/) - Movies
|
|
||||||
* [Zoechip](https://zoechip.org/) - Movies / TV
|
* [Zoechip](https://zoechip.org/) - Movies / TV
|
||||||
* [downloads-anymovies](https://www.downloads-anymovies.co/) - Movies
|
* [downloads-anymovies](https://www.downloads-anymovies.co/) - Movies
|
||||||
* [SkyMovies](https://skymovieshd.li/) - Movies / TV / Anime / Some NSFW
|
|
||||||
* [Flixy](https://4k.flixy.watch/) - 4K Movies Only / [Discord](https://discord.gg/fF7TwrjR6T) / [GitHub](https://github.com/hexatv/Flixy-4K)
|
|
||||||
* [Gir Society](https://discord.gg/WHxeZ3aTtb) - Movies / TV / Anime / Plex Required
|
* [Gir Society](https://discord.gg/WHxeZ3aTtb) - Movies / TV / Anime / Plex Required
|
||||||
* [Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0), [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search
|
* [Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0), [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search
|
||||||
* [VidSrc](https://rentry.org/vidsrc) - VidSrc Hosting Sites
|
* [VidSrc](https://rentry.org/vidsrc) - VidSrc Hosting Sites
|
||||||
|
@ -110,7 +103,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
|
||||||
|
@ -129,14 +122,16 @@
|
||||||
* [ARTE](https://www.arte.tv/en) - Movies / TV / Auto-Next
|
* [ARTE](https://www.arte.tv/en) - Movies / TV / Auto-Next
|
||||||
* [BBC iPlayer](https://www.bbc.co.uk/iplayer) - Movies / TV / [Downloader](https://github.com/get-iplayer/get_iplayer) / UK VPN Required / Windscribe has UK free
|
* [BBC iPlayer](https://www.bbc.co.uk/iplayer) - Movies / TV / [Downloader](https://github.com/get-iplayer/get_iplayer) / UK VPN Required / Windscribe has UK free
|
||||||
* [MovieXFilm](https://moviexfilm.com/) - Movies / 720p
|
* [MovieXFilm](https://moviexfilm.com/) - Movies / 720p
|
||||||
|
* [FlixHouse](https://flixhouse.com/) - Indie Movies
|
||||||
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ 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)
|
* ⭐ **[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/) - Sub / Dub / Auto-Next / [Subreddit](https://reddit.com/r/HiAnimeZone/) / [Telegram](https://t.me/HiAnimeLobby) / [Discord](https://discord.gg/hianime)
|
* ⭐ **[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)
|
||||||
|
@ -146,13 +141,13 @@
|
||||||
* ⭐ **[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
|
* [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) - Sub / Dub
|
* [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)
|
||||||
* [Hikari](https://watch.hikaritv.xyz/), [2](https://watch.hikaritv.xyz/) - Sub / Dub / [Discord](https://discord.com/invite/UAPNesVmQ3)
|
* [Hikari](https://watch.hikaritv.xyz/), [2](https://watch.hikaritv.xyz/) - Sub / Dub / [Discord](https://discord.com/invite/UAPNesVmQ3)
|
||||||
* [AnimeOwl](https://animeowl.me/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/rFHXVGZ)
|
* [AnimeOwl](https://animeowl.me/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/rFHXVGZ)
|
||||||
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub [Discord](https://discord.gg/kyVfcGuCCQ)
|
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub / [Discord](https://discord.gg/kyVfcGuCCQ)
|
||||||
* [Gojo](https://gojo.wtf/) - Sub / Dub / [Discord](https://discord.gg/azKUgz2rsE)
|
* [Gojo](https://gojo.wtf/) - Sub / Dub / [Discord](https://discord.gg/azKUgz2rsE)
|
||||||
* [Anime Realms](https://www.animerealms.org/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/FPM57Eugmj)
|
* [Anime Realms](https://www.animerealms.org/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/FPM57Eugmj)
|
||||||
* [AnimeHub](https://animehub.ac/) - Sub / Dub / Auto-Next
|
* [AnimeHub](https://animehub.ac/) - Sub / Dub / Auto-Next
|
||||||
|
@ -167,7 +162,7 @@
|
||||||
* [CKSub](https://cksub.org/) - Chinese Anime / Sub / [Telegram](https://t.me/CKSubORG)
|
* [CKSub](https://cksub.org/) - Chinese Anime / Sub / [Telegram](https://t.me/CKSubORG)
|
||||||
* [MyAnime](https://myanime.live/) - Chinese Anime / Sub
|
* [MyAnime](https://myanime.live/) - Chinese Anime / Sub
|
||||||
* [AnimeKhor](https://animekhor.org/) - Chinese Anime / Sub / [Telegram](https://t.me/AnimeKhorOfficial)
|
* [AnimeKhor](https://animekhor.org/) - Chinese Anime / Sub / [Telegram](https://t.me/AnimeKhorOfficial)
|
||||||
* [Crimson Subs](https://crimsonfansubs.com/) - Chinese Anime / Sub / Sub / [Discord](https://discord.gg/PmYn97vtue)
|
* [Crimson Subs](https://crimsonfansubs.com/) - Chinese Anime / Sub / [Discord](https://discord.gg/PmYn97vtue)
|
||||||
* [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
|
||||||
|
@ -221,19 +216,19 @@
|
||||||
* ⭐ **[DramaCool](https://dramacool.com.tr/)**, [2](https://dramacool.tools/) - TV / Movies
|
* ⭐ **[DramaCool](https://dramacool.com.tr/)**, [2](https://dramacool.tools/) - TV / Movies
|
||||||
* ⭐ **[ViewAsian](https://www.viewasian.org/)** - TV / Movies
|
* ⭐ **[ViewAsian](https://www.viewasian.org/)** - TV / Movies
|
||||||
* [Einthusan](https://einthusan.tv/intro/) - Movies
|
* [Einthusan](https://einthusan.tv/intro/) - Movies
|
||||||
|
* [KissKH](https://kisskh.co/) - TV / Movies
|
||||||
* [DramaHood](https://dramahood.top/), [2](https://kshow123.mom/) - TV / Movies
|
* [DramaHood](https://dramahood.top/), [2](https://kshow123.mom/) - TV / Movies
|
||||||
|
* [KissKH.org](https://kisskh.run/), [2](https://kisskh.net.pl/) - TV
|
||||||
* [KDramaHood](https://kdramahood.com/home2/) - TV / Movies
|
* [KDramaHood](https://kdramahood.com/home2/) - TV / Movies
|
||||||
* [RiveStream](https://rivestream.org/kdrama) - TV / Movies
|
* [RiveStream](https://rivestream.org/kdrama) - TV / Movies
|
||||||
* [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
|
||||||
* [DramaCool.bg](https://dramacool.bg/) - TV / Movies
|
* [DramaCool.bg](https://dramacool.bg/) - TV / Movies
|
||||||
* [dramacool](https://dramacool.com.cv/), [2](https://asianc.org.es/) - TV / Movies
|
* [dramacool](https://dramacool.com.cv/), [2](https://asianc.org.es/) - TV / Movies
|
||||||
* [KissKH.org](https://kisskh.org.es/) - TV
|
|
||||||
* [OnDemandChina](https://www.ondemandchina.com/) - TV / Movies
|
* [OnDemandChina](https://www.ondemandchina.com/) - TV / Movies
|
||||||
|
|
||||||
***
|
***
|
||||||
|
@ -247,7 +242,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
|
||||||
|
@ -259,7 +254,7 @@
|
||||||
* [USNationalArchives](https://www.youtube.com/@USNationalArchives) - Movies / Short Films
|
* [USNationalArchives](https://www.youtube.com/@USNationalArchives) - Movies / Short Films
|
||||||
* [Viddsee](https://www.viddsee.com/), [Shortverse](https://www.shortverse.com/explore), [MAFF](https://www.maff.tv/), [Short of the Week](https://www.shortoftheweek.com/), [Argo](https://web.watchargo.com/), [Shortly](https://watch.shortly.film/) or [Audpop](https://audpop.com/) - Short Films
|
* [Viddsee](https://www.viddsee.com/), [Shortverse](https://www.shortverse.com/explore), [MAFF](https://www.maff.tv/), [Short of the Week](https://www.shortoftheweek.com/), [Argo](https://web.watchargo.com/), [Shortly](https://watch.shortly.film/) or [Audpop](https://audpop.com/) - Short Films
|
||||||
* [HuntleyArchives](https://www.huntleyarchives.com/) - Rare / Forgotten Short Films
|
* [HuntleyArchives](https://www.huntleyarchives.com/) - Rare / Forgotten Short Films
|
||||||
* [0xDB](https://0xdb.org/) - Rare Movies / [How-To](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/find-rare-movies#wiki_method_2_-_streaming)
|
* [0xDB](https://0xdb.org/) - Rare Movies / Use Video Sources
|
||||||
* [FootageFarm](https://footagefarm.com/) - Public Domain Films
|
* [FootageFarm](https://footagefarm.com/) - Public Domain Films
|
||||||
* [Cinetimes](https://cinetimes.org/en/) - Public Domain Films
|
* [Cinetimes](https://cinetimes.org/en/) - Public Domain Films
|
||||||
* [The Travel Film Archive](https://travelfilmarchive.com/) - Public Domain Stock Footage
|
* [The Travel Film Archive](https://travelfilmarchive.com/) - Public Domain Stock Footage
|
||||||
|
@ -348,7 +343,6 @@
|
||||||
## ▷ Live TV
|
## ▷ Live TV
|
||||||
|
|
||||||
* ⭐ **[TheTVApp](https://thetvapp.to/)**, [2](https://tvpass.org/) - TV / Sports / US Only
|
* ⭐ **[TheTVApp](https://thetvapp.to/)**, [2](https://tvpass.org/) - TV / Sports / US Only
|
||||||
* ⭐ **[TOTV](http://totv.org/channels)** - TV / Sports
|
|
||||||
* ⭐ **[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://thedaddy.to/)** 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
|
||||||
|
@ -357,7 +351,7 @@
|
||||||
* [Pluto](https://pluto.tv/live-tv), [2](https://app-lgwebos.pluto.tv/live-tv) - TV / Sports / US Only
|
* [Pluto](https://pluto.tv/live-tv), [2](https://app-lgwebos.pluto.tv/live-tv) - TV / Sports / US Only
|
||||||
* [time4tv.top](https://time4tv.top/) - TV / Sports
|
* [time4tv.top](https://time4tv.top/) - TV / Sports
|
||||||
* [LiveHDTV](https://www.livehdtv.com/) - TV
|
* [LiveHDTV](https://www.livehdtv.com/) - TV
|
||||||
* [IPTV Play](https://iptvplay.stream/en/live-tv) - TV / Sports
|
* [IPTV Play](https://iptvplay.stream/live-tv) - TV / Sports
|
||||||
* [CXtv](https://www.cxtvlive.com/) - TV / Sports
|
* [CXtv](https://www.cxtvlive.com/) - TV / Sports
|
||||||
* [uira.live](https://uira.live/livetv) - TV / Sports / [Discord](https://discord.com/invite/5ACWhK4Dzf)
|
* [uira.live](https://uira.live/livetv) - TV / Sports / [Discord](https://discord.com/invite/5ACWhK4Dzf)
|
||||||
* [lmao.love](https://lmao.love/channels/) - TV / Sports
|
* [lmao.love](https://lmao.love/channels/) - TV / Sports
|
||||||
|
@ -373,7 +367,6 @@
|
||||||
* [WwiTv](https://wwitv.com/) - TV
|
* [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
|
||||||
|
@ -381,6 +374,7 @@
|
||||||
* [VaughnLive](https://vaughn.live/browse/misc) - Random Streams
|
* [VaughnLive](https://vaughn.live/browse/misc) - Random Streams
|
||||||
* [Baked](https://baked.live/) - Random Streams
|
* [Baked](https://baked.live/) - Random Streams
|
||||||
* [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
|
||||||
* [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/) - News
|
||||||
* [SHOWROOM](https://showroom-live.com/) - Live Performance Broadcasts
|
* [SHOWROOM](https://showroom-live.com/) - Live Performance Broadcasts
|
||||||
|
@ -393,24 +387,28 @@
|
||||||
|
|
||||||
* 🌐 **[/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.land](https://ppv.land/)**, [2](https://freeppv.fun/) - Live Events [Status](https://ppv.zone/) / [Discord](https://discord.gg/cSDJu4juQx)
|
||||||
* ⭐ **[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/)**
|
||||||
* ⭐ **[VIP Box Sports](https://www.viprow.nu/)**, [2](https://vipleague.im/), [3](https://www.vipbox.lc/), [4](https://www.vipleague.pm/) / [More Links](https://rentry.org/894dq2c9)
|
* ⭐ **[VIP Box Sports](https://www.viprow.nu/)**, [2](https://vipleague.im/), [3](https://www.vipbox.lc/), [4](https://www.vipleague.pm/) / [More Links](https://rentry.org/894dq2c9)
|
||||||
* ⭐ **[RBTV77](https://www.rbtv77.work/)**
|
* ⭐ **[RBTV77](https://www.rbtv77.work/)**
|
||||||
* ⭐ **[SportsHub](https://sportshub.stream/)**, [2](https://soccer9.sportshub.stream/)
|
|
||||||
* ⭐ **[TotalSportek.to](https://www.totalsportek.to/)**, [2](https://totalsportek.me/) - Stream Aggregator
|
* ⭐ **[TotalSportek.to](https://www.totalsportek.to/)**, [2](https://totalsportek.me/) - Stream Aggregator
|
||||||
|
* ⭐ **[SportsHub](https://sportshub.stream/)**, [2](https://soccer9.sportshub.stream/)
|
||||||
* ⭐ **[OlympicStreams](https://olympicstreams.co/)**
|
* ⭐ **[OlympicStreams](https://olympicstreams.co/)**
|
||||||
* ⭐ **[Sportsurge](https://v2.sportsurge.net/home5/)** - Stream Aggregator
|
* ⭐ **[Sportsurge](https://v2.sportsurge.net/home5/)** - Stream Aggregator
|
||||||
* ⭐ **[WeAreChecking](https://wearechecking.live/)** - Motorsports / Football / [Discord](https://discord.com/invite/wearechecking)
|
* ⭐ **[WeAreChecking](https://wearechecking.live/)** - Motorsports / Football / [Discord](https://discord.com/invite/wearechecking)
|
||||||
* [StreamEast](https://www.streameast.sk/v8/) / [Mirrors](https://gostreameast.link/)
|
* [StreamEast](https://www.streameast.sk/v8/) / [Mirrors](https://gostreameast.link/)
|
||||||
* [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)
|
||||||
* [MutStreams](https://mutstreams.com)
|
* [MutStreams](https://mutstreams.com)
|
||||||
* [HydraHD Sports](https://hydrahd.me/livesports)
|
* [HydraHD Sports](https://hydrahd.ac/livesports)
|
||||||
* [RiveStream](https://rivestream.org/livesports)
|
* [RiveStream](https://rivestream.org/livesports)
|
||||||
* [AlienFlix Sports](https://alienflix.net/live/matches)
|
* [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)
|
* [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/)
|
||||||
|
@ -421,18 +419,19 @@
|
||||||
* [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/)
|
|
||||||
* [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/)
|
||||||
|
@ -459,6 +458,7 @@
|
||||||
* [MMA Streams](https://tonight.mmastreams.cc/) - MMA / Stream Aggregator
|
* [MMA Streams](https://tonight.mmastreams.cc/) - MMA / Stream Aggregator
|
||||||
* [StarLive](https://starlive.click/) - Rare MMA Events
|
* [StarLive](https://starlive.click/) - Rare MMA Events
|
||||||
* [FootyBite](https://www1.footybite.cc/) - Football
|
* [FootyBite](https://www1.footybite.cc/) - Football
|
||||||
|
* [footybite.bz](https://footybite.bz/) - Football
|
||||||
* [SoccerOnline](https://socceronline.me/) - Football
|
* [SoccerOnline](https://socceronline.me/) - Football
|
||||||
* [Streamtonfoot](https://streamtonfoot.vercel.app/) - Football
|
* [Streamtonfoot](https://streamtonfoot.vercel.app/) - Football
|
||||||
* [FlickSoccer](https://flicksoccer.com/) - Football
|
* [FlickSoccer](https://flicksoccer.com/) - Football
|
||||||
|
@ -556,7 +556,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
|
||||||
|
@ -570,15 +570,14 @@
|
||||||
## ▷ 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)
|
||||||
* [PStoreTV](https://rentry.co/PStoreTV) - How to Open Google Play on Android TV
|
* [PStoreTV](https://rentry.co/PStoreTV) - How to Open Google Play on Android TV
|
||||||
* [TCL Browser](https://play.google.com/store/apps/details?id=com.tcl.browser) - Ad-Free Android TV Browsers
|
* [TCL Browser](https://play.google.com/store/apps/details?id=com.tcl.browser) - Ad-Free Android TV Browsers
|
||||||
* [Serenity Android](https://github.com/NineWorlds/serenity-android) - Plex / Emby Android TV App
|
* [Serenity Android](https://github.com/NineWorlds/serenity-android) - Plex / Emby Android TV App
|
||||||
* [Send Files to TV](https://sendfilestotv.app/) - Send Files to Android TV
|
* [atvTools](https://rentry.co/FMHYBase64#atvtools) - Install Apps, Run ADB, Shell Commands, etc.
|
||||||
* [atvTools](https://rentry.co/FMHYBase64#atvtools) - Install Apps, Run ADB, Shell Commands etc
|
|
||||||
* [Leanback on Fire](https://github.com/tsynik/LeanbackLauncher) or [Projectivy Launcher](https://play.google.com/store/apps/details?id=com.spocky.projengmenu) - Android TV Launchers
|
* [Leanback on Fire](https://github.com/tsynik/LeanbackLauncher) or [Projectivy Launcher](https://play.google.com/store/apps/details?id=com.spocky.projengmenu) - Android TV Launchers
|
||||||
* [Launcher Manager](https://xdaforums.com/t/app-firetv-noroot-launcher-manager-change-launcher-without-root.4176349/) - Change Default Launcher
|
* [Launcher Manager](https://xdaforums.com/t/app-firetv-noroot-launcher-manager-change-launcher-without-root.4176349/) - Change Default Launcher
|
||||||
|
|
||||||
|
@ -600,9 +599,9 @@
|
||||||
|
|
||||||
* ↪️ **[General DDL Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download)**
|
* ↪️ **[General DDL Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download)**
|
||||||
* ↪️ **[Video Download Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
* ↪️ **[Video Download Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
||||||
* ⭐ **[OOMoye](https://oomoye.guru/)** - Movies / TV / Anime / Some NSFW
|
* ⭐ **[OOMoye](https://www.oomoye.me/)** - Movies / TV / Anime / Some NSFW
|
||||||
* ⭐ **[VegaMovies](https://vegamovies.rs/)** - Movies / TV / Anime / 4K / [Telegram](https://telegram.dog/vega_officials)
|
* ⭐ **[VegaMovies](https://vegamovies.rs/)** - Movies / TV / Anime / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K/ [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/rgshows)
|
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/rgshows)
|
||||||
* ⭐ **[Rive](https://rivestream.org/)**, [2](https://rivestream.xyz/), [3](https://cinemaos-v2.vercel.app/) - Movies / TV / Anime / 4K / [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 / 4K / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||||
* ⭐ **[Pahe](https://pahe.ink/)** - Movies / TV / Anime / 4K / [Ad-Bypass (Must Have)](https://greasyfork.org/en/scripts/443277) / [Discord](https://discord.gg/4AvaCsd2J4)
|
* ⭐ **[Pahe](https://pahe.ink/)** - Movies / TV / Anime / 4K / [Ad-Bypass (Must Have)](https://greasyfork.org/en/scripts/443277) / [Discord](https://discord.gg/4AvaCsd2J4)
|
||||||
* ⭐ **[MovieParadise](https://movieparadise.org/)** - Movies / TV / [Sign-Up Code (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movieparadise-code) / [Leech](https://fastdebrid.com/)
|
* ⭐ **[MovieParadise](https://movieparadise.org/)** - Movies / TV / [Sign-Up Code (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movieparadise-code) / [Leech](https://fastdebrid.com/)
|
||||||
|
@ -617,7 +616,6 @@
|
||||||
* [LightDLMovies](https://lightdl.xyz/) - Movies / TV / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lightdlmovies-note)**
|
* [LightDLMovies](https://lightdl.xyz/) - Movies / TV / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lightdlmovies-note)**
|
||||||
* [OlaMovies](http://app2.olamovies.download/) - Movies / TV / 4K / Use Adblocker / [Telegram](https://telegram.me/olamovies_officialv69)
|
* [OlaMovies](http://app2.olamovies.download/) - Movies / TV / 4K / Use Adblocker / [Telegram](https://telegram.me/olamovies_officialv69)
|
||||||
* [Cineby](https://www.cineby.app/), [2](https://www.bitcine.app/) - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
* [Cineby](https://www.cineby.app/), [2](https://www.bitcine.app/) - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||||
* [SkyMovies](https://skymovieshd.li/) - Movies / TV / Anime / Some NSFW
|
|
||||||
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV
|
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV
|
||||||
* [HDRush](https://hdrush.cc/) - Movie / TV / [Telegram](https://t.me/hdrushxyz)
|
* [HDRush](https://hdrush.cc/) - Movie / TV / [Telegram](https://t.me/hdrushxyz)
|
||||||
* [RLSXTVT](https://rlsxtvt.icu/) - Movies / TV
|
* [RLSXTVT](https://rlsxtvt.icu/) - Movies / TV
|
||||||
|
@ -628,7 +626,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
|
||||||
|
@ -672,10 +669,10 @@
|
||||||
|
|
||||||
* ⭐ **[StarK ClouD](https://rentry.co/FMHYBase64#stark-cloud)** - Movies / TV / 4K / [Telegram](https://t.me/starkmediahub)
|
* ⭐ **[StarK ClouD](https://rentry.co/FMHYBase64#stark-cloud)** - Movies / TV / 4K / [Telegram](https://t.me/starkmediahub)
|
||||||
* ⭐ **[PK Movies](https://rentry.co/FMHYBase64#pk-movies)** - Movies / TV / Anime
|
* ⭐ **[PK Movies](https://rentry.co/FMHYBase64#pk-movies)** - Movies / TV / Anime
|
||||||
* ⭐ **[datadiff](https://rentry.co/FMHYBase64#datadiff)** - Movies / TV / Anime
|
* [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 / DDL Telegram
|
* [SeriesBayX](https://t.me/SeriesBayX) - TV / Telegram
|
||||||
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
||||||
* [Sinflix](https://rentry.co/FMHYBase64#sinflix) - Asian Drama
|
* [Sinflix](https://rentry.co/FMHYBase64#sinflix) - Asian Drama
|
||||||
|
|
||||||
|
@ -724,7 +721,7 @@
|
||||||
|
|
||||||
* 🌐 **[Autodownload Tools](https://redd.it/hbwnb2)** - List of Torrent Autodownload Tools / [Multi Installer](https://github.com/LordZeuss/arr-installer) / [Automation Scripts](https://github.com/RandomNinjaAtk/arr-scripts/)
|
* 🌐 **[Autodownload Tools](https://redd.it/hbwnb2)** - List of Torrent Autodownload Tools / [Multi Installer](https://github.com/LordZeuss/arr-installer) / [Automation Scripts](https://github.com/RandomNinjaAtk/arr-scripts/)
|
||||||
* ↪️ **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** - Torrent Remotely Without Needing VPN
|
* ↪️ **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** - Torrent Remotely Without Needing VPN
|
||||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming App / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools)
|
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming App / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools) / [Subreddit](https://www.reddit.com/r/Stremio/)
|
||||||
* ⭐ **[Prowlarr](https://github.com/Prowlarr/Prowlarr)**, **[Jackett](https://github.com/Jackett/Jackett)**, [nefarious](https://lardbit.github.io/nefarious/), [Traktarr](https://github.com/l3uddz/traktarr), [FlexGet](https://flexget.com/), [/r/softwarr](https://reddit.com/r/softwarr) or [Watcher](https://nosmokingbandit.github.io/) - Autodownload Torrents
|
* ⭐ **[Prowlarr](https://github.com/Prowlarr/Prowlarr)**, **[Jackett](https://github.com/Jackett/Jackett)**, [nefarious](https://lardbit.github.io/nefarious/), [Traktarr](https://github.com/l3uddz/traktarr), [FlexGet](https://flexget.com/), [/r/softwarr](https://reddit.com/r/softwarr) or [Watcher](https://nosmokingbandit.github.io/) - Autodownload Torrents
|
||||||
* ⭐ **[Radarr](https://radarr.video/)** - Autodownload Movie Torrents / [Auto-Subtitles](https://www.bazarr.media/) / [GitHub](https://github.com/Radarr/Radarr)
|
* ⭐ **[Radarr](https://radarr.video/)** - Autodownload Movie Torrents / [Auto-Subtitles](https://www.bazarr.media/) / [GitHub](https://github.com/Radarr/Radarr)
|
||||||
* ⭐ **[Sonarr](https://sonarr.tv/)** / [GitHub](https://github.com/Sonarr/Sonarr), [SickGear](https://github.com/SickGear/SickGear), [SiCKRAGE](https://github.com/SiCKRAGE/SiCKRAGE), [DuckieTV](https://schizoduckie.github.io/DuckieTV/) or [Medusa](https://pymedusa.com/) - Autodownload TV Torrents / [Guide](https://wiki.servarr.com/) / [Auto-Subtitles](https://www.bazarr.media/)
|
* ⭐ **[Sonarr](https://sonarr.tv/)** / [GitHub](https://github.com/Sonarr/Sonarr), [SickGear](https://github.com/SickGear/SickGear), [SiCKRAGE](https://github.com/SiCKRAGE/SiCKRAGE), [DuckieTV](https://schizoduckie.github.io/DuckieTV/) or [Medusa](https://pymedusa.com/) - Autodownload TV Torrents / [Guide](https://wiki.servarr.com/) / [Auto-Subtitles](https://www.bazarr.media/)
|
||||||
|
@ -737,7 +734,7 @@
|
||||||
* [NotFlix](https://github.com/Bugswriter/notflix) - Torrent Streaming Script
|
* [NotFlix](https://github.com/Bugswriter/notflix) - Torrent Streaming Script
|
||||||
* [Magnet Player](https://ferrolho.github.io/magnet-player/) - Stream Torrents in Browser
|
* [Magnet Player](https://ferrolho.github.io/magnet-player/) - Stream Torrents in Browser
|
||||||
* [Bobarr](https://github.com/iam4x/bobarr) or [Nefarious](https://github.com/lardbit/nefarious) - Movie / TV Autodownload / [Discord](https://discord.gg/PFwM4zk)
|
* [Bobarr](https://github.com/iam4x/bobarr) or [Nefarious](https://github.com/lardbit/nefarious) - Movie / TV Autodownload / [Discord](https://discord.gg/PFwM4zk)
|
||||||
* [SickChill](https://sickchill.github.io/) / [GitHub](https://github.com/SickChill/SickChill) or [CouchPotato](https://couchpota.to/) - Automatic Torrent / NZB Searching, Downloading & Processing
|
* [SickChill](https://sickchill.github.io/) - Automatic Torrent / NZB Searching, Downloading & Processing / [GitHub](https://github.com/SickChill/SickChill)
|
||||||
* [GMDB](https://github.com/Dentrax/GMDB), [PeerFlix](https://github.com/mafintosh/peerflix) / [Server](https://github.com/asapach/peerflix-server) - Torrent Streaming CLIs
|
* [GMDB](https://github.com/Dentrax/GMDB), [PeerFlix](https://github.com/mafintosh/peerflix) / [Server](https://github.com/asapach/peerflix-server) - Torrent Streaming CLIs
|
||||||
* [Autosearch Extension](https://github.com/trossr32/sonarr-radarr-lidarr-autosearch-browser-extension) - Sonarr/Radarr/Lidarr Autosearch Extension
|
* [Autosearch Extension](https://github.com/trossr32/sonarr-radarr-lidarr-autosearch-browser-extension) - Sonarr/Radarr/Lidarr Autosearch Extension
|
||||||
* [Unpackerr](https://unpackerr.zip/) - Automated Archive Extraction
|
* [Unpackerr](https://unpackerr.zip/) - Automated Archive Extraction
|
||||||
|
@ -772,9 +769,9 @@
|
||||||
* ⭐ **[Video Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:gaoebxgop7j)**
|
* ⭐ **[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)
|
||||||
|
@ -875,7 +872,6 @@
|
||||||
* [agoodmovietowatch](https://agoodmovietowatch.com/) - Movie Recommendations
|
* [agoodmovietowatch](https://agoodmovietowatch.com/) - Movie Recommendations
|
||||||
* [/r/MovieSuggestions](https://www.reddit.com/r/MovieSuggestions/) - Movie Recommendations
|
* [/r/MovieSuggestions](https://www.reddit.com/r/MovieSuggestions/) - Movie Recommendations
|
||||||
* [MovieSync](https://movie-sync-app.web.app/) - Movie Recommendations
|
* [MovieSync](https://movie-sync-app.web.app/) - Movie Recommendations
|
||||||
* [CouchMoney](https://couchmoney.tv/) - Movie Recommendations for Trakt
|
|
||||||
* [Cinetrii](https://cinetrii.com/) - Discover Movies with Similar Themes
|
* [Cinetrii](https://cinetrii.com/) - Discover Movies with Similar Themes
|
||||||
* [DateNightMovies](https://datenightmovies.com/) - Get Recommendations Based on 2 Movies
|
* [DateNightMovies](https://datenightmovies.com/) - Get Recommendations Based on 2 Movies
|
||||||
* [Match-a-Movie](https://match-a-movie.com/) - Pick Movies with Friends
|
* [Match-a-Movie](https://match-a-movie.com/) - Pick Movies with Friends
|
||||||
|
@ -915,7 +911,7 @@
|
||||||
* [Adjust Subs Like a Pro](https://graph.org/Adjust-subtitles-in-seconds-like-a-pro-07-17) - Subtitle Syncing Guide
|
* [Adjust Subs Like a Pro](https://graph.org/Adjust-subtitles-in-seconds-like-a-pro-07-17) - Subtitle Syncing Guide
|
||||||
* [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
|
||||||
* [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/) 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
|
||||||
|
@ -963,7 +959,6 @@
|
||||||
* ↪️ **[Media Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_media_soundtracks)**
|
* ↪️ **[Media Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_media_soundtracks)**
|
||||||
* ↪️ **[File Data Automation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_data_automation)**
|
* ↪️ **[File Data Automation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_data_automation)**
|
||||||
* ⭐ **[FastStream](https://faststream.online/)** - Fragmentation Streaming Extension / [GitHub](https://github.com/Andrews54757/FastStream/)
|
* ⭐ **[FastStream](https://faststream.online/)** - Fragmentation Streaming Extension / [GitHub](https://github.com/Andrews54757/FastStream/)
|
||||||
* ⭐ **[DeepSearch](https://deepsearch.mycelebs.com/movie)**, [WhatsatMovie](https://whatsatmovie.com/) or [What is My Movie?](https://www.whatismymovie.com/) - Find Movies via Descriptions
|
|
||||||
* ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Use Streaming Sites in Ad-Free Player with Subs, Speed Control & More
|
* ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Use Streaming Sites in Ad-Free Player with Subs, Speed Control & More
|
||||||
* ⭐ **[WhereYouWatch](https://whereyouwatch.com/latest-reports/)** or [/r/movieleaks](https://reddit.com/r/movieleaks) - Movie Leak Notifications
|
* ⭐ **[WhereYouWatch](https://whereyouwatch.com/latest-reports/)** or [/r/movieleaks](https://reddit.com/r/movieleaks) - Movie Leak Notifications
|
||||||
* ⭐ **[BingeClock](https://www.bingeclock.com/)**, [Can I Binge?](https://canibinge.com/) or [tiii.me](https://tiii.me/) - TV Show Length Calculators
|
* ⭐ **[BingeClock](https://www.bingeclock.com/)**, [Can I Binge?](https://canibinge.com/) or [tiii.me](https://tiii.me/) - TV Show Length Calculators
|
||||||
|
@ -971,8 +966,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
|
||||||
|
@ -992,6 +987,7 @@
|
||||||
* [ProductPlacementBlog](https://productplacementblog.com/) - Product Placement Database
|
* [ProductPlacementBlog](https://productplacementblog.com/) - Product Placement Database
|
||||||
* [WheresTheJump?](https://wheresthejump.com/) - Find Movie Jump Scares
|
* [WheresTheJump?](https://wheresthejump.com/) - Find Movie Jump Scares
|
||||||
* [DMT](https://dmtalkies.com/) - Movies / TV Ending Explanations and Recaps
|
* [DMT](https://dmtalkies.com/) - Movies / TV Ending Explanations and Recaps
|
||||||
|
* [WhatsatMovie](https://whatsatmovie.com/) or [What is My Movie?](https://www.whatismymovie.com/) - Find Movies via Descriptions
|
||||||
* [Anime Skip](https://anime-skip.com/) - Auto Skip Anime Intros
|
* [Anime Skip](https://anime-skip.com/) - Auto Skip Anime Intros
|
||||||
* [trace.moe](https://trace.moe/) - Anime Scene Reverse Image Search
|
* [trace.moe](https://trace.moe/) - Anime Scene Reverse Image Search
|
||||||
* [Anilinks](https://anilinks.neocities.org/) - Anime Related Site Index
|
* [Anilinks](https://anilinks.neocities.org/) - Anime Related Site Index
|
||||||
|
@ -1000,4 +996,4 @@
|
||||||
* [Bechdel Test](https://bechdeltest.com/) - Movie Bechdel Test Check
|
* [Bechdel Test](https://bechdeltest.com/) - Movie Bechdel Test Check
|
||||||
* [Movie-Locations](https://www.movie-locations.com/), [MovieLoci](https://www.movieloci.com/), [AtlasOfWonders](https://www.atlasofwonders.com/), [WhereDidTheyFilmThat](https://www.wheredidtheyfilmthat.co.uk/) - Film Location Maps
|
* [Movie-Locations](https://www.movie-locations.com/), [MovieLoci](https://www.movieloci.com/), [AtlasOfWonders](https://www.atlasofwonders.com/), [WhereDidTheyFilmThat](https://www.wheredidtheyfilmthat.co.uk/) - Film Location Maps
|
||||||
* [DramaWiki](https://wiki.d-addicts.com/), [KoreanDrama](https://www.koreandrama.org/) or [HanCinema](https://www.hancinema.net/) - Asian Drama Wikis
|
* [DramaWiki](https://wiki.d-addicts.com/), [KoreanDrama](https://www.koreandrama.org/) or [HanCinema](https://www.hancinema.net/) - Asian Drama Wikis
|
||||||
* [Sprocket School](https://www.sprocketschool.org/) - Film Exhibition Wiki
|
* [Sprocket School](https://www.sprocketschool.org/) - Film Exhibition Wiki
|
|
@ -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