Compare commits
5 Commits
main
...
feat/reddi
Author | SHA1 | Date | |
---|---|---|---|
|
cbc86db3cf | ||
|
6103e04184 | ||
|
fb35af8ca4 | ||
|
1bec2dcb18 | ||
|
4cd665915e |
4
.github/ISSUE_TEMPLATE/wiki.yml
vendored
4
.github/ISSUE_TEMPLATE/wiki.yml
vendored
@ -1,6 +1,6 @@
|
|||||||
name: Create Issue
|
name: Wiki
|
||||||
description: 'Help us improve FMHY for everyone'
|
description: 'Help us improve FMHY for everyone'
|
||||||
title: '<title>'
|
title: 'Wiki: '
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
|
22
.github/PULL_REQUEST_TEMPLATE.md
vendored
22
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,22 +0,0 @@
|
|||||||
<!--- Provide a general summary of your changes in the Title above -->
|
|
||||||
|
|
||||||
## Description
|
|
||||||
<!--- Describe your changes in detail -->
|
|
||||||
|
|
||||||
## Context
|
|
||||||
<!--- Why is this change required? What problem does it solve? -->
|
|
||||||
<!--- If it fixes an open issue, please link to the issue here. -->
|
|
||||||
|
|
||||||
## Types of changes
|
|
||||||
<!--- What types of changes does your Pull Request introduce? Put an `x` in all the boxes that apply: -->
|
|
||||||
- [ ] Bad / Deleted sites removal
|
|
||||||
- [ ] Grammar / Markdown fixes
|
|
||||||
- [ ] Content addition (sites, projects, tools, etc.)
|
|
||||||
- [ ] New Wiki section
|
|
||||||
|
|
||||||
## Checklist:
|
|
||||||
<!--- Go over all the following points, and put an `x` in all the boxes that apply to this Pull Request. -->
|
|
||||||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
|
|
||||||
- [ ] I have read the [contribution guide](https://rentry.co/Contrib-Guide).
|
|
||||||
- [ ] I have made sure to [search](https://raw.githubusercontent.com/fmhy/FMHYedit/main/single-page) before making any changes.
|
|
||||||
- [ ] My code follows the code style of this project.
|
|
1
.github/add-headers.py
vendored
1
.github/add-headers.py
vendored
@ -33,7 +33,6 @@ headers = {
|
|||||||
"Books / Comics / Manga",
|
"Books / Comics / Manga",
|
||||||
"Books, Comics, Magazines, Newspapers",
|
"Books, Comics, Magazines, Newspapers",
|
||||||
],
|
],
|
||||||
"gaming-tools.md": ["Gaming Tools", "Gaming Optimization, Game Launchers, Multiplayer"],
|
|
||||||
"DEVTools.md": ["Developer Tools", "Git, Hosting, App Dev, Software Dev"],
|
"DEVTools.md": ["Developer Tools", "Git, Hosting, App Dev, Software Dev"],
|
||||||
"img-tools.md": ["Image Tools", "Image Editors, Generators, Compress"],
|
"img-tools.md": ["Image Tools", "Image Editors, Generators, Compress"],
|
||||||
"Audio-Tools.md": [
|
"Audio-Tools.md": [
|
||||||
|
7
.github/labeler.yml
vendored
7
.github/labeler.yml
vendored
@ -1,7 +0,0 @@
|
|||||||
# See https://github.com/actions/labeler
|
|
||||||
|
|
||||||
docs:
|
|
||||||
- '**/*.md'
|
|
||||||
|
|
||||||
core:
|
|
||||||
- '.vitepress/**'
|
|
6
.github/replace.py
vendored
6
.github/replace.py
vendored
@ -188,11 +188,7 @@ def replace_pages(text):
|
|||||||
"/audio-tools",
|
"/audio-tools",
|
||||||
text,
|
text,
|
||||||
)
|
)
|
||||||
text = re.sub(
|
|
||||||
"https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools",
|
|
||||||
"/gaming-tools",
|
|
||||||
text,
|
|
||||||
)
|
|
||||||
text = re.sub(
|
text = re.sub(
|
||||||
"https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video",
|
"https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video",
|
||||||
"/videopiracyguide",
|
"/videopiracyguide",
|
||||||
|
8
.github/single-page.py
vendored
8
.github/single-page.py
vendored
@ -6,9 +6,13 @@ def output():
|
|||||||
read = glob.glob("*.md")
|
read = glob.glob("*.md")
|
||||||
content = ""
|
content = ""
|
||||||
nsfw_content = ""
|
nsfw_content = ""
|
||||||
ignore_files = {"README.md", "feedback.md", "posts.md", "index.md"}
|
|
||||||
for file in read:
|
for file in read:
|
||||||
if file not in ignore_files:
|
if (
|
||||||
|
file != "README.md"
|
||||||
|
or file != "feedback.md"
|
||||||
|
or file != "posts.md"
|
||||||
|
or file != "index.md"
|
||||||
|
):
|
||||||
with open(file, "r") as f:
|
with open(file, "r") as f:
|
||||||
if "NSFWPiracy.md" == file:
|
if "NSFWPiracy.md" == file:
|
||||||
nsfw_content += f.read()
|
nsfw_content += f.read()
|
||||||
|
20
.github/workflows/deploy-api.yml
vendored
20
.github/workflows/deploy-api.yml
vendored
@ -1,7 +1,9 @@
|
|||||||
name: Deploy API
|
name: Deploy API
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
|
||||||
@ -9,26 +11,18 @@ jobs:
|
|||||||
ci:
|
ci:
|
||||||
name: Release
|
name: Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
node-version: [20]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 6
|
fetch-depth: 6
|
||||||
|
- uses: pnpm/action-setup@v2.4.0
|
||||||
|
|
||||||
- name: Install pnpm
|
- uses: actions/setup-node@v3
|
||||||
uses: pnpm/action-setup@v4
|
|
||||||
|
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: 18
|
||||||
cache: 'pnpm'
|
cache: 'pnpm'
|
||||||
|
|
||||||
- name: Install dependencies
|
- run: pnpm install --no-frozen-lockfile
|
||||||
run: pnpm install
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: pnpm api:build
|
run: pnpm api:build
|
||||||
|
49
.github/workflows/labeler.yml
vendored
49
.github/workflows/labeler.yml
vendored
@ -1,49 +0,0 @@
|
|||||||
name: 'Pull Request Housekeeping'
|
|
||||||
|
|
||||||
on: [pull_request_target]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
triage:
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pull-requests: write
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Label PRs
|
|
||||||
uses: actions/labeler@v4
|
|
||||||
with:
|
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
auto-assign:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: triage
|
|
||||||
steps:
|
|
||||||
- name: Check if PR has 'core' label
|
|
||||||
id: check_label
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
const prNumber = context.payload.pull_request.number;
|
|
||||||
const { data: labels } = await github.rest.issues.listLabelsOnIssue({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
issue_number: prNumber,
|
|
||||||
});
|
|
||||||
|
|
||||||
const hasCoreLabel = labels.some(label => label.name === 'core');
|
|
||||||
return hasCoreLabel;
|
|
||||||
|
|
||||||
- name: Auto-assign to PR
|
|
||||||
if: steps.check_label.outputs.result == 'true'
|
|
||||||
uses: actions/github-script@v6
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
const prNumber = context.payload.pull_request.number;
|
|
||||||
await github.rest.issues.addAssignees({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
issue_number: prNumber,
|
|
||||||
assignees: ['taskylizard'],
|
|
||||||
});
|
|
@ -1,3 +0,0 @@
|
|||||||
# https://github.com/vitejs/vite/issues/17291
|
|
||||||
[tools]
|
|
||||||
node = "21"
|
|
5
.npmrc
5
.npmrc
@ -1,3 +1,2 @@
|
|||||||
package-manager-strict=false
|
shamefully-hoist=true
|
||||||
shell-emulator=true
|
strict-peer-dependencies=false
|
||||||
auto-install-peers=false
|
|
||||||
|
@ -99,9 +99,7 @@ export default defineConfig({
|
|||||||
items: [
|
items: [
|
||||||
{ text: 'Posts', link: '/posts' },
|
{ text: 'Posts', link: '/posts' },
|
||||||
{ text: 'Feedback', link: '/feedback' },
|
{ text: 'Feedback', link: '/feedback' },
|
||||||
{ text: 'snowbin', link: 'https://pastes.fmhy.net' },
|
{ text: 'snowbin', link: 'https://pastes.fmhy.net' }
|
||||||
{ text: 'SearXNG', link: 'https://searx.fmhy.net/'},
|
|
||||||
{ text: 'Whoogle', link: 'https://whoogle.fmhy.net/'}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -14,60 +14,22 @@ export const commitRef = process.env.CF_PAGES
|
|||||||
}">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>`
|
}">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>`
|
||||||
: 'dev'
|
: 'dev'
|
||||||
|
|
||||||
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>`
|
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤️</a>`
|
||||||
|
|
||||||
export const search: DefaultTheme.Config['search'] = {
|
export const search: DefaultTheme.Config['search'] = {
|
||||||
options: {
|
options: {
|
||||||
miniSearch: {
|
miniSearch: {
|
||||||
options: {
|
|
||||||
tokenize: (text) => text.split(/[\n\r #%*,=/:;?[\]{}()&]+/u), // simplified charset: removed [-_.@] and non-english chars (diacritics etc.)
|
|
||||||
processTerm: (term, fieldName) => {
|
|
||||||
// biome-ignore lint/style/noParameterAssign: h
|
|
||||||
term = term
|
|
||||||
.trim()
|
|
||||||
.toLowerCase()
|
|
||||||
.replace(/^\.+/, '')
|
|
||||||
.replace(/\.+$/, '')
|
|
||||||
const stopWords = [
|
|
||||||
'frontmatter',
|
|
||||||
'$frontmatter.synopsis',
|
|
||||||
'and',
|
|
||||||
'about',
|
|
||||||
'but',
|
|
||||||
'now',
|
|
||||||
'the',
|
|
||||||
'with',
|
|
||||||
'you'
|
|
||||||
]
|
|
||||||
if (term.length < 2 || stopWords.includes(term)) return false
|
|
||||||
|
|
||||||
if (fieldName === 'text') {
|
|
||||||
const parts = term.split('.')
|
|
||||||
if (parts.length > 1) {
|
|
||||||
const newTerms = [term, ...parts]
|
|
||||||
.filter((t) => t.length >= 2)
|
|
||||||
.filter((t) => !stopWords.includes(t))
|
|
||||||
return newTerms
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return term
|
|
||||||
}
|
|
||||||
},
|
|
||||||
searchOptions: {
|
searchOptions: {
|
||||||
combineWith: 'AND',
|
combineWith: 'AND',
|
||||||
fuzzy: true,
|
fuzzy: false,
|
||||||
// @ts-ignore
|
|
||||||
boostDocument: (
|
boostDocument: (
|
||||||
documentId,
|
_,
|
||||||
term,
|
term,
|
||||||
storedFields: Record<string, string | string[]>
|
storedFields: Record<string, string | string[]>
|
||||||
) => {
|
) => {
|
||||||
const titles = (storedFields?.titles as string[])
|
const titles = (storedFields?.titles as string[])
|
||||||
.filter((t) => Boolean(t))
|
.filter((t) => Boolean(t))
|
||||||
.map((t) => t.toLowerCase())
|
.map((t) => t.toLowerCase())
|
||||||
// Downrank posts
|
|
||||||
if (documentId.match(/\/posts/)) return -5
|
|
||||||
|
|
||||||
// Uprate if term appears in titles. Add bonus for higher levels (i.e. lower index)
|
// Uprate if term appears in titles. Add bonus for higher levels (i.e. lower index)
|
||||||
const titleIndex =
|
const titleIndex =
|
||||||
titles
|
titles
|
||||||
@ -172,7 +134,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools',
|
text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools',
|
||||||
link: '/gaming-tools'
|
link: '/gamingpiracyguide#gaming-tools'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '<span class="i-twemoji:camera"></span> Image Tools',
|
text: '<span class="i-twemoji:camera"></span> Image Tools',
|
||||||
|
@ -13,12 +13,12 @@ export async function generateFeed(config: SiteConfig): Promise<void> {
|
|||||||
const feed: Feed = new Feed({
|
const feed: Feed = new Feed({
|
||||||
id: meta.hostname,
|
id: meta.hostname,
|
||||||
link: meta.hostname,
|
link: meta.hostname,
|
||||||
title: 'FMHY blog',
|
title: `FMHY blog`,
|
||||||
description: meta.description,
|
description: meta.description,
|
||||||
language: 'en-US',
|
language: 'en-US',
|
||||||
image: 'https://github.com/fmhy.png',
|
image: 'https://github.com/fmhy.png',
|
||||||
favicon: `${meta.hostname}/favicon.ico`,
|
favicon: `${meta.hostname}/favicon.ico`,
|
||||||
copyright: 'Copyright (c) 2023-present FMHY'
|
copyright: `Copyright (c) 2023-present FMHY`
|
||||||
})
|
})
|
||||||
|
|
||||||
const posts: ContentData[] = await createContentLoader('posts/*.md', {
|
const posts: ContentData[] = await createContentLoader('posts/*.md', {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import type { MarkdownRenderer } from 'vitepress'
|
import { type MarkdownRenderer } from 'vitepress'
|
||||||
|
|
||||||
// FIXME: tasky: possibly write less horror jank?
|
// FIXME: tasky: possibly write less horror jank?
|
||||||
export function base64DecodePlugin(md: MarkdownRenderer) {
|
export function base64DecodePlugin(md: MarkdownRenderer) {
|
||||||
@ -7,7 +7,7 @@ export function base64DecodePlugin(md: MarkdownRenderer) {
|
|||||||
// Save the original rule for backticks
|
// Save the original rule for backticks
|
||||||
const defaultRender =
|
const defaultRender =
|
||||||
md.renderer.rules.code_inline ||
|
md.renderer.rules.code_inline ||
|
||||||
function (tokens, idx, options, _env, self) {
|
function (tokens, idx, options, env, self) {
|
||||||
return self.renderToken(tokens, idx, options)
|
return self.renderToken(tokens, idx, options)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +11,8 @@ export function toggleStarredPlugin(md: MarkdownRenderer) {
|
|||||||
contentToken.content.startsWith(':star:')
|
contentToken.content.startsWith(':star:')
|
||||||
) {
|
) {
|
||||||
return `<li class="starred">`
|
return `<li class="starred">`
|
||||||
|
} else {
|
||||||
|
return self.renderToken(tokens, index, options)
|
||||||
}
|
}
|
||||||
return self.renderToken(tokens, index, options)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,6 @@
|
|||||||
import { corsEventHandler } from 'nitro-cors'
|
import { corsEventHandler } from 'nitro-cors'
|
||||||
|
|
||||||
export default corsEventHandler(
|
export default corsEventHandler((_event) => {}, {
|
||||||
(_event) => {
|
origin: '*',
|
||||||
/** no-op */
|
methods: '*'
|
||||||
},
|
})
|
||||||
{
|
|
||||||
origin: '*',
|
|
||||||
methods: '*'
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
1
.vitepress/routes/comments.get.ts
Normal file
1
.vitepress/routes/comments.get.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export default defineEventHandler(async (event) => {})
|
@ -7,14 +7,6 @@ export default defineEventHandler(async (event) => {
|
|||||||
FeedbackSchema.parseAsync
|
FeedbackSchema.parseAsync
|
||||||
)
|
)
|
||||||
const env = useRuntimeConfig(event)
|
const env = useRuntimeConfig(event)
|
||||||
const { pathname } = new URL(event.node.req.url)
|
|
||||||
|
|
||||||
const { success } = await env.MY_RATE_LIMITER.limit({ key: pathname })
|
|
||||||
if (!success) {
|
|
||||||
return new Response(`429 Failure – rate limit exceeded for ${pathname}`, {
|
|
||||||
status: 429
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
let description = `${message}\n\n`
|
let description = `${message}\n\n`
|
||||||
if (page) description += `**Page:** \`${page}\``
|
if (page) description += `**Page:** \`${page}\``
|
||||||
|
@ -1,18 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, reactive } from 'vue'
|
import { reactive, ref } from 'vue'
|
||||||
import {
|
|
||||||
TransitionRoot,
|
|
||||||
TransitionChild,
|
|
||||||
Dialog,
|
|
||||||
DialogPanel,
|
|
||||||
DialogTitle,
|
|
||||||
DialogDescription,
|
|
||||||
Listbox,
|
|
||||||
ListboxLabel,
|
|
||||||
ListboxButton,
|
|
||||||
ListboxOptions,
|
|
||||||
ListboxOption
|
|
||||||
} from '@headlessui/vue'
|
|
||||||
import { useRouter } from 'vitepress'
|
import { useRouter } from 'vitepress'
|
||||||
import {
|
import {
|
||||||
type FeedbackType,
|
type FeedbackType,
|
||||||
@ -25,28 +12,16 @@ const error = ref<unknown>(null)
|
|||||||
const success = ref<boolean>(false)
|
const success = ref<boolean>(false)
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
const feedback = reactive<FeedbackType>({ message: '' })
|
const feedback = reactive<FeedbackType>({ message: '' })
|
||||||
|
|
||||||
const options = [
|
async function handleSubmit(type?: FeedbackType['type']) {
|
||||||
{
|
if (type) feedback.type = type
|
||||||
label: '💡 Suggestion',
|
|
||||||
value: 'suggestion'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '❤️ Appreciation',
|
|
||||||
value: 'appreciate'
|
|
||||||
},
|
|
||||||
{ label: '🐞 Bug', value: 'bug' },
|
|
||||||
{ label: '📂 Other', value: 'other' }
|
|
||||||
]
|
|
||||||
const selectedOption = ref(options[0])
|
|
||||||
|
|
||||||
async function handleSubmit() {
|
|
||||||
loading.value = true
|
loading.value = true
|
||||||
|
|
||||||
const body: FeedbackType = {
|
const body: FeedbackType = {
|
||||||
message: feedback.message,
|
message: feedback.message,
|
||||||
type: selectedOption.value.value,
|
type: feedback.type,
|
||||||
page: router.route.path
|
page: router.route.path
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -74,254 +49,207 @@ async function handleSubmit() {
|
|||||||
loading.value = false
|
loading.value = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const isOpen = ref(false)
|
|
||||||
|
|
||||||
function closeModal() {
|
|
||||||
isOpen.value = false
|
|
||||||
}
|
|
||||||
function openModal() {
|
|
||||||
isOpen.value = true
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<button
|
<div class="wrapper">
|
||||||
type="button"
|
<Transition name="fade" mode="out-in">
|
||||||
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
|
<div v-if="!feedback.type" class="step">
|
||||||
@click="openModal"
|
<div>
|
||||||
/>
|
<div>
|
||||||
|
<p class="heading">Feedback</p>
|
||||||
<Teleport to="body">
|
|
||||||
<TransitionRoot appear :show="isOpen" as="template">
|
|
||||||
<Dialog as="div" class="relative z-10" @close="closeModal">
|
|
||||||
<TransitionChild
|
|
||||||
as="template"
|
|
||||||
enter="duration-300 ease-out"
|
|
||||||
enter-from="opacity-0"
|
|
||||||
enter-to="opacity-100"
|
|
||||||
leave="duration-200 ease-in"
|
|
||||||
leave-from="opacity-100"
|
|
||||||
leave-to="opacity-0"
|
|
||||||
>
|
|
||||||
<div class="fixed inset-0 bg-black/25" />
|
|
||||||
</TransitionChild>
|
|
||||||
|
|
||||||
<div class="fixed inset-0 overflow-y-auto">
|
|
||||||
<div
|
|
||||||
class="flex min-h-full items-center justify-center p-4 text-center"
|
|
||||||
>
|
|
||||||
<TransitionChild
|
|
||||||
as="template"
|
|
||||||
enter="duration-300 ease-out"
|
|
||||||
enter-from="opacity-0 scale-95"
|
|
||||||
enter-to="opacity-100 scale-100"
|
|
||||||
leave="duration-200 ease-in"
|
|
||||||
leave-from="opacity-100 scale-100"
|
|
||||||
leave-to="opacity-0 scale-95"
|
|
||||||
>
|
|
||||||
<DialogPanel
|
|
||||||
class="w-full max-w-md transform overflow-hidden rounded-2xl bg-bg p-6 text-left align-middle shadow-xl transition-all"
|
|
||||||
>
|
|
||||||
<DialogTitle
|
|
||||||
as="h3"
|
|
||||||
class="text-lg font-medium leading-6 text-text"
|
|
||||||
>
|
|
||||||
Feedback
|
|
||||||
</DialogTitle>
|
|
||||||
|
|
||||||
<div class="mt-4 top-16 w-72" v-if="!success">
|
|
||||||
<Listbox v-model="selectedOption">
|
|
||||||
<div class="relative mt-1">
|
|
||||||
<ListboxButton
|
|
||||||
class="relative w-full cursor-default rounded-lg bg-bg-alt text-text py-2 pl-3 pr-10 text-left shadow-md focus:outline-none focus-visible:border-indigo-500 focus-visible:ring-2 focus-visible:ring-white/75 focus-visible:ring-offset-2 focus-visible:ring-offset-orange-300 sm:text-sm"
|
|
||||||
>
|
|
||||||
<span class="block truncate">
|
|
||||||
{{ selectedOption.label }}
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="i-heroicons-solid:chevron-up-down h-5 w-5 text-gray-400"
|
|
||||||
aria-hidden="true"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
</ListboxButton>
|
|
||||||
|
|
||||||
<transition
|
|
||||||
leave-active-class="transition duration-100 ease-in"
|
|
||||||
leave-from-class="opacity-100"
|
|
||||||
leave-to-class="opacity-0"
|
|
||||||
>
|
|
||||||
<ListboxOptions
|
|
||||||
class="absolute mt-1 max-h-60 w-full overflow-auto rounded-md bg-bg-alt py-1 text-base shadow-lg ring-1 ring-black/5 focus:outline-none sm:text-sm"
|
|
||||||
>
|
|
||||||
<ListboxOption
|
|
||||||
v-slot="{ active, selected }"
|
|
||||||
v-for="option in options"
|
|
||||||
:key="option.value"
|
|
||||||
:value="option"
|
|
||||||
as="template"
|
|
||||||
>
|
|
||||||
<li
|
|
||||||
:class="[
|
|
||||||
active ? 'text-primary' : 'text-gray-500',
|
|
||||||
'relative cursor-default select-none py-2 pl-10 pr-4'
|
|
||||||
]"
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
:class="[
|
|
||||||
selected ? 'font-medium' : 'font-normal',
|
|
||||||
'block truncate'
|
|
||||||
]"
|
|
||||||
>
|
|
||||||
{{ option.label }}
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
v-if="selected"
|
|
||||||
class="absolute inset-y-0 left-0 flex items-center pl-3 text-primary"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="i-heroicons-solid:check h-5 w-5"
|
|
||||||
aria-hidden="true"
|
|
||||||
/>
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</ListboxOption>
|
|
||||||
</ListboxOptions>
|
|
||||||
</transition>
|
|
||||||
</div>
|
|
||||||
</Listbox>
|
|
||||||
|
|
||||||
<div class="mt-2">
|
|
||||||
<div>
|
|
||||||
<label class="field-label">Message</label>
|
|
||||||
<textarea
|
|
||||||
v-model="feedback.message"
|
|
||||||
class="mt-2 h-32"
|
|
||||||
placeholder="What a lovely wiki!"
|
|
||||||
rows="5"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="text-sm text-gray-400 mb-2">
|
|
||||||
If you want a reply to your feedback, feel free to mention a
|
|
||||||
contact in the message or join our
|
|
||||||
<a
|
|
||||||
class="text-primary font-semibold text-underline"
|
|
||||||
href="https://discord.gg/Stz6y6NgNg"
|
|
||||||
>
|
|
||||||
Discord.
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<details
|
|
||||||
v-if="selectedOption.value === 'suggestion'"
|
|
||||||
class="text-sm text-gray-400"
|
|
||||||
>
|
|
||||||
<summary class="mb-2">Submission Guidelines</summary>
|
|
||||||
<strong>🕹️ Emulators</strong>
|
|
||||||
<p>
|
|
||||||
They're already on the
|
|
||||||
<a
|
|
||||||
class="text-primary font-bold text-underline"
|
|
||||||
href="https://emulation.gametechwiki.com/index.php/Main_Page"
|
|
||||||
>
|
|
||||||
Game Tech Wiki.
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
<strong>🔻 Leeches</strong>
|
|
||||||
<p>
|
|
||||||
They're already on the
|
|
||||||
<a
|
|
||||||
class="text-primary font-bold text-underline"
|
|
||||||
href="https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches"
|
|
||||||
>
|
|
||||||
File Hosting Wiki.
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
<strong>🐧 Distros</strong>
|
|
||||||
<p>
|
|
||||||
They're already on
|
|
||||||
<a
|
|
||||||
class="text-primary font-bold text-underline"
|
|
||||||
href="https://distrowatch.com/"
|
|
||||||
>
|
|
||||||
DistroWatch.
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
<strong>🎲 Mining / Betting Sites</strong>
|
|
||||||
<p>
|
|
||||||
Don't post anything related to betting, mining, BINs, CCs,
|
|
||||||
etc.
|
|
||||||
</p>
|
|
||||||
<strong>🎮 Multiplayer Game Hacks</strong>
|
|
||||||
<p>
|
|
||||||
Don't post any hacks/exploits that give unfair advantages
|
|
||||||
in multiplayer games.
|
|
||||||
</p>
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<div class="mt-4">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="inline-flex justify-center rounded-md border border-transparent bg-blue-500 px-4 py-2 text-sm font-medium text-blue-100 hover:bg-blue-600 focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2 disabled:bg-blue-400"
|
|
||||||
:disabled="
|
|
||||||
feedback.message.length < 5 ||
|
|
||||||
feedback.message.length > 1000
|
|
||||||
"
|
|
||||||
@click="handleSubmit()"
|
|
||||||
>
|
|
||||||
Submit
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="ml-2 inline-flex justify-center rounded-md border border-transparent bg-red-500 px-4 py-2 text-sm font-medium text-red-100 hover:bg-red-600 focus:outline-none focus-visible:ring-2 focus-visible:ring-red-500 focus-visible:ring-offset-2"
|
|
||||||
@click="closeModal()"
|
|
||||||
>
|
|
||||||
Close
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div v-else-if="error">
|
|
||||||
<div class="text-sm font-medium leading-6 text-text">
|
|
||||||
Error!
|
|
||||||
</div>
|
|
||||||
<details>{{ error }}</details>
|
|
||||||
</div>
|
|
||||||
<div v-else>
|
|
||||||
<TransitionRoot
|
|
||||||
enter="transition-opacity duration-75"
|
|
||||||
enter-from="opacity-0"
|
|
||||||
enter-to="opacity-100"
|
|
||||||
>
|
|
||||||
Thanks!
|
|
||||||
</TransitionRoot>
|
|
||||||
</div>
|
|
||||||
</DialogPanel>
|
|
||||||
</TransitionChild>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Dialog>
|
<div class="button-container">
|
||||||
</TransitionRoot>
|
<button
|
||||||
</Teleport>
|
v-for="item in feedbackOptions"
|
||||||
|
:key="item.value"
|
||||||
|
class="btn"
|
||||||
|
@click="handleSubmit(item.value as FeedbackType['type'])"
|
||||||
|
>
|
||||||
|
<span>{{ item.label }}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="feedback.type && !success" class="step">
|
||||||
|
<div>
|
||||||
|
<p class="desc">Page: {{ router.route.path }}</p>
|
||||||
|
<div>
|
||||||
|
<span>{{ getFeedbackOption(feedback.type)?.label }}</span>
|
||||||
|
<button
|
||||||
|
style="margin-left: 0.5rem"
|
||||||
|
class="btn"
|
||||||
|
@click="feedback.type = undefined"
|
||||||
|
>
|
||||||
|
<span class="i-carbon-close-large">close</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-if="feedback.type === 'suggestion'" class="text-sm mb-2">
|
||||||
|
<strong>🕹️ Emulators</strong>
|
||||||
|
<p class="desc">
|
||||||
|
They're already on the
|
||||||
|
<a
|
||||||
|
class="text-primary font-bold text-underline"
|
||||||
|
href="https://emulation.gametechwiki.com/index.php/Main_Page"
|
||||||
|
>
|
||||||
|
Game Tech Wiki.
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<strong>🔻 Leeches</strong>
|
||||||
|
<p class="desc">
|
||||||
|
They're already on the
|
||||||
|
<a
|
||||||
|
class="text-primary font-bold text-underline"
|
||||||
|
href="https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches"
|
||||||
|
>
|
||||||
|
File Hosting Wiki.
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<strong>🐧 Distros</strong>
|
||||||
|
<p class="desc">
|
||||||
|
They're already on
|
||||||
|
<a
|
||||||
|
class="text-primary font-bold text-underline"
|
||||||
|
href="https://distrowatch.com/"
|
||||||
|
>
|
||||||
|
DistroWatch.
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<strong>🎲 Mining / Betting Sites</strong>
|
||||||
|
<p class="desc">
|
||||||
|
Don't post anything related to betting, mining, BINs, CCs, etc.
|
||||||
|
</p>
|
||||||
|
<strong>🎮 Multiplayer Game Hacks</strong>
|
||||||
|
<p class="desc">
|
||||||
|
Don't post any hacks/exploits that give unfair advantages in
|
||||||
|
multiplayer games.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<textarea
|
||||||
|
v-model="feedback.message"
|
||||||
|
autofocus
|
||||||
|
class="input"
|
||||||
|
placeholder="What a lovely wiki!"
|
||||||
|
/>
|
||||||
|
<p class="desc mb-2">
|
||||||
|
If you want a reply to your feedback, feel free to mention a contact
|
||||||
|
in the message or join our
|
||||||
|
<a
|
||||||
|
class="text-primary font-semibold text-underline"
|
||||||
|
href="https://discord.gg/Stz6y6NgNg"
|
||||||
|
>
|
||||||
|
Discord.
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
class="btn btn-primary"
|
||||||
|
:disabled="
|
||||||
|
feedback.message.length < 5 || feedback.message.length > 1000
|
||||||
|
"
|
||||||
|
@click="handleSubmit()"
|
||||||
|
>
|
||||||
|
Submit
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div v-else class="step">
|
||||||
|
<p class="heading">Thanks for your feedback!</p>
|
||||||
|
</div>
|
||||||
|
</Transition>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
textarea,
|
.step > * + * {
|
||||||
input {
|
margin-top: 1rem;
|
||||||
font-family: var(--vp-font-family-base);
|
}
|
||||||
background: var(--vp-c-bg-soft);
|
|
||||||
font-size: 14px;
|
|
||||||
border-radius: 4px;
|
|
||||||
padding: 16px;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
&::placeholder {
|
.btn {
|
||||||
color: var(--vp-c-text-2) !important;
|
border: 1px solid var(--vp-c-divider);
|
||||||
opacity: 1;
|
background-color: var(--vp-c-bg);
|
||||||
}
|
border-radius: 8px;
|
||||||
|
transition:
|
||||||
|
border-color 0.25s,
|
||||||
|
background-color 0.25s;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1.5;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.375rem 0.75rem;
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: middle;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn:disabled {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn:hover {
|
||||||
|
border-color: var(--vp-c-brand);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary {
|
||||||
|
color: #fff;
|
||||||
|
background-color: var(--vp-c-brand);
|
||||||
|
border-color: var(--vp-c-brand);
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-primary:hover {
|
||||||
|
background-color: var(--vp-c-brand-darker);
|
||||||
|
border-color: var(--vp-c-brand-darker);
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-container {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
margin: 2rem 0;
|
||||||
|
padding: 1.5rem;
|
||||||
|
border: 1px solid var(--vp-c-divider);
|
||||||
|
border-radius: 8px;
|
||||||
|
background: var(--vp-c-bg-alt);
|
||||||
|
}
|
||||||
|
|
||||||
|
.input {
|
||||||
|
width: 100%;
|
||||||
|
height: 100px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 0.375rem 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-input {
|
||||||
|
height: 50px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 0.375rem 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.desc {
|
||||||
|
display: block;
|
||||||
|
line-height: 20px;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--vp-c-text-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fade-enter-active,
|
||||||
|
.fade-leave-active {
|
||||||
|
transition: opacity 0.25s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fade-enter-from,
|
||||||
|
.fade-leave-to {
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
157
.vitepress/theme/components/Feedback2.vue
Normal file
157
.vitepress/theme/components/Feedback2.vue
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { ref } from 'vue'
|
||||||
|
import {
|
||||||
|
TransitionRoot,
|
||||||
|
TransitionChild,
|
||||||
|
Dialog,
|
||||||
|
DialogPanel,
|
||||||
|
DialogTitle,
|
||||||
|
DialogDescription
|
||||||
|
} from '@headlessui/vue'
|
||||||
|
|
||||||
|
const isOpen = ref(true)
|
||||||
|
|
||||||
|
const feedbackOptions = [
|
||||||
|
{
|
||||||
|
label: '💡 Suggestion',
|
||||||
|
value: 'suggestion'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '❤️ Appreciation',
|
||||||
|
value: 'appreciate'
|
||||||
|
},
|
||||||
|
{ label: '🐞 Bug', value: 'bug' },
|
||||||
|
{ label: '📂 Other', value: 'other' }
|
||||||
|
]
|
||||||
|
|
||||||
|
function closeModal() {
|
||||||
|
isOpen.value = false
|
||||||
|
}
|
||||||
|
function openModal() {
|
||||||
|
isOpen.value = true
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
|
||||||
|
@click="openModal"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<TransitionRoot appear :show="isOpen" as="template">
|
||||||
|
<Dialog as="div" class="relative z-10" @close="closeModal">
|
||||||
|
<TransitionChild
|
||||||
|
as="template"
|
||||||
|
enter="duration-300 ease-out"
|
||||||
|
enter-from="opacity-0"
|
||||||
|
enter-to="opacity-100"
|
||||||
|
leave="duration-200 ease-in"
|
||||||
|
leave-from="opacity-100"
|
||||||
|
leave-to="opacity-0"
|
||||||
|
>
|
||||||
|
<div class="fixed inset-0 bg-black/25" />
|
||||||
|
</TransitionChild>
|
||||||
|
|
||||||
|
<div class="fixed inset-0 overflow-y-auto">
|
||||||
|
<div
|
||||||
|
class="flex min-h-full items-center justify-center p-4 text-center"
|
||||||
|
>
|
||||||
|
<TransitionChild
|
||||||
|
as="template"
|
||||||
|
enter="duration-300 ease-out"
|
||||||
|
enter-from="opacity-0 scale-95"
|
||||||
|
enter-to="opacity-100 scale-100"
|
||||||
|
leave="duration-200 ease-in"
|
||||||
|
leave-from="opacity-100 scale-100"
|
||||||
|
leave-to="opacity-0 scale-95"
|
||||||
|
>
|
||||||
|
<DialogPanel
|
||||||
|
class="w-full max-w-md transform overflow-hidden rounded-2xl bg-bg p-6 text-left align-middle shadow-xl transition-all"
|
||||||
|
>
|
||||||
|
<DialogTitle
|
||||||
|
as="h3"
|
||||||
|
class="text-lg font-medium leading-6 text-text"
|
||||||
|
>
|
||||||
|
Feedback
|
||||||
|
</DialogTitle>
|
||||||
|
|
||||||
|
<div class="mt-2">
|
||||||
|
<div class="grid gap-[0.5rem]">
|
||||||
|
<button
|
||||||
|
v-for="item in feedbackOptions"
|
||||||
|
:key="item.value"
|
||||||
|
class="inline-flex justify-center rounded-md border border-transparent bg-bg-alt px-4 py-2 text-sm font-medium text-text hover:border-primary focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2"
|
||||||
|
>
|
||||||
|
<span>{{ item.label }}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-2">
|
||||||
|
<div>
|
||||||
|
<label class="field-label">Feedback*</label>
|
||||||
|
|
||||||
|
<textarea placeholder="meow" rows="5" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-4">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="inline-flex justify-center rounded-md border border-transparent bg-blue-100 px-4 py-2 text-sm font-medium text-blue-900 hover:bg-blue-200 focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2"
|
||||||
|
@click="closeModal"
|
||||||
|
>
|
||||||
|
Close
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</DialogPanel>
|
||||||
|
</TransitionChild>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Dialog>
|
||||||
|
</TransitionRoot>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
textarea,
|
||||||
|
input {
|
||||||
|
font-family: var(--vp-font-family-base);
|
||||||
|
background: var(--vp-c-bg-soft);
|
||||||
|
font-size: 14px;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 16px;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&::placeholder {
|
||||||
|
color: var(--vp-c-text-2) !important;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
border: 1px solid var(--vp-c-divider);
|
||||||
|
background-color: var(--vp-c-bg);
|
||||||
|
border-radius: 8px;
|
||||||
|
transition:
|
||||||
|
border-color 0.25s,
|
||||||
|
background-color 0.25s;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 1.5;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.375rem 0.75rem;
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: middle;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn:disabled {
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn:hover {
|
||||||
|
border-color: var(--vp-c-brand);
|
||||||
|
}
|
||||||
|
</style>
|
83
.vitepress/theme/components/Modal.vue
Normal file
83
.vitepress/theme/components/Modal.vue
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { ref } from 'vue'
|
||||||
|
import Feedback from './Feedback.vue'
|
||||||
|
|
||||||
|
const showModal = ref(false)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<button
|
||||||
|
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
|
||||||
|
@click="showModal = true"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Teleport to="body">
|
||||||
|
<Transition name="modal">
|
||||||
|
<div v-show="showModal" class="modal-mask">
|
||||||
|
<div class="modal-container">
|
||||||
|
<Feedback />
|
||||||
|
<div class="model-footer">
|
||||||
|
<button class="modal-button" @click="showModal = false">
|
||||||
|
Close
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Transition>
|
||||||
|
</Teleport>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.modal-mask {
|
||||||
|
position: fixed;
|
||||||
|
z-index: 200;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-container {
|
||||||
|
width: 300px;
|
||||||
|
margin: auto;
|
||||||
|
padding: 20px 30px;
|
||||||
|
background-color: var(--vp-c-bg);
|
||||||
|
border-radius: 2px;
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.model-footer {
|
||||||
|
margin-top: 8px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-button {
|
||||||
|
padding: 4px 8px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border-color: var(--vp-button-alt-border);
|
||||||
|
color: var(--vp-button-alt-text);
|
||||||
|
background-color: var(--vp-button-alt-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-button:hover {
|
||||||
|
border-color: var(--vp-button-alt-hover-border);
|
||||||
|
color: var(--vp-button-alt-hover-text);
|
||||||
|
background-color: var(--vp-button-alt-hover-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-enter-from,
|
||||||
|
.modal-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-enter-from .modal-container,
|
||||||
|
.modal-leave-to .modal-container {
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,6 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import Field from './CardField.vue'
|
import Field from './CardField.vue'
|
||||||
import Feedback from './Feedback.vue'
|
import Modal from './Modal.vue'
|
||||||
import InputField from './InputField.vue'
|
import InputField from './InputField.vue'
|
||||||
import ToggleStarred from './ToggleStarred.vue'
|
import ToggleStarred from './ToggleStarred.vue'
|
||||||
</script>
|
</script>
|
||||||
@ -10,15 +10,15 @@ import ToggleStarred from './ToggleStarred.vue'
|
|||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<div class="card-title">Emoji Legend</div>
|
<div class="card-title">Emoji Legend</div>
|
||||||
</div>
|
</div>
|
||||||
|
<Field icon="i-twemoji-star">Recommendations</Field>
|
||||||
<Field icon="i-twemoji-globe-with-meridians">Indexes</Field>
|
<Field icon="i-twemoji-globe-with-meridians">Indexes</Field>
|
||||||
<Field icon="i-twemoji-repeat-button">Storage Links</Field>
|
<Field icon="i-twemoji-repeat-button">Storage Links</Field>
|
||||||
<Field icon="i-twemoji-star">Recommendations</Field>
|
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<div class="card-title">Options</div>
|
<div class="card-title">Options</div>
|
||||||
</div>
|
</div>
|
||||||
<InputField id="feedback" label="Feedback">
|
<InputField id="feedback" label="Feedback">
|
||||||
<template #display>
|
<template #display>
|
||||||
<Feedback />
|
<Modal />
|
||||||
</template>
|
</template>
|
||||||
</InputField>
|
</InputField>
|
||||||
<InputField id="toggle-starred" label="Toggle Starred">
|
<InputField id="toggle-starred" label="Toggle Starred">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import type { Theme } from 'vitepress'
|
import { type Theme } from 'vitepress'
|
||||||
import DefaultTheme from 'vitepress/theme'
|
import DefaultTheme from 'vitepress/theme'
|
||||||
import Layout from './Layout.vue'
|
import Layout from './Layout.vue'
|
||||||
import Post from './PostLayout.vue'
|
import Post from './PostLayout.vue'
|
||||||
|
@ -94,7 +94,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
::selection {
|
::selection {
|
||||||
background-color: #0f2c47;
|
background-color: var(--vp-button-brand-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.VPFooter a {
|
.VPFooter a {
|
||||||
|
@ -4,7 +4,6 @@ export function groupBy<T, K extends keyof any>(
|
|||||||
): Record<K, T[]> {
|
): Record<K, T[]> {
|
||||||
return arr.reduce(
|
return arr.reduce(
|
||||||
(groups, item) => {
|
(groups, item) => {
|
||||||
// biome-ignore lint/suspicious/noAssignInExpressions: <explanation>
|
|
||||||
;(groups[key(item)] ||= []).push(item)
|
;(groups[key(item)] ||= []).push(item)
|
||||||
return groups
|
return groups
|
||||||
},
|
},
|
||||||
|
313
AI.md
313
AI.md
@ -4,93 +4,58 @@
|
|||||||
***
|
***
|
||||||
***
|
***
|
||||||
|
|
||||||
|
* **Note** - Our [Discord](https://redd.it/17f8msf) has an AI bot with Llama, Mistral, and Stable Diffusion. Feel free to join and try it out.
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# ► AI Chatbots
|
# ► AI Chatbots
|
||||||
|
|
||||||
* 🌐 **[Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt)** - ChatGPT Resources
|
* 🌐 **[LMSYS Arena](https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard)** - Chatbot Leaderboard with Elo rating
|
||||||
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index
|
* 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)** - Open Source Chatbot Benchmark
|
||||||
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn Books into Chatbots
|
* 🌐 **[Transformer Models Timeline](https://ai.v-gar.de/ml/transformer/timeline/)** - LLM Timeline
|
||||||
* ⭐ **[TypeSet](https://typeset.io/)** - Research Paper Chatbot
|
|
||||||
* [GPT Crawler](https://github.com/BuilderIO/gpt-crawler) - Turn Websites into Chatbots
|
|
||||||
* [ChatGPTBox](https://github.com/josStorer/chatGPTBox), [ChatGPT Apps](https://github.com/adamlui/chatgpt-apps), [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) or [Merlin](https://www.getmerlin.in/) / [Unlimited](https://rentry.co/MerlinAI-Unlim) - Extensions
|
|
||||||
* [Humata](https://www.humata.ai/), [Sharly](https://app.sharly.ai/), [Docalysis](https://docalysis.com/), [DAnswer](https://docs.danswer.dev/), [DocsGPT](https://docsgpt.arc53.com/) or [ChatDOC](https://chatdoc.com/) - Turn Documents into Chatbots
|
|
||||||
* [PrivateGPT](https://docs.privategpt.dev/) - Offline Document Chatbots
|
|
||||||
* [SallyBot](https://github.com/DeSinc/SallyBot/) - ChatGPT Discord Bot
|
|
||||||
* [TGPT](https://github.com/aandrew-me/tgpt) - ChatGPT TUIs
|
|
||||||
* [Lobe Chat](https://chat-preview.lobehub.com) - Desktop App
|
|
||||||
* [Noi](https://noi.nofwl.com/) - Desktop App
|
|
||||||
* [Chatbot-UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui)
|
|
||||||
* [ChatRTX](https://www.nvidia.com/en-us/ai-on-rtx/chatrtx/) - Desktop App / RTX 30+ Series GPU Only
|
|
||||||
* [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
|
|
||||||
* [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI
|
|
||||||
* [Voice Control](https://voicecontrol.chat/) - ChatGPT Voice Control
|
|
||||||
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
|
|
||||||
* [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Online Chatbots
|
## ▷ Online Chatbots
|
||||||
|
|
||||||
* 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** or [ChinaGPT](https://github.com/GoldenMelon-Studio/chinagpt-4/) - Online GPT Indexes
|
|
||||||
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o Chatbot / [Discord](https://discord.com/invite/openai)
|
|
||||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4/3.5 Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
|
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4/3.5 Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
|
||||||
* ⭐ **[Morphic](https://www.morphic.sh/)** - GPT-4o Powered Search
|
|
||||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
|
|
||||||
* ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) (ask for english)
|
* ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) (ask for english)
|
||||||
* ⭐ **[Gemini](https://gemini.google.com/)** or [Gemma](https://github.com/google/gemma.cpp), [2](https://ai.google.dev/gemma/) - Google's Chatbot
|
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
|
||||||
* ⭐ **[Claude](https://claude.ai/)** - Anthropic's Chatbot
|
|
||||||
* ⭐ **[groq](https://groq.com/)** - Llama 3 and Mixtral Chatbots
|
|
||||||
* ⭐ **[LMSYS Chat](https://chat.lmsys.org/)** - Chat and Compare Multiple Chatbots
|
* ⭐ **[LMSYS Chat](https://chat.lmsys.org/)** - Chat and Compare Multiple Chatbots
|
||||||
* [LLM Playground](https://llmplayground.net/) - Multiple Chatbots / [Discord](https://discord.com/invite/q55gsH8z5F) / [API](https://api.discord.rocks/)
|
* [ChatGPT](https://chat.openai.com/) - GPT-3.5 Chatbot / [Discord](https://discord.com/invite/openai)
|
||||||
* [feyn](https://feyn.chat/) - GPT-4o / Multiple Chatbots
|
* [Gemini](https://gemini.google.com/) - Google's Chatbot
|
||||||
* [GPT4o.so](https://gpt4o.so/app) - GPT-4o
|
* [groq](https://groq.com/) - LLama and Mixtral Chatbots
|
||||||
* [LibreChat](https://librechat.ai/) - Multiple Chatbots
|
|
||||||
* [sdk.vercel](https://sdk.vercel.ai/) - Multiple Chatbots
|
|
||||||
* [FFA](https://ffa.chat/) - Multiple Chatbots
|
|
||||||
* [DDG Chat](https://duckduckgo.com/chat) - Multiple Chatbots
|
|
||||||
* [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots
|
* [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots
|
||||||
* [infermatic](https://infermatic.ai/) / [Discord](https://discord.gg/9GUXmDx9GF) - Multiple Chatbots
|
* [FlowGPT](https://flowgpt.com/chat) - Multiple Chatbots / [Discord](https://discord.com/invite/tWZGzcpTkf)
|
||||||
* [lollms-webui](https://github.com/ParisNeo/lollms-webui) - Multiple Chatbots
|
* [Phind](https://www.phind.com/) - GPT-3.5 Powered Search
|
||||||
* [MagAI](https://rentry.org/freegpt4withmagai) - Multiple Chatbots
|
* [Ora](https://ora.ai/start) - GPT-3.5 Based Chatbots
|
||||||
* [freegpt4](https://rentry.org/freegpt4) - Free GPT-4 Methods
|
|
||||||
* [Meta AI](https://www.meta.ai/) - Llama 3 Chatbot
|
|
||||||
* [NVIDIA NIM](https://build.nvidia.com/) - Llama 3
|
|
||||||
* [Phind](https://www.phind.com/) - Llama Search Engine
|
|
||||||
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - AI Search Engine
|
|
||||||
* [Komo](https://komo.ai/) - AI Search Engine
|
|
||||||
* [iAsk](https://iask.ai/) - AI Search Engine
|
|
||||||
* [Mindfulq](https://www.mindfulq.com/) - AI Search Engine
|
|
||||||
* [Andi](https://andisearch.com/) - AI Search Engine
|
|
||||||
* [You](https://you.com/) - AI Search Engine
|
|
||||||
* [iSeek](https://www.iseek.com/) - AI Search Engine
|
|
||||||
* [Farfalle](https://www.farfalle.dev/) - AI Search Engine
|
|
||||||
* [Exa](https://exa.ai/) - AI Search Engine / [Discord](https://discord.com/invite/jvz7GS9W8Y)
|
|
||||||
* [Lepton Search](https://search.lepton.run/) - AI Search Engine
|
|
||||||
* [Pi](https://pi.ai/talk) - Inflection AI's Chatbot
|
* [Pi](https://pi.ai/talk) - Inflection AI's Chatbot
|
||||||
* [Reka Playground](https://chat.reka.ai/) - Reka's Chatbot
|
|
||||||
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / [Discord](https://discord.com/invite/joinpoe)
|
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / [Discord](https://discord.com/invite/joinpoe)
|
||||||
|
* [Claude](https://claude.ai/) - Anthropic's Chatbot
|
||||||
|
* [AI Playground](https://play.vercel.ai/) - Compare Multiple Chatbots
|
||||||
* [GlobalGPT](https://www.globalgpt.nspiketech.com/#/) - AI Chatbot with Document Support
|
* [GlobalGPT](https://www.globalgpt.nspiketech.com/#/) - AI Chatbot with Document Support
|
||||||
* [Ai Uncensored](https://www.aiuncensored.info/) - "Uncensored" Chatbot
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Self-Hosting Tools
|
## ▷ Self-Hosting Tools
|
||||||
|
|
||||||
* ⭐ **[Jan.ai](https://jan.ai/)** - Self-Hosted
|
* ⭐ **[SillyTavern](https://github.com/SillyTavern/SillyTavern)** - Front-end for LLMs
|
||||||
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Front-end for LLMs
|
|
||||||
* ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Host Transformer Based LLMs / [Guide](https://rentry.org/llama-mini-guide)
|
* ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Host Transformer Based LLMs / [Guide](https://rentry.org/llama-mini-guide)
|
||||||
* ⭐ **[kobold.cpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [rocM](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb)
|
* ⭐ **[kobold.cpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [rocM](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb)
|
||||||
* ⭐ **[Pinokio](https://pinokio.computer/)** - Single Click AI Model Installer / [Discord](https://discord.gg/TQdNwadtE4)
|
* ⭐ **[Pinokio](https://pinokio.computer/)** - Single Click AI Model Installer / [Discord](https://discord.gg/TQdNwadtE4)
|
||||||
* ⭐ **[Oobabooga Text Generation WebUI](https://github.com/oobabooga/text-generation-webui)** - Self-Host Models / [Colab](https://colab.research.google.com/github/pcrii/Philo-Colab-Collection/blob/main/4bit_TextGen_Gdrive.ipynb)
|
* ⭐ **[Oobabooga Text Generation WebUI](https://github.com/oobabooga/text-generation-webui)** - Self-Host Models / [Colab](https://colab.research.google.com/github/pcrii/Philo-Colab-Collection/blob/main/4bit_TextGen_Gdrive.ipynb)
|
||||||
* ⭐ **[Aphrodite Engine](https://github.com/PygmalionAI/aphrodite-engine)** - Serve LLMs at Scale with Kobold & OpenAI APIs / [Colab](https://colab.research.google.com/github/AlpinDale/misc-scripts/blob/main/Aphrodite.ipynb)
|
* ⭐ **[Aphrodite Engine](https://github.com/PygmalionAI/aphrodite-engine)** - Serve LLMs at Scale with Kobold & OpenAI APIs / [Colab](https://colab.research.google.com/github/AlpinDale/misc-scripts/blob/main/Aphrodite.ipynb)
|
||||||
* [LLaVA](https://llava.hliu.cc/) - Chatbot with Image Support
|
* [LLaVA](https://llava.hliu.cc/) - Chatbot with Image Support
|
||||||
* [OpenAIPlayground](https://github.com/nat/openplayground) - LLM Playground
|
|
||||||
* [Petals](https://petals.dev/) - Self-Hosted
|
* [Petals](https://petals.dev/) - Self-Hosted
|
||||||
* [Mistral](https://chat.mistral.ai/chat) - Self-Hosted
|
* [Jan.ai](https://jan.ai/) - Self-Hosted
|
||||||
* [Ollama](https://ollama.ai/) - Self-Hosted
|
* [Ollama](https://ollama.ai/) - Self-Hosted
|
||||||
* [LMStudio](https://lmstudio.ai/) - Self-Hosted
|
* [GPT4All](https://gpt4all.io/) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e)
|
||||||
* [GPT4All](https://www.nomic.ai/gpt4all) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e)
|
* [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLMs w/ Single File
|
||||||
* [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLM with Single Files
|
* [Dify](https://dify.ai/) - Create AI Apps
|
||||||
* [Generative AI for Beginners](https://microsoft.github.io/generative-ai-for-beginners/) - Generative AI Guides
|
* [PlugBear](https://plugbear.io/) - Connect LLMs to Apps
|
||||||
|
* [Generative AI for Beginners](https://github.com/microsoft/generative-ai-for-beginners) - Generative AI Guides
|
||||||
|
* [TGPT](https://github.com/aandrew-me/tgpt) - ChatGPT TUI
|
||||||
|
* [LibreChat](https://github.com/danny-avila/LibreChat), [HemulGM](https://github.com/HemulGM/ChatGPT), [SmolAI](https://github.com/smol-ai/menubar/) or [Chatbot-UI](https://github.com/mckaywrigley/chatbot-ui) - ChatGPT Desktop Apps / GUIs
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -100,106 +65,80 @@
|
|||||||
* 🌐 **[Img-Resources](https://rentry.org/lmg-resources)** - LLM Character Resources / [Templates](https://rentry.org/lmg_template)
|
* 🌐 **[Img-Resources](https://rentry.org/lmg-resources)** - LLM Character Resources / [Templates](https://rentry.org/lmg_template)
|
||||||
* ⭐ **[PygmalionAI](https://discord.com/invite/pygmalionai)** - Self-Hosted Roleplaying Models with Resources / [Resources](https://rentry.co/PygmalionLinks)
|
* ⭐ **[PygmalionAI](https://discord.com/invite/pygmalionai)** - Self-Hosted Roleplaying Models with Resources / [Resources](https://rentry.co/PygmalionLinks)
|
||||||
* ⭐ **[Call Annie](https://callannie.ai/)** - GPT-3.5 Chatbot with Real-Time Voice and Video / [Discord](https://discord.gg/Rfbzet5R3v)
|
* ⭐ **[Call Annie](https://callannie.ai/)** - GPT-3.5 Chatbot with Real-Time Voice and Video / [Discord](https://discord.gg/Rfbzet5R3v)
|
||||||
* ⭐ **[Character AI](https://character.ai/)** - Roleplaying Chatbots / [Extract Params](https://rentry.org/reverseCAI)
|
* ⭐ **[Character AI](https://beta.character.ai/)** - Roleplaying Chatbots / [Extract Params](https://rentry.org/reverseCAI)
|
||||||
* ⭐ **[FlowGPT](https://flowgpt.com/chat)** - Roleplaying Chatbots / [Discord](https://discord.com/invite/tWZGzcpTkf)
|
|
||||||
* ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide
|
* ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide
|
||||||
* ⭐ **[Chub](https://www.chub.ai/)** - Character Cards
|
* ⭐ **[Chub](https://www.chub.ai/)** - Character Cards
|
||||||
* [LlaMA + SillyTavern](https://rentry.org/llama_v2_sillytavern) - LlaMA + SillyTavern Roleplaying Setup Guide
|
* [LLaMA + SillyTavern](https://rentry.org/llama_v2_sillytavern) - LLaMA + SillyTavern Roleplaying Setup Guide
|
||||||
* [KoboldAI](https://github.com/henk717/KoboldAI) - GUI for Roleplaying Chatbots / [Web App](https://lite.koboldai.net/)
|
* [KoboldAI](https://github.com/henk717/KoboldAI) - GUI for Roleplaying Chatbots / [Web App](https://lite.koboldai.net/)
|
||||||
* [GPT Call](https://gptcall.net/) - Roleplaying Chatbots / [Discord](https://discord.gg/88fQT5Bgfe)
|
* [GPT Call](https://gptcall.net/) - Roleplaying Chatbots / [Discord](https://discord.gg/88fQT5Bgfe)
|
||||||
* [Figgs](https://www.figgs.ai/) - Roleplaying Chatbots
|
|
||||||
* [Dreamshow](https://dreamshow.ai/) - Roleplaying Chatbots
|
* [Dreamshow](https://dreamshow.ai/) - Roleplaying Chatbots
|
||||||
* [Spicychat.ai](https://spicychat.ai/) - Roleplaying Chatbots
|
* [Spicychat.ai](https://spicychat.ai/) - Roleplaying Chatbots
|
||||||
|
* [Epigon](https://epigon.ai/) - Roleplaying Chatbots
|
||||||
* [Sakura](https://www.sakura.fm/) - Roleplaying Chatbots
|
* [Sakura](https://www.sakura.fm/) - Roleplaying Chatbots
|
||||||
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots
|
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots
|
||||||
* [Faraday](https://faraday.dev/) - Self-Hosted Roleplaying Chatbot
|
|
||||||
* [TavernAI](https://tavernai.net/) - Roleplaying / Adventure Chatbot
|
* [TavernAI](https://tavernai.net/) - Roleplaying / Adventure Chatbot
|
||||||
* [AI Dungeon](https://play.aidungeon.io/main/landing) - Roleplaying / Adventure Chatbot
|
|
||||||
* [Shapes.ai](https://shapes.inc/) - Discord Roleplaying Bot
|
|
||||||
* [Broken Bear](https://www.brokenbear.com/) - Vent to AI Bear
|
* [Broken Bear](https://www.brokenbear.com/) - Vent to AI Bear
|
||||||
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) - Chatbot Builders
|
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) - Chatbot Builders
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Coding AIs
|
## ▷ ChatGPT Tools
|
||||||
|
|
||||||
* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** or [BigCode](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards
|
* 🌐 **[Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt)** - ChatGPT Resources
|
||||||
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs
|
* 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** or **[FOFA](https://en.fofa.info/result?qbase64=ImxvYWRpbmctd3JhcCIgJiYgImJhbGxzIiAmJiAiY2hhdCIgJiYgaXNfZG9tYWluPXRydWU%3D)** / [2](https://en.fofa.info/result?qbase64=dGl0bGU9PSJDaGF0R1BUIFdlYiI%3D) - ChatGPT WebUI Indexes
|
||||||
* ⭐ **[Codeium](https://codeium.com/)** - Coding AI
|
* ⭐ **[ChatHub](https://chathub.gg/)** - Compare AI Responses
|
||||||
* ⭐ **[Pieces](https://pieces.app/) / [Docs](https://docs.pieces.app)** - Multi-LLM Coding AI / GPT-4 for Free
|
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn PDFs into Chatbots
|
||||||
* [Cursor](https://cursor.sh/) - Coding AI
|
* ⭐ **[TypeSet](https://typeset.io/)** - Research Paper Chatbot
|
||||||
* [tabnine](https://www.tabnine.com/) - Coding AI
|
* [Erin](https://erin.ac/) or [SallyBot](https://github.com/DeSinc/SallyBot/) - ChatGPT Discord Bots
|
||||||
* [ImageCook](https://imgcook.com) / [GitHub](https://github.com/imgcook/imgcook) - Coding AI
|
* [Vault AI](https://vault.pash.city/), [Humata](https://www.humata.ai/), [Unriddle](https://www.unriddle.ai/), [Sharly](https://app.sharly.ai/), [Docalysis](https://docalysis.com/), [DAnswer](https://github.com/danswer-ai/danswer) or [ChatDOC](https://chatdoc.com/) - Turn Documents into Chatbots
|
||||||
* [CodeWhisperer](https://aws.amazon.com/codewhisperer/) - Coding AI
|
* [PrivateGPT](https://github.com/imartinez/privateGPT/) or [ChatDocs](https://github.com/marella/chatdocs) - Offline Document Chatbots
|
||||||
* [Telosys](https://www.telosys.org/) - Coding AI
|
* [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
|
||||||
* [WDTCD?](https://whatdoesthiscodedo.com/) - Coding AI
|
* [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI
|
||||||
* [Sourcery](https://sourcery.ai/) - Coding AI
|
* [ChatGPT File Uploader](https://chromewebstore.google.com/detail/chatgpt-file-uploader/oaogphgfdbdbmhkiplemgehihiiececj) - File Upload Extension
|
||||||
* [Devv](https://devv.ai/) - Coding AI
|
* [ChatGPT Advanced](https://tools.zmo.ai/webchatgpt) - Add Search Results to ChatGPT
|
||||||
* [Cody](https://about.sourcegraph.com/cody) - Coding AI
|
* [SublimeGPT](https://chromewebstore.google.com/detail/sublimegpt-chatgpt-everyw/eecockeebhenbihmkaamjlgoehkngjea), [DuckDuckGPT](https://github.com/kudoai/duckduckgpt) or [GPTGO](https://gptgo.ai/) - Add ChatGPT to Search Results
|
||||||
* [Cursor](https://www.trycursor.com/) - Coding AI / [Discord](https://discord.gg/PJEgRywgRy)
|
* [ChatGPTBox](https://github.com/josStorer/chatGPTBox), [ChatGPT Apps](https://github.com/adamlui/chatgpt-apps), [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) or [Walles](https://walles.ai/) - ChatGPT Extensions
|
||||||
* [OpenDevin](https://github.com/OpenDevin/OpenDevin) - Coding AI
|
* [Harpa](https://harpa.ai/), [Merlin](https://www.getmerlin.in/) / [Unlimited](https://rentry.co/MerlinAI-Unlim) or [Glimpse](https://glimpse.surf/) - ChatGPT Chrome Extensions
|
||||||
* [continue](https://continue.dev/) - Coding AI
|
* [/r/ChatGPT](https://www.reddit.com/r/ChatGPT/) - ChatGPT Subreddit
|
||||||
* [Bito AI](https://bito.ai/) - Coding AI
|
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
|
||||||
* [CodiumAI](https://www.codium.ai/) - Coding AI
|
* [VizGPT](https://www.vizgpt.ai/) - Chat Data Visualization
|
||||||
* [Blackbox](https://www.blackbox.ai/) - Coding AI
|
* [DeepSheet](https://deepsheet.dylancastillo.co/) - Data Visualization AI
|
||||||
* [Codel](https://github.com/semanser/codel) - Coding AI
|
* [Autoclear ChatGPT History](https://github.com/adamlui/userscripts/tree/master/chatgpt/autoclear-chatgpt-history) - Autoclear Chats
|
||||||
* [CollectivAI](https://chat.collectivai.com/) - Coding AI
|
* [EditGPT](https://www.editgpt.app/) - Proofread Chats
|
||||||
* [Denigma](https://denigma.app/#demo) - Coding AI
|
* [RepeatGPT](https://repeatgpt.com/) - Schedule Chats
|
||||||
* [GPT Engineer](https://github.com/AntonOsika/gpt-engineer) - Coding AI
|
* [ChatGPT Old Style](https://greasyfork.org/en/scripts/486909-openai-chat-old-colors) - Old ChatGPT Colors
|
||||||
* [Aider](https://aider.chat/) - Terminal Coding AI
|
|
||||||
* [Codacy](https://www.codacy.com/) or [AI Code Review](https://ai-code-reviewer.com/) - Code Fixing AIs
|
|
||||||
* [Open Interpreter](https://github.com/OpenInterpreter/open-interpreter) - Run Code Locally
|
|
||||||
* [v0](https://v0.dev/) - Text to Site Code
|
|
||||||
* [AI Code Translator](https://ai-code-translator.vercel.app/), [AI Code Convert](https://aicodeconvert.com/) or [Source Code Converters](https://www.tangiblesoftwaresolutions.com/) - AI Code Converters
|
|
||||||
* [RTutor](https://rtutor.ai/) - Translate Natural Language to R code
|
|
||||||
* [Gorilla](https://gorilla.cs.berkeley.edu/) - API to Code LLM
|
|
||||||
* [CS50.ai](https://cs50.ai/) - AI Rubberducking
|
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
## ▷ ChatGPT Prompts
|
## ▷ ChatGPT Prompts
|
||||||
|
|
||||||
* 🌐 **[Jailbreak Listings](https://rentry.org/jb-listing)** - Prompt / Jailbreak Lists
|
* ⭐ **[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory
|
||||||
* ⭐ **[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory / [Github](https://github.com/f/awesome-chatgpt-prompts)
|
* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)**, [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering), [LearningPrompt](https://learningprompt.wiki/) or [Jailbreaking ChatGPT](https://arxiv.org/pdf/2305.13860) - Prompting Guides
|
||||||
* ⭐ **[BlackFriday GPTs Prompts](https://github.com/friuns2/BlackFriday-GPTs-Prompts)** - Prompt Directory
|
* ⭐ **[jailbreakchat](https://www.jailbreakchat.com/)** or **[jamessawyer](http://www.jamessawyer.co.uk/pub/gpt_jb.html)** - Jailbreak Prompts
|
||||||
* ⭐ **[Leaked Prompts](https://github.com/linexjlin/GPTs)** - Prompt Directory
|
* ⭐ **[quickref](https://quickref.me/chatgpt)** - Prompt Cheatsheets
|
||||||
* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)**, [LearnPrompting](https://learnprompting.org/docs/intro), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering), [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) or [LearningPrompt](https://learningprompt.wiki/) - Prompting Guides
|
* ⭐ **[flowgpt](https://flowgpt.com/)**, **[Leaked Prompts](https://github.com/linexjlin/GPTs)**, [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74), [UseThisPrompt](https://www.usethisprompt.io/), [GPTea](https://gptea.io/) or [SnackPrompt](https://snackprompt.com/) - Prompt Directories
|
||||||
* [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74) - Prompt Directory
|
* [PromptPerfect](https://promptperfect.jina.ai/) - Prompt Optimization
|
||||||
* [L1B3RT45](https://github.com/elder-plinius/L1B3RT45) - Jailbreak Prompts / [Discord](https://discord.gg/basi) / [Twitter](https://x.com/elder_plinius)
|
|
||||||
* [promptfoo](https://github.com/typpo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds
|
* [promptfoo](https://github.com/typpo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds
|
||||||
* [Marketing 2099](https://sintralabs.notion.site/Marketing-2099-Ultimate-ChatGPT-Marketing-Prompts-To-Copy-Paste-200-tasks-fc22c9142d6a4a4286a3fe755be932e6) - ChatGPT Marketing Prompts
|
* [Marketing 2099](https://sintralabs.notion.site/Marketing-2099-Ultimate-ChatGPT-Marketing-Prompts-To-Copy-Paste-200-tasks-fc22c9142d6a4a4286a3fe755be932e6) - ChatGPT Marketing Prompts
|
||||||
* [Tensor Trust](https://tensortrust.ai/) or [Gandalf](https://gandalf.lakera.ai/) - Prompting Skill Games
|
* [Tensor Trust](https://tensortrust.ai/) or [Gandalf](https://gandalf.lakera.ai/) - Prompting Skill Games
|
||||||
* [chat-gpt-games](https://github.com/AdmTal/chat-gpt-games) - Prompt Games
|
|
||||||
* [Gobble Bot](https://gobble.bot/) - Generate Text Files for Chatbots
|
|
||||||
|
|
||||||
***
|
***
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► AI Indexes
|
# ► AI Indexes
|
||||||
|
|
||||||
* 🌐 **[LMSYS Arena](https://chat.lmsys.org/?leaderboard)** - Chatbot Leaderboards / Benchmarks
|
|
||||||
* 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)** - Chatbot Leaderboards / Benchmarks
|
|
||||||
* 🌐 **[Transformer Models Timeline](https://ai.v-gar.de/ml/transformer/timeline/)** - LLM Timeline
|
|
||||||
* 🌐 **[Toolify](https://www.toolify.ai/)** - AI Directory
|
* 🌐 **[Toolify](https://www.toolify.ai/)** - AI Directory
|
||||||
* 🌐 **[Phygital Library](https://library.phygital.plus/)** - AI Directory / Workflow Builder
|
* 🌐 **[Phygital Library](https://library.phygital.plus/)** - AI Directory / Workflow Builder
|
||||||
|
* 🌐 **[AI-MF](https://whoisdsmith.gitbook.io/ai-mf/)** - AI Directory / [GitHub](https://github.com/whoisdsmith/AI-MTHRFCKR)
|
||||||
* 🌐 **[LifeArchitect](https://lifearchitect.ai/models-table/)** - LLM Index
|
* 🌐 **[LifeArchitect](https://lifearchitect.ai/models-table/)** - LLM Index
|
||||||
* [Glif](https://glif.app/) or [perchance](https://perchance.org/generators) - Simple AI Builders
|
|
||||||
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks
|
|
||||||
* [ArtificialAnalysis](https://artificialanalysis.ai/) - Chatbot Benchmarks
|
|
||||||
* [The Fastest AI](https://thefastest.ai/) - Chatbot Benchmarks
|
|
||||||
* [YP for AI](https://www.ypforai.com) - AI Directory
|
|
||||||
* [AI Search](https://ai-search.io), [What AI Can Do Today](https://whataicandotoday.com/) or [FindAISites](https://findaisites.pro/) - AI Index Search
|
|
||||||
* [Awesome AI Tools](https://github.com/mahseema/awesome-ai-tools) - AI Directory
|
|
||||||
* [ToolDirectory](https://www.tooldirectory.ai/) - AI Directory
|
* [ToolDirectory](https://www.tooldirectory.ai/) - AI Directory
|
||||||
* [BasedTools](https://www.basedtools.ai/) - AI Directory / [Discord](https://discord.gg/D8wYxUvwTD)
|
|
||||||
* [It's Better With AI](https://itsbetterwithai.com/) - AI Directory
|
|
||||||
* [Futurepedia](https://www.futurepedia.io/) - AI Directory
|
* [Futurepedia](https://www.futurepedia.io/) - AI Directory
|
||||||
* [funfun.tools](https://www.funfun.tools/) - AI Directory
|
* [AI Search](https://ai-search.io/) - AI Directory
|
||||||
* [PowerUsers](https://powerusers.ai/) - AI Directory
|
* [PowerUsers](https://powerusers.ai/) - AI Directory
|
||||||
* [TheresAnAIForThat](https://theresanaiforthat.com/) - AI Directory
|
* [TheresAnAIForThat](https://theresanaiforthat.com/) - AI Directory
|
||||||
* [AI Tools](https://aitools.fyi/) - AI Directory
|
|
||||||
* [FutureTools](https://www.futuretools.io/?pricing-model=free) - AI Directory
|
* [FutureTools](https://www.futuretools.io/?pricing-model=free) - AI Directory
|
||||||
* [Sieve](https://www.sievedata.com/explore) or [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AIs
|
* [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AI
|
||||||
* [Google Labs](https://labs.google/) or [AI Test Kitchen](https://aitestkitchen.withgoogle.com/) - Google AI Experiments
|
* [Google Labs](https://labs.withgoogle.com/) - AI Experiments
|
||||||
|
|
||||||
***
|
***
|
||||||
***
|
***
|
||||||
@ -210,13 +149,17 @@
|
|||||||
* [Scrip AI](https://scripai.com/), [InkForAll](https://app.inkforall.com/tools), [QuickPenAI](https://quickpenai.com/) - Online AI Text Tools
|
* [Scrip AI](https://scripai.com/), [InkForAll](https://app.inkforall.com/tools), [QuickPenAI](https://quickpenai.com/) - Online AI Text Tools
|
||||||
* [NovelAI](https://novelai.net/) - Story Writing AI / [Limit Bypass](https://pastebin.com/JDyvqZcz), [2](https://greasyfork.org/en/scripts/448926)
|
* [NovelAI](https://novelai.net/) - Story Writing AI / [Limit Bypass](https://pastebin.com/JDyvqZcz), [2](https://greasyfork.org/en/scripts/448926)
|
||||||
* [Dreamily](https://dreamily.ai/) or [NightSaga](https://nightsaga.ai/) - Story Writing AIs
|
* [Dreamily](https://dreamily.ai/) or [NightSaga](https://nightsaga.ai/) - Story Writing AIs
|
||||||
* [EssayBot](https://www.essaybot.com/) / [2](https://www.essayaibot.com/), [Textero](https://www.textero.ai/), [EssayBuilder](https://essay-builder.ai/) or [EssayService](https://www.essayservice.ai/) - Essay Writing AI
|
* [Essaytyper](http://www.essaytyper.com/), [papertyper](https://papertyper.net/), [EssayBot](https://www.essaybot.com/) / [2](https://www.essayaibot.com/), [Textero](https://www.textero.ai/), [EssayBuilder](https://essay-builder.ai/) or [EssayService](https://www.essayservice.ai/) - Essay Writing AI
|
||||||
* [TextSynth](https://textsynth.com/playground.html) - Text Autocomplete AI
|
* [Chat GPTPhantom](https://chatgpt-phantom.vercel.app/) - Article Writing AI
|
||||||
* [Product Description Generator](https://www.aidirectori.es/tools/product-description-generator)
|
* [GPT4Chat](https://gpt4chat.net/) or [ChatGPT Writer](https://chatgptwriter.ai/) - Email Reply AI
|
||||||
|
* [Novel.sh](https://novel.sh/) or [TextSynth](https://textsynth.com/playground.html) - Text Autocomplete AI
|
||||||
|
* [Compose](https://www.compose.ai/) - Text Autocomplete AI Extension
|
||||||
|
* [NumerousAI](https://numerous.ai/) or [FormulaBot](https://formulabot.com/) - Excel AI Tools
|
||||||
|
* [Auto Text Expander](https://pastebin.com/TFPRieVN) - Shortcuts to Expand & Replace Text as you Type
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ [Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)
|
## ▷ [Text Rephrashing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -224,21 +167,9 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Video Generation
|
## ▷ [Coding AIs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_coding_ais)
|
||||||
|
|
||||||
* ⭐ **[PixVerse](https://pixverse.ai/)** - Video Generator / [Discord](https://discord.com/invite/MXHErdJHMg)
|
|
||||||
* [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab) - Video Generator
|
|
||||||
* [StableVideo](https://www.stablevideo.com/) - Video Generator
|
|
||||||
* [Haiper](https://haiper.ai/) - Video Generator
|
|
||||||
* [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Video Generator
|
|
||||||
* [Dream Machine](https://lumalabs.ai/dream-machine) - Video Generator
|
|
||||||
* [text-to-video](https://text-to-video.vercel.app) - Video Generator
|
|
||||||
* [Text2Video-Zero](https://github.com/Picsart-AI-Research/Text2Video-Zero) - Video Generator
|
|
||||||
* [LensGo](https://lensgo.ai/) - Video Generator
|
|
||||||
* [Pika Labs](https://www.pika.art/) - Video Generator
|
|
||||||
* [Damo](https://huggingface.co/spaces/damo-vilab/modelscope-text-to-video-synthesis) - Video Generator
|
|
||||||
* [Rollideo](https://rollideo.com/) - Text to Subbed Video
|
|
||||||
|
|
||||||
|
***
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Image Generation
|
# ► Image Generation
|
||||||
@ -247,49 +178,53 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
* 🌐 **[RentrySD](https://rentry.org/RentrySD/)**, **[Pharmapsychotic](https://pharmapsychotic.com/tools.html)**, [Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md), [LocalModelsLinks](https://rentry.org/LocalModelsLinks), [SD Goldmine](https://rentry.org/sdgoldmine), [Akashic](https://github.com/Maks-s/sd-akashic), [sdg-link](https://rentry.org/sdg-link), [SDTools](https://sdtools.org) or [AI Creation Tools](https://docs.google.com/spreadsheets/d/1zYJUM-srhgIA7wrj4Pe4QqepAsHIEC00DydoTPv4PWg/edit#gid=0) - AI Image Resources
|
||||||
|
* 🌐 **[CivitAI](https://civitai.com/)** or [Stable Diffusion Models](https://cyberes.github.io/stable-diffusion-models/) - SD Models Index
|
||||||
|
* 🌐 **[PromptMania](https://promptomania.com/)**, [PTSearch](https://www.ptsearch.info/tags/list/) or [PublicPrompts](https://publicprompts.art/) / [Discord](https://discord.com/invite/jvQJFFFx26) - Prompt Indexes
|
||||||
|
* ⭐ **[CLIP Interrogator](https://huggingface.co/spaces/pharma/CLIP-Interrogator)** / [2](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) - Determine Likely Used Image Prompts
|
||||||
|
* [SD Dynamic Prompts](https://github.com/adieyal/sd-dynamic-prompts) - Dynamic Prompts Extension
|
||||||
|
* [Stable Horde](https://stablehorde.net/) - Distributed Network of GPUs running Stable Diffusion / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/)
|
||||||
|
* [NOP / WAS](https://colab.research.google.com/drive/1jUwJ0owjigpG-9m6AI_wEStwimisUE17) - AI Image Generation Colab
|
||||||
|
* [MagicBrush](https://www.magicbru.sh/), [image-mixer-demo](https://huggingface.co/spaces/lambdalabs/image-mixer-demo), [AITransformer](https://aitransformer.net/) - AI Image Transformers
|
||||||
|
* [SD Inpainting](https://huggingface.co/spaces/runwayml/stable-diffusion-inpainting), [Inpaint Anything](https://github.com/geekyutao/Inpaint-Anything) or [Lama Cleaner](https://github.com/Sanster/lama-cleaner) - Image Fill / Item Removal
|
||||||
|
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
|
||||||
|
* [/r/sdforall](https://www.reddit.com/r/sdforall/) - Stable Diffusion Subreddit
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ Online Generators
|
||||||
|
|
||||||
* ⭐ **[Microsoft Designer](https://designer.microsoft.com/image-creator)**, [2](https://www.bing.com/images/create) / Unlimited / [Tips](https://rentry.co/bingimagecreatortips) / [Bulk Download](https://github.com/Richard-Weiss/Bing-Creator-Image-Downloader)
|
* ⭐ **[Microsoft Designer](https://designer.microsoft.com/image-creator)**, [2](https://www.bing.com/images/create) / Unlimited / [Tips](https://rentry.co/bingimagecreatortips) / [Bulk Download](https://github.com/Richard-Weiss/Bing-Creator-Image-Downloader)
|
||||||
* ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP) / Unlimited
|
* ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP) / Unlimited
|
||||||
* ⭐ **[Poe](https://poe.com/)** / 100 Daily / [Discord](https://discord.com/invite/joinpoe)
|
* ⭐ **[Poe](https://poe.com/)** / 100 Daily / [Discord](https://discord.com/invite/joinpoe)
|
||||||
|
* ⭐ **[PlaygroundAI](https://playgroundai.com/)** / 500 Daily
|
||||||
* ⭐ **[Dezgo](https://dezgo.com/)** / [Discord](https://discord.com/invite/RQrGpUhPhx) / Unlimited
|
* ⭐ **[Dezgo](https://dezgo.com/)** / [Discord](https://discord.com/invite/RQrGpUhPhx) / Unlimited
|
||||||
* ⭐ **[Meta AI](https://imagine.meta.com/)** / Unlimited
|
* ⭐ **[Meta AI](https://imagine.meta.com/)** / Unlimited
|
||||||
* ⭐ **[Playground](https://playground.com/)** / 100 Daily
|
|
||||||
* ⭐ **[Ideogram](https://ideogram.ai/)** / 100 Daily
|
|
||||||
* ⭐ **[Tensor.art](https://tensor.art/)** / 100 Daily
|
* ⭐ **[Tensor.art](https://tensor.art/)** / 100 Daily
|
||||||
* ⭐ **[Shakker](https://www.shakker.ai/)** / 50 Daily / [Discord](https://discord.gg/djyP5u3vHY) / [Guide](https://docs.google.com/document/d/1PZ6to6Nn995J0o0BbEPhucqge9uyc1acQoNuvWkK6M8/edit#heading=h.kkzhkyyy4ze4)
|
|
||||||
* ⭐ **[Lexica](https://lexica.art/)** / 48 Weekly
|
* ⭐ **[Lexica](https://lexica.art/)** / 48 Weekly
|
||||||
* ⭐ **[Leonardo.ai](https://app.leonardo.ai/)** / 30 Daily
|
|
||||||
* [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion)
|
* [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion)
|
||||||
* [Prodia](https://app.prodia.com/) / [Discord](https://discord.com/invite/495hz6vrFN) / [Huggingchat Demo](https://huggingface.co/spaces/prodia/fast-stable-diffusion) / Unlimited
|
* [Prodia](https://app.prodia.com/) / [Discord](https://discord.com/invite/495hz6vrFN) / [Huggingchat Demo](https://huggingface.co/spaces/prodia/fast-stable-diffusion) / Unlimited
|
||||||
* [Unstability.ai](https://www.unstability.ai/) / 52 Daily
|
|
||||||
* [NVIDIA NIM](https://build.nvidia.com/) / 50 Daily
|
|
||||||
* [SeaArt](https://www.seaart.ai/) / 40 Daily
|
* [SeaArt](https://www.seaart.ai/) / 40 Daily
|
||||||
* [OpenArt](https://openart.ai/) / [Discord](https://discord.com/invite/yTMNvk5z97) / 50 Daily
|
* [OpenArt](https://openart.ai/) / [Discord](https://discord.com/invite/yTMNvk5z97) / 50 Daily
|
||||||
* [StableDiffusionWeb](https://stablediffusionweb.com/) / 10 Daily
|
* [StableDiffusionWeb](https://stablediffusionweb.com/) / 10 Daily
|
||||||
* [AIGallery](https://aigallery.app/) / Unlimited
|
* [AIGallery](https://aigallery.app/) / Unlimited
|
||||||
* [ComfyUI Web](https://comfyuiweb.com/) / Unlimited
|
* [ComfyUI Web](https://comfyuiweb.com/) / Unlimited
|
||||||
* [Recraft](https://www.recraft.ai/) / Unlimited
|
|
||||||
* [PicSynth](https://www.picsynth.me/generation) / Unlimited
|
|
||||||
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited
|
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited
|
||||||
* [Pollinations](https://pollinations.ai/) / Unlimited / [Discord](https://discord.com/invite/8HqSRhJVxn)
|
* [Pollinations](https://pollinations.ai/) / Unlimited / [Discord](https://discord.com/invite/8HqSRhJVxn)
|
||||||
* [PicFinder](https://picfinder.ai/) / Unlimited
|
* [PicFinder](https://picfinder.ai/) / Unlimited
|
||||||
* [Perchance](https://perchance.org/ai-text-to-image-generator) / Unlimited
|
|
||||||
* [PixArt-alpha](https://huggingface.co/spaces/PixArt-alpha/PixArt-alpha) / Unlimited
|
|
||||||
* [GetIMG.ai](https://getimg.ai/) / [Discord](https://discord.com/invite/5KsUXSzVwS) / 100 Monthly
|
* [GetIMG.ai](https://getimg.ai/) / [Discord](https://discord.com/invite/5KsUXSzVwS) / 100 Monthly
|
||||||
|
* [Leonardo.ai](https://app.leonardo.ai/) / 30 Daily
|
||||||
* [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) / Sign-Up Required
|
* [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) / Sign-Up Required
|
||||||
* [AITurbo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
|
* [AITurbo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
|
||||||
* [Venice](https://venice.ai/chat/Wyg_3w4M5KDFAcAHnqf-s) / 25 Daily
|
* [Ideogram](https://ideogram.ai/) / 25 Daily
|
||||||
* [Artsio](https://artsio.xyz/) / 20 Daily
|
* [Artsio](https://artsio.xyz/) / 20 Daily
|
||||||
* [Yodayo](https://yodayo.com/) / 15 Daily
|
|
||||||
* [Maze.guru](https://maze.guru/gallery) / 12 Daily
|
* [Maze.guru](https://maze.guru/gallery) / 12 Daily
|
||||||
* [DreamLike](https://dreamlike.art) / 12 Daily
|
* [DreamLike](https://dreamlike.art) / [Discord](https://discord.com/invite/QyGR2FxsKU) / 12 Daily
|
||||||
* [Craiyon](https://www.craiyon.com/) / 10 Daily / [Github](https://github.com/borisdayma/dalle-mini) / [Colab](https://colab.research.google.com/github/borisdayma/dalle-mini/blob/main/tools/inference/inference_pipeline.ipynb)
|
* [Craiyon](https://www.craiyon.com/) / 10 Daily / [Github](https://github.com/borisdayma/dalle-mini) / [Colab](https://colab.research.google.com/github/borisdayma/dalle-mini/blob/main/tools/inference/inference_pipeline.ipynb)
|
||||||
* [POKEIT](https://pokeit.ai/) / 10 Daily
|
* [POKEIT](https://pokeit.ai/) / 10 Daily
|
||||||
* [PixAI](https://pixai.art/) / 10 Daily
|
* [PixAI](https://pixai.art/) / 10 Daily
|
||||||
* [Krea](https://search.krea.ai/) / [Discord](https://discord.gg/rJurUAR8Kz)
|
* [Krea](https://search.krea.ai/) / [Discord](https://discord.gg/rJurUAR8Kz)
|
||||||
* [ArtHub.ai](https://arthub.ai/)
|
* [ArtHub.ai](https://arthub.ai/)
|
||||||
* [HotPot](https://hotpot.ai/)
|
|
||||||
* [clipdrop](https://clipdrop.co/tools)
|
|
||||||
* [imgsys](https://imgsys.org/) - Compare AI Image Generators
|
|
||||||
* [MemeCam](https://www.memecam.io/) - AI Meme Generator
|
* [MemeCam](https://www.memecam.io/) - AI Meme Generator
|
||||||
* [Genie](https://lumalabs.ai/genie), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [ThreeStudio](https://github.com/threestudio-project/threestudio) - 3D Image Generators
|
* [Genie](https://lumalabs.ai/genie), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [ThreeStudio](https://github.com/threestudio-project/threestudio) - 3D Image Generators
|
||||||
* [Insta-3D](https://huggingface.co/spaces/ilumine-AI/Insta-3D) - Turn 2D images into 3D spaces
|
* [Insta-3D](https://huggingface.co/spaces/ilumine-AI/Insta-3D) - Turn 2D images into 3D spaces
|
||||||
@ -300,42 +235,28 @@
|
|||||||
|
|
||||||
## ▷ Local Frontends
|
## ▷ Local Frontends
|
||||||
|
|
||||||
* ⭐ **[Stability Matrix](https://lykos.ai/)** / [GitHub](https://github.com/LykosAI/StabilityMatrix)
|
* ⭐ **[StabilityMatrix](https://github.com/LykosAI/StabilityMatrix)**
|
||||||
* ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/automatic) / [Collab](https://colab.research.google.com/drive/1kw3egmSn-KgWsikYvOMjJkVDsPLjEMzl) / [Photoshop](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted) / [Upscaling](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111), [2](https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111)
|
* ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/automatic) / [Collab](https://colab.research.google.com/drive/1kw3egmSn-KgWsikYvOMjJkVDsPLjEMzl) / [Photoshop Plugin](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted)
|
||||||
* ⭐ **[InvokeAI](https://invoke-ai.github.io/InvokeAI/) / [GitHub](https://github.com/invoke-ai/InvokeAI)** / [Discord](https://discord.com/invite/ZmtBAhwWhy)
|
* ⭐ **[InvokeAI](https://github.com/invoke-ai/InvokeAI)** / [Discord](https://discord.com/invite/ZmtBAhwWhy)
|
||||||
* ⭐ **[ComfyUI](https://github.com/comfyanonymous/ComfyUI)**
|
* ⭐ **[ComfyUI](https://github.com/comfyanonymous/ComfyUI)**
|
||||||
* ⭐ **[Fooocus](https://github.com/lllyasviel/Fooocus)**, [2](https://github.com/MoonRide303/Fooocus-MRE) / [Colab](https://colab.research.google.com/github/lllyasviel/Fooocus/blob/main/fooocus_colab.ipynb) / [Search](https://genly.ai/)
|
* ⭐ **[Fooocus](https://github.com/lllyasviel/Fooocus)**, [2](https://github.com/MoonRide303/Fooocus-MRE) / [Colab](https://colab.research.google.com/github/lllyasviel/Fooocus/blob/main/fooocus_colab.ipynb) / [Search](https://genly.ai/)
|
||||||
* ⭐ **[MochiDiffusion](https://github.com/godly-devotion/MochiDiffusion)** - Stable Diffusion for Mac / [Discord](https://discord.com/invite/x2kartzxGv)
|
|
||||||
* ⭐ **[DiffusionBee](https://diffusionbee.com/)** - Stable Diffusion for Mac / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
|
|
||||||
* [StableStudio](https://github.com/Stability-AI/StableStudio)
|
* [StableStudio](https://github.com/Stability-AI/StableStudio)
|
||||||
* [Easy Diffusion](https://stable-diffusion-ui.github.io/)
|
* [Easy Diffusion](https://stable-diffusion-ui.github.io/)
|
||||||
* [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m)
|
* [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m)
|
||||||
* [Sygil WebUI](https://github.com/Sygil-Dev/sygil-webui) / [Discord](https://discord.com/invite/ttM8Tm6wge)
|
* [Sygil WebUI](https://github.com/Sygil-Dev/sygil-webui) / [Discord](https://discord.com/invite/ttM8Tm6wge)
|
||||||
* [Radiata](https://ddpn08.github.io/Radiata/en/)
|
* [Radiata](https://github.com/ddPn08/Radiata)
|
||||||
* [SD WebUI Forge](https://github.com/lllyasviel/stable-diffusion-webui-forge)
|
* [Noiselith](https://noiselith.com/)
|
||||||
* [NMKD Stable Diffusion GUI](https://github.com/n00mkrad/text2image-gui)
|
* [NMKD Stable Diffusion GUI](https://github.com/n00mkrad/text2image-gui)
|
||||||
* [aiimag.es](https://sunija.itch.io/aiimages) / [Discord](https://discord.com/invite/Fge4dVHFM2)
|
* [aiimag.es](https://sunija.itch.io/aiimages) / [Discord](https://discord.com/invite/Fge4dVHFM2)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Guides / Tools
|
## ▷ SD Guides
|
||||||
|
|
||||||
* 🌐 **[RentrySD](https://rentry.org/RentrySD/)**, **[Pharmapsychotic](https://pharmapsychotic.com/tools.html)**, [Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md), [LocalModelsLinks](https://rentry.org/LocalModelsLinks), [SD Goldmine](https://rentry.org/sdgoldmine), [Akashic](https://github.com/Maks-s/sd-akashic), [sdg-link](https://rentry.org/sdg-link), [SDTools](https://sdtools.org) or [AI Creation Tools](https://docs.google.com/spreadsheets/d/1zYJUM-srhgIA7wrj4Pe4QqepAsHIEC00DydoTPv4PWg/edit#gid=0) - AI Image Resources
|
|
||||||
* 🌐 **[CivitAI](https://civitai.com/)** or [Stable Diffusion Models](https://cyberes.github.io/stable-diffusion-models/) - SD Models Index
|
|
||||||
* 🌐 **[PromptMania](https://promptomania.com/)**, [PTSearch](https://www.ptsearch.info/tags/list/) or [PublicPrompts](https://publicprompts.art/) / [Discord](https://discord.com/invite/jvQJFFFx26) - Prompt Indexes
|
|
||||||
* ⭐ **[A Traveler’s Guide to the Latent Space](https://sweet-hall-e72.notion.site/A-Traveler-s-Guide-to-the-Latent-Space-85efba7e5e6a40e5bd3cae980f30235f)** - AI Art Guide
|
* ⭐ **[A Traveler’s Guide to the Latent Space](https://sweet-hall-e72.notion.site/A-Traveler-s-Guide-to-the-Latent-Space-85efba7e5e6a40e5bd3cae980f30235f)** - AI Art Guide
|
||||||
* ⭐ **[Voldy](https://rentry.org/voldy)**, [SD Quickstart](https://redd.it/xvhavo) or [1 Min Stable Diffusion](https://youtu.be/l3JjTDvyVdw) - Stable Diffusion Guides
|
* ⭐ **[Voldy](https://rentry.org/voldy)**, [SD Quickstart](https://redd.it/xvhavo) or [1 Min Stable Diffusion](https://youtu.be/l3JjTDvyVdw) - Stable Diffusion Guides
|
||||||
* ⭐ **[CLIP Interrogator](https://huggingface.co/spaces/pharma/CLIP-Interrogator)** / [2](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) - Determine Likely Used Image Prompts
|
|
||||||
* [Prompt Llibrary](https://promptlibrary.org/) - Image Prompt Library
|
|
||||||
* [SD Dynamic Prompts](https://github.com/adieyal/sd-dynamic-prompts) - Dynamic Prompts Extension
|
|
||||||
* [Stable Horde](https://stablehorde.net/) - Distributed Network of GPUs running Stable Diffusion / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/)
|
|
||||||
* [NOP / WAS](https://colab.research.google.com/drive/1jUwJ0owjigpG-9m6AI_wEStwimisUE17) - AI Image Generation Colab
|
|
||||||
* [image-mixer-demo](https://huggingface.co/spaces/lambdalabs/image-mixer-demo), [AITransformer](https://aitransformer.net/) - AI Image Transformers
|
|
||||||
* [SD Inpainting](https://huggingface.co/spaces/runwayml/stable-diffusion-inpainting), [Inpaint Anything](https://github.com/geekyutao/Inpaint-Anything) or [Lama Cleaner](https://github.com/Sanster/lama-cleaner) - Image Fill / Item Removal
|
|
||||||
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
|
|
||||||
* [/r/sdforall](https://www.reddit.com/r/sdforall/) - Stable Diffusion Subreddit
|
|
||||||
* [TheAlly's Guide](https://civitai.com/models/22881/) - Stable Diffusion Guide
|
* [TheAlly's Guide](https://civitai.com/models/22881/) - Stable Diffusion Guide
|
||||||
* [StableDiffusion Cheatsheet](https://supagruen.github.io/StableDiffusion-CheatSheet/) - Stable Diffusion Cheatsheet
|
* [StableDiffusion Cheatsheet](https://github.com/SupaGruen/StableDiffusion-CheatSheet) - Stable Diffusion Cheatsheet
|
||||||
* [Textard](https://rentry.org/textard) - Textual Inversion Guide
|
* [Textard](https://rentry.org/textard) - Textual Inversion Guide
|
||||||
* [drfar](https://rentry.org/drfar) - InPainting Guide
|
* [drfar](https://rentry.org/drfar) - InPainting Guide
|
||||||
* [AnimAnon](https://rentry.org/AnimAnon) - AI Animation Guide
|
* [AnimAnon](https://rentry.org/AnimAnon) - AI Animation Guide
|
||||||
@ -349,25 +270,20 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Audio Generation
|
# ► Audio Generators
|
||||||
|
|
||||||
* ⭐ **[MusicGen](https://huggingface.co/spaces/facebook/MusicGen)** - Text to Music AI
|
* ⭐ **[MusicGen](https://huggingface.co/spaces/facebook/MusicGen)** - Text to Music AI
|
||||||
* ⭐ **[Riffusion](https://www.riffusion.com/)**
|
* ⭐ **[Riffusion](https://www.riffusion.com/)**
|
||||||
* ⭐ **[Suno](https://suno.com/)** / [Wiki](https://sunoaiwiki.com/en)
|
* ⭐ **[Chirp](https://app.suno.ai/)**
|
||||||
* [Wolfram Tones](https://tones.wolfram.com/)
|
* [Wolfram Tones](https://tones.wolfram.com/)
|
||||||
* [StableAudio](https://www.stableaudio.com/)
|
|
||||||
* [Udio](https://www.udio.com/)
|
|
||||||
* [audio visual generator](https://fredericbriolet.com/avg/)
|
* [audio visual generator](https://fredericbriolet.com/avg/)
|
||||||
* [Fake Music Generator](https://www.fakemusicgenerator.com/)
|
* [Fake Music Generator](https://www.fakemusicgenerator.com/)
|
||||||
* [Sonauto](https://sonauto.ai/) / [Discord](https://discord.gg/pfXar3ChH8)
|
|
||||||
* [Jingle](https://aidn.jp/jingle/)
|
* [Jingle](https://aidn.jp/jingle/)
|
||||||
* [BeatOven](https://www.beatoven.ai/)
|
* [BeatOven](https://www.beatoven.ai/)
|
||||||
* [Waveformer](https://waveformer.replicate.dev/)
|
* [Waveformer](https://waveformer.replicate.dev/)
|
||||||
* [SoundDraw](https://soundraw.io/)
|
* [SoundDraw](https://soundraw.io/)
|
||||||
* [Aiva](https://aiva.ai/)
|
* [Aiva](https://aiva.ai/)
|
||||||
* [Boomy](https://boomy.com/)
|
* [Boomy](https://boomy.com/)
|
||||||
* [Melobytes](https://melobytes.com/en)
|
|
||||||
* [AI Jukebox](https://huggingface.co/spaces/enzostvs/ai-jukebox)
|
|
||||||
* [Drum Loop AI](https://www.drumloopai.com/) - Drum Loop Generator
|
* [Drum Loop AI](https://www.drumloopai.com/) - Drum Loop Generator
|
||||||
* [WOMBO](https://www.wombo.ai/) - AI Powered Lip Sync
|
* [WOMBO](https://www.wombo.ai/) - AI Powered Lip Sync
|
||||||
|
|
||||||
@ -375,13 +291,13 @@
|
|||||||
|
|
||||||
## ▷ Text to Speech
|
## ▷ Text to Speech
|
||||||
|
|
||||||
* 🌐 **[TTS Arena](https://huggingface.co/spaces/TTS-AGI/TTS-Arena)** - Text to Speech Voting / Leaderboards
|
|
||||||
* ⭐ **[ElevenLabs](https://beta.elevenlabs.io/)** / [Discord](https://discord.com/invite/elevenlabs)
|
* ⭐ **[ElevenLabs](https://beta.elevenlabs.io/)** / [Discord](https://discord.com/invite/elevenlabs)
|
||||||
* ⭐ **[Uberduck](https://uberduck.ai/)**
|
* ⭐ **[Uberduck](https://uberduck.ai/)**
|
||||||
* ⭐ **[WhisperSpeech](https://huggingface.co/spaces/collabora/WhisperSpeech)** - [Discord](https://discord.com/invite/FANw4rHD5E)
|
* ⭐ **[WhisperSpeech](https://huggingface.co/spaces/collabora/WhisperSpeech)** - [Discord](https://discord.com/invite/FANw4rHD5E)
|
||||||
* ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)**
|
* ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)**
|
||||||
* ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** - [Github](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
* ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** - [Github](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
||||||
* [Balabolka](https://www.cross-plus-a.com/bportable.htm)
|
* [Balabolka](https://www.cross-plus-a.com/bportable.htm)
|
||||||
|
* [Text To Speech](https://texttospeech.ca/)
|
||||||
* [ttsMP3](https://ttsmp3.com/)
|
* [ttsMP3](https://ttsmp3.com/)
|
||||||
* [Vall-e](https://github.com/enhuiz/vall-e)
|
* [Vall-e](https://github.com/enhuiz/vall-e)
|
||||||
* [TextToMP3](https://www.texttomp3.online/)
|
* [TextToMP3](https://www.texttomp3.online/)
|
||||||
@ -393,10 +309,9 @@
|
|||||||
* [TextToSpeech](https://texttospeech.io/)
|
* [TextToSpeech](https://texttospeech.io/)
|
||||||
* [SAPI4](https://tetyys.com/SAPI4/)
|
* [SAPI4](https://tetyys.com/SAPI4/)
|
||||||
* [LazyPY](https://lazypy.ro/tts/)
|
* [LazyPY](https://lazypy.ro/tts/)
|
||||||
* [VoiceCraft](https://github.com/jasonppy/VoiceCraft)
|
|
||||||
* [Murf.ai](https://murf.ai/)
|
* [Murf.ai](https://murf.ai/)
|
||||||
* [EmotiVoice](https://github.com/netease-youdao/EmotiVoice)
|
* [EmotiVoice](https://github.com/netease-youdao/EmotiVoice)
|
||||||
* [Fish Audio](https://fish.audio/) / [Docs](https://diff.fish.audio) / [GitHub](https://github.com/fishaudio/fish-diffusion)
|
* [Fish Diffusion](https://github.com/fishaudio/fish-diffusion)
|
||||||
* [Audio-WebUI](https://github.com/gitmylo/audio-webui)
|
* [Audio-WebUI](https://github.com/gitmylo/audio-webui)
|
||||||
* [Vanilla Voice](https://www.vanillavoice.com/)
|
* [Vanilla Voice](https://www.vanillavoice.com/)
|
||||||
* [Sam](https://discordier.github.io/sam/), [2](https://simulationcorner.net/index.php?page=sam) / [BetterSam](https://imrane03.github.io/better-sam/)
|
* [Sam](https://discordier.github.io/sam/), [2](https://simulationcorner.net/index.php?page=sam) / [BetterSam](https://imrane03.github.io/better-sam/)
|
||||||
@ -423,15 +338,17 @@
|
|||||||
|
|
||||||
## ▷ Voice Change / Clone
|
## ▷ Voice Change / Clone
|
||||||
|
|
||||||
* ⭐ **[Applio](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [Discord](https://discord.com/invite/iahispano) / [Playground](https://applio.org/playground)
|
* ⭐ **[RVC](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [AI Hub's Documentation](https://docs.aihub.wtf/)
|
||||||
* ⭐ **[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/aihub)** - AI Voice Models and Guides
|
* ⭐ **[RVC HFv2](https://huggingface.co/spaces/r3gm/RVC_HFv2)** - Voice Cloning
|
||||||
* ⭐ **[RVC V2](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/en/README.en.md)** - RVC V2 Voice Cloning (locally)
|
* ⭐ **[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/A5rgNwDRd4) or [AI Hub](https://discord.gg/aihub)** - AI Voice Models and Guides
|
||||||
* ⭐ **[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer (W-Okada) - [Guide](https://rentry.co/VoiceChangerGuide)
|
* ⭐ **[Replay](https://www.tryreplay.io/)** - RVC Desktop App
|
||||||
* ⭐ **[Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC)** - RVC V2 Voice Cloning (Cloud/Colab)
|
* ⭐ **[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer
|
||||||
* [Replay](https://www.tryreplay.io/) - RVC Desktop App
|
* [NeuralSVB](https://github.com/MoonInTheRiver/NeuralSVB) - Singing Voice Enhancer
|
||||||
* [Bark with Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning
|
* [Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC) - Voice Cloning
|
||||||
* [RVC_HFv2](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning
|
* [Bark w/ Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning
|
||||||
* [RVC Docs](https://docs.aihub.wtf/) - RVC AI Documentation
|
* [Kits.ai](https://www.kits.ai/) - Voice Cloning
|
||||||
|
* [Retrieval-based-Voice-Conversion](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
|
||||||
|
* [OpenVoice](https://github.com/myshell-ai/OpenVoice) - Voice Cloning / [Web UI](https://huggingface.co/spaces/myshell-ai/OpenVoice)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -6,83 +6,71 @@
|
|||||||
|
|
||||||
# ► Adblocking
|
# ► Adblocking
|
||||||
|
|
||||||
* **Note** - Don't run multiple general adblockers (e.g., uBlock Origin and Adblock Plus) simultaneously to [avoid breakage](https://twitter.com/gorhill/status/1033706103782170625). Combining general adblockers with tools like SponsorBlock is fine.
|
**Note** - Don't run multiple general adblockers like ublock and adblock plus at the same time. Running more than one can cause breakage. This only applies to general adblockers, so running things like ublock and sponsorblock at the same time is fine.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ↪️ **[Spotify Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_spotify_adblockers)**
|
* ↪️ **[Adblock Filters](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_ublock_filters)** / [Test Filters](http://raymondhill.net/ublock/adbox.html)
|
||||||
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
|
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
|
||||||
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
* ↪️ **[Spotify Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_spotify_adblockers)**
|
||||||
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock#installation)** - Adblocker
|
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock#installation)** - Adblocker / [Guide](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) / [Advanced](https://youtu.be/2lisQQmWQkY)
|
||||||
* ⭐ **uBO Resources** - [Report Issues](https://github.com/uBlockOrigin/uAssets/issues) / [Report Hosts](https://github.com/uBlockOrigin/uAssets/discussions/17361) / [Guides](https://www.reddit.com/r/uBlockOrigin/wiki/index/) / [Advanced](https://youtu.be/2lisQQmWQkY) / [Redundant Extensions](https://github.com/arkenfox/user.js/wiki/4.1-Extensions/#-dont-bother)
|
|
||||||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
||||||
* ⭐ **[BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay)** - Hide Website Overlays
|
* ⭐ **[BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay)** - Hide Website Overlays
|
||||||
* ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Play Videos in Ad-Free Player
|
* ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Play Videos in Ad-Free Player
|
||||||
* [uBO Lite](https://github.com/uBlockOrigin/uBOL-home) - MV3 Compatible for Chrome Users / [Note](https://rentry.org/nzvohpzf)
|
|
||||||
* [fadblock](https://github.com/0x48piraj/fadblock) or [Disable YT Video Ads](https://greasyfork.org/en/scripts/32626) - YouTube Adblockers
|
* [fadblock](https://github.com/0x48piraj/fadblock) or [Disable YT Video Ads](https://greasyfork.org/en/scripts/32626) - YouTube Adblockers
|
||||||
* [Ad Blitz](https://ad-blitz.vercel.app/) - Speed Up YouTube Ads instead of Skipping to Support Creators
|
|
||||||
* [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/), [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html) 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) or [PopupBlocker](https://github.com/AdguardTeam/PopupBlocker) - Popup / New Tab Blockers
|
||||||
* [Adguard](https://github.com/AdguardTeam/AdguardBrowserExtension#installation) - Adblocker
|
* [Adguard](https://github.com/AdguardTeam/AdguardBrowserExtension#installation) - Adblocker
|
||||||
|
* [AdNauseam](https://adnauseam.io/) - Adblocker / Fakes Clicks to Confuse Tracking
|
||||||
* [Adblock Tester](https://adblock-tester.com/) or [AdBlocker Test](https://d3ward.github.io/toolz/adblock.html) - Adblocking Tests
|
* [Adblock Tester](https://adblock-tester.com/) or [AdBlocker Test](https://d3ward.github.io/toolz/adblock.html) - Adblocking Tests
|
||||||
* [12ft.io](https://12ft.io/) - Share Ad-Free URLs
|
* [uBO-bypass-yt](https://drhyperion451.github.io/does-uBO-bypass-yt/) - Check if uBlock Filters are bypassing YouTube Anti-Adblock
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Adblock Filters
|
|
||||||
|
|
||||||
* ⭐ **[yokoffing's Recommended Filters](https://github.com/yokoffing/filterlists)**
|
|
||||||
* ⭐ **[LegitimateURLShortener](https://github.com/DandelionSprout/adfilt/blob/master/LegitimateURLShortener.txt)**
|
|
||||||
* ⭐ **[FMHY Filterlist](https://windowsaurora.github.io/FMHYFilterlist/site/index.html)** - Unsafe Sites Filter / [Github](https://github.com/WindowsAurora/FMHYFilterlist/)
|
|
||||||
* [Adbox](http://raymondhill.net/ublock/adbox.html) - Test Filters
|
|
||||||
* [DandelionSprout adlift](https://github.com/DandelionSprout/adfilt)
|
|
||||||
* [Facebook Filters](https://www.reddit.com/r/uBlockOrigin/wiki/solutions#wiki_facebook)
|
|
||||||
* [Clear URLs for uBO](https://github.com/DandelionSprout/adfilt/blob/master/ClearURLs%20for%20uBo/clear_urls_uboified.txt)
|
|
||||||
* [webannoyances](https://github.com/yourduskquibbles/webannoyances)
|
|
||||||
* [NoADS_RU](https://raw.githubusercontent.com/Zalexanninev15/NoADS_RU/main/ads_list.txt)
|
|
||||||
* [Anifiltrs](https://github.com/Karmesinrot/Anifiltrs)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Redirect Bypass
|
## ▷ Redirect Bypass
|
||||||
|
|
||||||
* ⭐ **[Bypass All Shortlinks](https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/)**
|
* ⭐ **[Bypass All Shortlinks](https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/)**
|
||||||
* ⭐ **[bypass.city](https://bypass.city/)**, [2](https://adbypass.org/) / [Userscript](https://bypass.city/how-to-install-userscript) / [Discord](https://discord.com/invite/uMEtrpRvAf)
|
* ⭐ **[bypass.city](https://bypass.city/)**, [2](https://adbypass.org/) / [krnl-and-linkvertise-bypasser](https://web.archive.org/web/20240220163846/https://greasyfork.org/tr/scripts/427869-working-linkvertise-and-krnl-bypasser) / [Discord](https://discord.com/invite/uMEtrpRvAf)
|
||||||
* [FastForward](https://fastforward.team/) / [Discord](https://discord.gg/RSAf7b5njt) / [Note](https://pastebin.com/Gr2AhsE8)
|
* [FastForward](https://fastforward.team/) / [Discord](https://discord.gg/RSAf7b5njt)
|
||||||
|
* [bypass.vip](https://bypass.vip/) / [Discord](https://bypass.vip/discord)
|
||||||
* [AdsBypasser](https://adsbypasser.github.io/) / [2](https://github.com/adsbypasser/adsbypasser)
|
* [AdsBypasser](https://adsbypasser.github.io/) / [2](https://github.com/adsbypasser/adsbypasser)
|
||||||
* [TheBypasser](https://thebypasser.com/)
|
* [TheBypasser](https://thebypasser.com/)
|
||||||
* [Bypass-Links](https://bypass-links.vercel.app) / [GitHub](https://github.com/amitsingh-007/bypass-links)
|
* [Bypass-Links](https://github.com/amitsingh-007/bypass-links)
|
||||||
* [Yuumari](https://yuumari.com/bypass/) / [Extension](https://chromewebstore.google.com/detail/auto-link-bypasser/doiagnjlaingkmdjlbfalakpnphfmnoh) / [Script](https://yuumari.com/m-links/#js-code)
|
* [Yuumari](https://yuumari.com/bypass/) / [Extension](https://chromewebstore.google.com/detail/auto-link-bypasser/doiagnjlaingkmdjlbfalakpnphfmnoh) / [Script](https://yuumari.com/m-links/#js-code)
|
||||||
* [UploadHEaven](https://greasyfork.org/en/scripts/442019)
|
* [UploadHEaven](https://greasyfork.org/en/scripts/442019)
|
||||||
* [Bypass FileCrypt](https://greasyfork.org/en/scripts/403170) - FileCrypt Bypass
|
* [Skip Script](https://greasyfork.org/en/scripts/473661)
|
||||||
|
* [Adbypass.eu](https://adbypass.eu/) - Ad-maven Bypass
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ DNS Adblocking
|
## ▷ DNS Adblocking
|
||||||
|
|
||||||
* **Note** - If your goal is to block browser ads, it's best to just stick with uBlock Origin, as additional filters can cause conflicts or anti-adblock.
|
* **Note** - If your goal is to block browser ads, it's best to just stick with uBlock Origin, as additional filters can cause conflicts or antiadblock.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* 🌐 **[DNS Providers](https://adguard-dns.io/kb/general/dns-providers/)** - DNS Provider Index
|
* 🌐 **[DNS Providers](https://adguard-dns.io/kb/general/dns-providers/)** - DNS Provider Index
|
||||||
* ↪️ **[DNS Filters / Blocklists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)**
|
* ↪️ **[DNS Filters](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)**
|
||||||
* ↪️ **[Free DNS Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_servers)**
|
* ↪️ **[Free DNS Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_servers)**
|
||||||
* ⭐ **[Pi-Hole](https://pi-hole.net/)** - DNS Adblocking / Self-Hosted
|
|
||||||
* ⭐ **Pi-Hole Tools** - [Install Script](https://github.com/DesktopECHO/Pi-Hole-for-WSL1) / [Filter](https://firebog.net/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/alanine/) / [Chrome](https://chromewebstore.google.com/detail/alanine/lohlpbknpcngpjifmofkidennikljlfi) / [Docker](https://hub.docker.com/repository/docker/kulda22/alanine) / [Antitelemetry](https://github.com/MoralCode/pihole-antitelemetry)
|
|
||||||
* ⭐ **[AdGuard Home](https://github.com/AdguardTeam/AdGuardHome/wiki/Docker)** - DNS Adblocking / Self-Hosted / [Setup](https://github.com/klutchell/balena-adguard) / [Filters](https://github.com/hl2guide/AdGuard-Home-Whitelist)
|
* ⭐ **[AdGuard Home](https://github.com/AdguardTeam/AdGuardHome/wiki/Docker)** - DNS Adblocking / Self-Hosted / [Setup](https://github.com/klutchell/balena-adguard) / [Filters](https://github.com/hl2guide/AdGuard-Home-Whitelist)
|
||||||
* ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking / [Extension](https://mullvad.net/en/download/browser/extension)
|
* ⭐ **[AhaDNS](https://ahadns.com/)** - DNS Adblocking
|
||||||
* [YogaDNS](https://yogadns.com/) - Custom DNS Client
|
* ⭐ **[BlahDNS](https://blahdns.com/)** - DNS Adblocking
|
||||||
* [ControlD](https://controld.com/free-dns) - DNS Manager
|
* ⭐ **[YogaDNS](https://yogadns.com/)** - DNS Adblocking
|
||||||
* [NextDNS](https://nextdns.io) - DNS Adblocking / [Guide](https://github.com/yokoffing/NextDNS-Config) / [Video](https://youtu.be/WUG57ynLb8I)
|
* ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking
|
||||||
* [BlahDNS](https://blahdns.com/) - DNS Adblocking
|
* ⭐ **[serverless-dns](https://github.com/serverless-dns/serverless-dns)** - Serverless DNS
|
||||||
|
* [ControlD](https://controld.com/) - DNS Manager
|
||||||
* [Adguard DNS](https://adguard-dns.io/) - DNS Adblocking
|
* [Adguard DNS](https://adguard-dns.io/) - DNS Adblocking
|
||||||
* [AlternateDNS](https://alternate-dns.com/index.php) - DNS Adblocking
|
* [AlternateDNS](https://alternate-dns.com/index.php) - DNS Adblocking
|
||||||
* [LibreDNS](https://libredns.gr/) - DNS Adblocking
|
* [LibreDNS](https://libredns.gr/) - DNS Adblocking
|
||||||
* [Diversion](https://diversion.ch/) - DNS Adblocking
|
* [Diversion](https://diversion.ch/) - DNS Adblocking
|
||||||
* [NxFilter](https://nxfilter.org/) - DNS Adblocking
|
* [NxFilter](https://nxfilter.org/) - DNS Adblocking
|
||||||
* [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/) - DNS Adblocking
|
* [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/) - DNS Adblocking
|
||||||
|
* [Pi-Hole](https://pi-hole.net/) - DNS Adblocking / Self-Hosted
|
||||||
|
* Pi-Hole Tools - [Install Script](https://github.com/DesktopECHO/Pi-Hole-for-WSL1) / [Filter](https://firebog.net/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/alanine/) / [Chrome](https://chromewebstore.google.com/detail/alanine/lohlpbknpcngpjifmofkidennikljlfi) / [Docker](https://hub.docker.com/repository/docker/kulda22/alanine) / [Antitelemetry](https://github.com/MoralCode/pihole-antitelemetry)
|
||||||
* [TBlock](https://tblock.me/) - DNS Adblocking / [Filters](https://codeberg.org/tblock/filters)
|
* [TBlock](https://tblock.me/) - DNS Adblocking / [Filters](https://codeberg.org/tblock/filters)
|
||||||
* [dog](https://dns.lookup.dog/) - DNS CLI
|
* [dog](https://dns.lookup.dog/) - DNS CLI
|
||||||
* [Stubby](https://dnsprivacy.org/dns_privacy_daemon_-_stubby/) - DNS Stub Resolver
|
* [Stubby](https://github.com/getdnsapi/stubby) - DNS Stub Resolver
|
||||||
|
* [NextDNS](https://nextdns.io) - DNS Adblocking / [Leak Warning](https://redd.it/jt28e8) / [Guide](https://github.com/yokoffing/NextDNS-Config) / [Video](https://youtu.be/WUG57ynLb8I)
|
||||||
|
* [DuckDNS](https://www.duckdns.org/), [FreeDNS](https://freedns.afraid.org/), [NoIP](https://www.noip.com/) or [Desec](https://desec.io/) - Dynamic DNS Service
|
||||||
* [Phishing Army](https://phishing.army/) - DNS Phishing Blocklist
|
* [Phishing Army](https://phishing.army/) - DNS Phishing Blocklist
|
||||||
* [BIND](https://gitlab.isc.org/isc-projects/bind9) - Portable DNS Protocol
|
* [BIND](https://gitlab.isc.org/isc-projects/bind9) - Portable DNS Protocol
|
||||||
* [Maza](https://maza-ad-blocking.andros.dev/) - Local DNS Adblocking
|
* [Maza](https://maza-ad-blocking.andros.dev/) - Local DNS Adblocking
|
||||||
@ -111,55 +99,74 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Antivirus / Malware
|
# ► Antivirus
|
||||||
|
|
||||||
* 🌐 **[/r/Antivirus Index](https://www.reddit.com/r/antivirus/wiki/index/)** - Antivirus Tools Index
|
|
||||||
* 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources
|
* 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources
|
||||||
|
* 🌐 **[Awesome Pen Testing](https://github.com/enaqx/awesome-pentest)** - Penetration Testing Resources
|
||||||
|
* 🌐 **[The Second Opinion](https://rentry.co/thesecondopinion)** - Portable Malware Scanners / Removal Tools
|
||||||
|
* ↪️ **[Virus File Scanners](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_scan_files)**
|
||||||
* ↪️ **[Site Legitimacy Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_site_legitimacy_check)**
|
* ↪️ **[Site Legitimacy Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_site_legitimacy_check)**
|
||||||
* ⭐ **[How to Avoid Malware](https://www.reddit.com/r/Piracy/wiki/browsing_and_downloading_guide)** - Malware Avoidance Guide
|
* ⭐ **[How to Avoid Malware](https://www.reddit.com/r/Piracy/wiki/browsing_and_downloading_guide)** - Malware Avoidance Guide
|
||||||
* ⭐ **[Sandboxie Plus](https://sandboxie-plus.com/)** / [Guide](https://rentry.co/sandboxie-guide), [Windows Sandbox](https://learn.microsoft.com/en-us/windows/security/application-security/application-isolation/windows-sandbox/windows-sandbox-overview) or [Virtual Machines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_virtual_machines) - Sandbox Environments
|
* ⭐ **[Guide4VirusTotal](https://rentry.org/Guide4VirusTotal)** - Virus Scan Results Guide / [Source](https://www.reddit.com/r/Piracy/comments/n62da6/comment/gx4whhz/)
|
||||||
|
* ⭐ **[Sandboxie Plus](https://sandboxie-plus.com/)**, [Windows Sandbox](https://learn.microsoft.com/en-us/windows/security/application-security/application-isolation/windows-sandbox/windows-sandbox-overview) or [Virtual Machines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_virtual_machines) - Sandbox Environments / [Guide](https://rentry.co/sandboxie-guide)
|
||||||
* ⭐ **[AdwCleaner](https://www.malwarebytes.com/adwcleaner/)** - Anti-Adware
|
* ⭐ **[AdwCleaner](https://www.malwarebytes.com/adwcleaner/)** - Anti-Adware
|
||||||
* ⭐ **[Malwarebytes Premium](https://rentry.co/fmhybase64#malwarebytes-prem)** - Antivirus
|
* ⭐ **[Malwarebytes Premium](https://rentry.co/fmhybase64#malwarebytes-prem)** - Antivirus
|
||||||
* ⭐ **[Security / Antivirus Multireddit](https://www.reddit.com/user/goretsky/m/security/)** - Reddit Communities
|
* ⭐ **[Security / Antivirus Multireddit](https://www.reddit.com/user/goretsky/m/security/)**
|
||||||
* [BleepingComputer Forums](https://www.bleepingcomputer.com/forums/f/22/virus-trojan-spyware-and-malware-removal-help/), [Malwarebytes Forums](https://forums.malwarebytes.com/forum/7-windows-malware-removal-help-support/) or [Sysnative Forums](https://www.sysnative.com/forums/forums/security-arena.66/) - Malware Removal Forums / [Note](https://pastebin.com/0mrmPXgz)
|
* [BleepingComputer Forums](https://www.bleepingcomputer.com/forums/f/22/virus-trojan-spyware-and-malware-removal-help/), [Malwarebytes Forums](https://forums.malwarebytes.com/forum/7-windows-malware-removal-help-support/) or [Sysnative Forums](https://www.sysnative.com/forums/forums/security-arena.66/) - Malware Removal Help Forums / [Note](https://pastebin.com/0mrmPXgz)
|
||||||
* [ESET](https://rentry.co/FMHYBase64#eset) - Antivirus
|
* [RevealQR](https://revealqr.app/) - Scan QR Codes
|
||||||
* [Dangerzone](https://dangerzone.rocks/) / [GitHub](https://github.com/freedomofpress/dangerzone) - Convert dangerous PDFs to safe PDFs
|
* [Pi.Alert](https://github.com/pucherot/Pi.Alert), [Zeek](https://zeek.org/), [Nmap](https://nmap.org/) / [Results](https://nmap.org/ndiff/), [Kismet](https://www.kismetwireless.net/), [ntop](https://www.ntop.org/), [Sniffnet](https://www.sniffnet.net/) or [Rotty](https://github.com/RoseSecurity/Rotty.py) - Network Monitors
|
||||||
* [ANY.RUN](https://any.run/), [Triage](https://tria.ge/) or [Cuckoo](https://cuckoo.cert.ee/) - Online Sandboxes
|
* [Waircut](https://sourceforge.net/projects/waircut/) - WPS Network Monitor
|
||||||
* [PE-sieve](https://github.com/hasherezade/pe-sieve) - Process Scanner
|
* [Autoruns](https://learn.microsoft.com/en-us/sysinternals/downloads/autoruns) - Change Startup Programs
|
||||||
* [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Ransomware Decryption Tools
|
* [ESET Keys](https://rentry.co/FMHYBase64#eset-keys-generators) - ESET Antivirus Key Generators
|
||||||
|
* [Emergency Kit](https://www.emsisoft.com/en/home/emergencykit/) - No Install Required Antivirus
|
||||||
|
* [Should I Remove It?](https://www.shouldiremoveit.com/) - Easily Find & Remove Adware, Spyware etc.
|
||||||
|
* [VT4Browsers](https://support.virustotal.com/hc/en-us/articles/115002700745-Browser-Extensions) - Easily Scan Downloads
|
||||||
|
* [Safety Scanner](https://docs.microsoft.com/en-us/windows/security/threat-protection/intelligence/safety-scanner-download) - Malware Remover
|
||||||
|
* [Al-Khaser](https://github.com/LordNoteworthy/al-khaser) - Anti-Malware Stress Test
|
||||||
|
* [WireShark](https://www.wireshark.org/) - Network Protocol Analyzer / [Profiles](https://github.com/amwalding/wireshark_profiles)
|
||||||
|
* [Termshark](https://termshark.io/) - PCAP / Network Analysis
|
||||||
|
* [Phish.ly](https://phish.ly/) - Scan Suspicious Emails
|
||||||
|
* [Dangerzone](https://dangerzone.rocks/) - Convert dangerous PDF to safe PDF
|
||||||
|
* [CVE Details](https://www.cvedetails.com/) - CVE Details
|
||||||
|
* [ZScaler](https://zulu.zscaler.com/), [Talos](https://talosintelligence.com/), [Trend Micro](https://global.sitesafety.trendmicro.com/) or [ScamRate](https://www.scamrate.com/) - Check Website Safety
|
||||||
|
* [BitcoinWhosWho](https://www.bitcoinwhoswho.com/) - Bitcoin Address Scanner
|
||||||
|
* [Virus Checker](https://add0n.com/virus-checker.html) - Virus Check for Downloads
|
||||||
|
* [Bad Websites](https://github.com/elbkr/bad-websites) - Phishing Site Index for Bots
|
||||||
|
* [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Bypass Ransomware Attacks
|
||||||
|
* [Ransomwhere](https://ransomwhe.re/) - Ransomware Tracker
|
||||||
* [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool
|
* [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool
|
||||||
* [ConfigureDefender](https://github.com/AndyFul/ConfigureDefender) - Configure Windows Defender Settings
|
|
||||||
* [DefenderUI](https://www.defenderui.com/) - Improved Windows Defender UI
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ File Scanners
|
|
||||||
|
|
||||||
* 🌐 **[The Second Opinion](https://rentry.co/thesecondopinion)** - Portable Malware Scanners / Removal Tools
|
|
||||||
* ⭐ **[VirusTotal](https://www.virustotal.com/)** / [Scan Results Guide](https://rentry.co/piracy-faq-virustotal), [2](https://rentry.co/VTGuide) or **[Hybrid Analysis](https://hybrid-analysis.com/)** - Online File Analyzer
|
|
||||||
* ⭐ **VirusTotal Tools** - [CLI](https://github.com/VirusTotal/vt-cli) / [Telegram Bot](https://t.me/virus_total_scan_bot) / [Uploader](https://github.com/SamuelTulach/VirusTotalUploader) / [Lite Version](https://www.virustotal.com/old-browsers/)
|
|
||||||
* [Microsoft Safety Scanner](https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download) or [Emsisoft Emergency Kit](https://www.emsisoft.com/en/home/emergencykit/) - On-demand AV Scanners
|
|
||||||
* [Manalyzer](https://manalyzer.org/) - PE File Scanner
|
|
||||||
* [YARA](https://virustotal.github.io/yara/) - Malware Identification Tool
|
* [YARA](https://virustotal.github.io/yara/) - Malware Identification Tool
|
||||||
* [Winitor](https://www.winitor.com/) - EXE Malware Assessment
|
* [Winitor](https://www.winitor.com/) - EXE Malware Assessment
|
||||||
* [pyWhat](https://github.com/bee-san/pyWhat) - Identify Anything
|
* [FRST Tutorial](https://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/) - Malware Analysis Tool / [Guide](https://www.bleepingcomputer.com/forums/t/781976/)
|
||||||
* [Grype](https://github.com/anchore/grype) - Container Images Vulnerability Scanner
|
* [Any Run](https://app.any.run/) - Malware Analysis Sandbox
|
||||||
* [Malware Initial Assessment](https://www.winitor.com/) - Local Analysis Tool
|
* [Package Analysis](https://github.com/ossf/package-analysis) - Open Source Package Analysis
|
||||||
* [Jotti](https://virusscan.jotti.org/en) - Online File Scanner
|
* [Manalyzer](https://manalyzer.org/) - PE File Scanner
|
||||||
* [Farbar](https://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/) / [Guide](https://www.bleepingcomputer.com/forums/t/781976/) - Local File Scanner
|
* [PyWhat](https://github.com/bee-san/pyWhat) - .pcap File Scanner
|
||||||
|
* [Grype](https://github.com/anchore/grype) - Docker Container Vulnerability Scanner
|
||||||
|
* [Defender Control](https://www.sordum.org/9480/defender-control-v2-1/) - Enable / Disable Windows Defender
|
||||||
|
* [ConfigureDefender](https://github.com/AndyFul/ConfigureDefender) - Configure Windows Defender Settings
|
||||||
|
* [DefenderUI](https://www.defenderui.com/) - Improved Windows Defender UI
|
||||||
|
* [Antivirus Removal Tool](https://antivirus-removal-tool.com/) - Antivirus Software Removal Tool
|
||||||
|
* [Malware Search+++](https://addons.mozilla.org/en-US/firefox/addon/malware-search-plusplusplus/) - Malware Search Extension
|
||||||
|
* [Malware Analysis Search](https://cse.google.com/cse?cx=011750002002865445766%3Apc60zx1rliu)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Privacy
|
# ► Privacy
|
||||||
|
|
||||||
|
* 🌐 **[Awesome Cryptography](https://github.com/sobolevn/awesome-cryptography)** - Cryptography Resources
|
||||||
* 🌐 **[Awesome Vehicle Security](https://github.com/jaredthecoder/awesome-vehicle-security)** - Vehicle Security Resources
|
* 🌐 **[Awesome Vehicle Security](https://github.com/jaredthecoder/awesome-vehicle-security)** - Vehicle Security Resources
|
||||||
* ↪️ **[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)**
|
||||||
|
* ↪️ **[Password Data Breach Detection](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_password_data_breach_check)**
|
||||||
* ↪️ **[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)**
|
||||||
* ⭐ **[Privacy.Sexy](https://privacy.sexy/)** - Privacy Scripts
|
* ⭐ **[Privacy.Sexy](https://privacy.sexy/)** - Privacy Scripts
|
||||||
|
* ⭐ **[Password Strength Chart](https://i.ibb.co/vZdqMvm/6728c7ef02e9.png)**
|
||||||
* ⭐ **[Tails](https://tails.net/)**, [whonix](https://www.whonix.org/) or [Qubes](https://www.qubes-os.org/) - Privacy-Based Operating Systems
|
* ⭐ **[Tails](https://tails.net/)**, [whonix](https://www.whonix.org/) or [Qubes](https://www.qubes-os.org/) - Privacy-Based Operating Systems
|
||||||
* [ShutUp10](https://www.oo-software.com/en/shutup10), [W10Privacy](https://www.w10privacy.de/english-home/) or [private-secure-windows](https://github.com/troennes/private-secure-windows) - Antispy Tools
|
* [ShutUp10](https://www.oo-software.com/en/shutup10), [W10Privacy](https://www.w10privacy.de/english-home/) or [private-secure-windows](https://github.com/troennes/private-secure-windows) - Antispy Tools
|
||||||
* [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89), [2](https://rentry.co/telemetry) - Disable Windows 10/11 Telemetry
|
* [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89) - Disable Windows 10/11 Telemetry
|
||||||
|
* [PasswordMonster](https://www.passwordmonster.com/) - Password Strength Check
|
||||||
|
* [PasswordsGenerator](https://passwordsgenerator.net/) - Secure Password Generator
|
||||||
* [Frigate](https://frigate.video/), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) - Security Camera Systems
|
* [Frigate](https://frigate.video/), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) - 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)
|
||||||
* [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
|
||||||
@ -172,11 +179,14 @@
|
|||||||
* [Paper Age](https://github.com/matiaskorhonen/paper-age) - Create Paper Backups of Secrets
|
* [Paper Age](https://github.com/matiaskorhonen/paper-age) - Create Paper Backups of Secrets
|
||||||
* [USBKill](https://github.com/hephaest0s/usbkill) - Anti-Forensic USB Killswitch
|
* [USBKill](https://github.com/hephaest0s/usbkill) - Anti-Forensic USB Killswitch
|
||||||
* [HiddenVM](https://github.com/aforensics/HiddenVM) - Run an Oracle VM on TailsOS
|
* [HiddenVM](https://github.com/aforensics/HiddenVM) - Run an Oracle VM on TailsOS
|
||||||
|
* [V2Ray](https://v2ray.com/en/), [V2Fly](https://www.v2fly.org/), [V2RayN](https://github.com/freefq/free) or [v2ray-core](https://github.com/v2fly/v2ray-core) - DIY Privacy Network
|
||||||
|
* V2Ray Tools - [GUI](https://github.com/2dust/v2rayN), [2](https://github.com/Qv2ray/Qv2ray) / [GeoIP](https://github.com/Loyalsoldier/geoip) / [Free Server](https://fanqiang.network/) / [Cloudflare Scan](https://cloudflare-v2ray.vercel.app/)/ [Tutorial](https://github.com/freefq/tutorials)
|
||||||
* [FreeCarrierLookup](https://www.freecarrierlookup.com/) - Get Telephone Carrier Data
|
* [FreeCarrierLookup](https://www.freecarrierlookup.com/) - Get Telephone Carrier Data
|
||||||
* [/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
|
* [/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
|
||||||
* [Facebook Doc Stories](https://docs.google.com/document/d/1QYqmJsifBjf_xA23Ea7AdeMFyjGWaF_dvhi5EZdNUf4/edit) - Facebook Malpractices Index
|
* [Facebook Doc Stories](https://docs.google.com/document/d/1QYqmJsifBjf_xA23Ea7AdeMFyjGWaF_dvhi5EZdNUf4/edit) - Facebook Malpractices Index
|
||||||
* [Privacy.com](https://privacy.com/) - Make Secure Payments / US only
|
* [Privacy.com](https://privacy.com/) - Make Secure Payments / US only
|
||||||
* [image-scrubber](https://everestpipkin.github.io/image-scrubber) / [GitHub](https://github.com/everestpipkin/image-scrubber) - Anonymize Protest Photos
|
* [OTPClient](https://github.com/paolostivanin/OTPClient) - One-Time Password Client
|
||||||
|
* [image-scrubber](https://github.com/everestpipkin/image-scrubber) - Anonymize Protest Photos
|
||||||
* [Mobile Verification Toolkit](https://www.privacyguides.org/en/device-integrity/) - Test for Potential Compromises on Android / iOS
|
* [Mobile Verification Toolkit](https://www.privacyguides.org/en/device-integrity/) - Test for Potential Compromises on Android / iOS
|
||||||
* [GoFOSS](https://gofoss.net/) - Why You Should Use FOSS Alternatives
|
* [GoFOSS](https://gofoss.net/) - Why You Should Use FOSS Alternatives
|
||||||
* [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents
|
* [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents
|
||||||
@ -185,34 +195,24 @@
|
|||||||
|
|
||||||
## ▷ Privacy Indexes
|
## ▷ Privacy Indexes
|
||||||
|
|
||||||
* ⭐ **[Privacy Guides](https://www.privacyguides.org/)** - Educational Guide
|
* ⭐ **[Awesome Privacy](https://awesome-privacy.xyz/)** / [2](https://github.com/pluja/awesome-privacy) - List of Privacy Software & Services
|
||||||
* ⭐ **[Digital Defense](https://digital-defense.io/)** - Personal Checklist for Privacy & Security
|
* ⭐ **[Digital Defense](https://digital-defense.io/)** - Personal Checklist for Privacy & Security
|
||||||
|
* ⭐ **[The Hitchhiker’s Guide](https://anonymousplanet.org/)** - Extensive Guide to Online Anonymity
|
||||||
|
* ⭐ **[Privacy Guides](https://www.privacyguides.org/)** - Educational Guide
|
||||||
* ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide
|
* ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide
|
||||||
* ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide
|
* ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide
|
||||||
* [Lissy93's Awesome Privacy](https://awesome-privacy.xyz/) / [GitHub](https://github.com/lissy93/awesome-privacy) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - List of Privacy Software & Services
|
|
||||||
* [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide
|
* [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide
|
||||||
* [Ken Harris](https://cyber.kenharris.io/) - Educational Guide
|
* [Ken Harris](https://cyber.kenharris.io/) - Educational Guide
|
||||||
* [AvoidTheHack](https://avoidthehack.com/) - Educational Blog
|
* [AvoidTheHack](https://avoidthehack.com/) - Educational Blog
|
||||||
|
* [Privacy Tools List](https://privacytoolslist.com/) - Privacy Tools
|
||||||
* [Hostux](https://hostux.network/) - Privacy Tools
|
* [Hostux](https://hostux.network/) - Privacy Tools
|
||||||
* [The Hitchhiker’s Guide](https://anonymousplanet.org/) - Extensive Guide to Online Anonymity
|
|
||||||
* [Privacy Settings](https://github.com/StellarSand/privacy-settings) - Privacy Setting Guides
|
* [Privacy Settings](https://github.com/StellarSand/privacy-settings) - Privacy Setting Guides
|
||||||
|
* [Alternative Internet](https://github.com/redecentralize/alternative-internet) - Collection of Decentralised Tools
|
||||||
* [EncryptedList](https://encryptedlist.xyz/) - List of Encrypted Services/Apps
|
* [EncryptedList](https://encryptedlist.xyz/) - List of Encrypted Services/Apps
|
||||||
* [ProductivePrivacy](https://productiveprivacy.com/) - Privacy-Focused Productivity Apps
|
* [ProductivePrivacy](https://productiveprivacy.com/) - Privacy-Focused Productivity Apps
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Network Security
|
|
||||||
|
|
||||||
* ⭐ **[simplewall](https://github.com/henrypp/simplewall)** - Firewall / Network Monitor
|
|
||||||
* ⭐ **[Fort](https://github.com/tnodir/fort)** - Firewall
|
|
||||||
* ⭐ **[Safing Portmaster](https://safing.io/)** - Network Monitor / DNS Resolver / Firewall
|
|
||||||
* [V2Ray](https://v2ray.com/en/), [V2Fly](https://www.v2fly.org/), [V2RayN](https://github.com/freefq/free) or [v2ray-core](https://github.com/v2fly/v2ray-core) - DIY Privacy Network
|
|
||||||
* V2Ray Tools - [GUI](https://github.com/2dust/v2rayN), [2](https://github.com/Qv2ray/Qv2ray) / [GeoIP](https://github.com/Loyalsoldier/geoip) / [Free Server](https://fanqiang.network/) / [Cloudflare Scan](https://cloudflare-v2ray.vercel.app/) / [Tutorial](https://github.com/freefq/tutorials)
|
|
||||||
* [WFC](https://www.binisoft.org/wfc.php) - Firewall
|
|
||||||
* [Tinywall](https://tinywall.pados.hu/) - Lightweight Firewall
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ [Linux Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_linux_adblock_.2F_privacy)
|
## ▷ [Linux Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_linux_adblock_.2F_privacy)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -231,112 +231,78 @@
|
|||||||
|
|
||||||
# ► Web Privacy
|
# ► Web Privacy
|
||||||
|
|
||||||
* 🌐 **[Google Alt List](https://www.techspot.com/article/2752-all-google-alternatives/)**, [/r/DeGoogle](https://www.reddit.com/r/degoogle), [Degoogle](https://tycrek.github.io/degoogle/) or [No More Google](https://nomoregoogle.com/) - Google App Alternatives
|
* 🌐 **[Awesome Web Security](https://github.com/qazbnm456/awesome-web-security)** - Web Security Resources
|
||||||
* ↪️ **[Chat Service Comparisons](https://docs.google.com/spreadsheets/u/0/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU)**
|
* 🌐 **[Awesome Anti Censorship](https://github.com/danoctavian/awesome-anti-censorship)** or [Geneva](https://geneva.cs.umd.edu/), - Anti-Censorship Resources
|
||||||
|
* 🌐 **[de-google](https://www.reddit.com/r/privacy/wiki/de-google)**, [De-google-ify](https://degooglisons-internet.org/en/), [Degoogle](https://github.com/tycrek/degoogle), [Google Alt List](https://www.techspot.com/news/80729-complete-list-alternatives-all-google-products.html), [/r/DeGoogle](https://www.reddit.com/r/degoogle) or [No More Google](https://nomoregoogle.com/) - Google App Alternatives
|
||||||
|
* 🌐 **[Awesome I2P](https://github.com/mikalv/awesome-i2p)** - I2P Resources
|
||||||
* ↪️ **[Encrypted Messaging Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_messengers)** / [2](https://docs.google.com/spreadsheets/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU) / [3](https://www.securemessagingapps.com/)
|
* ↪️ **[Encrypted Messaging Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_messengers)** / [2](https://docs.google.com/spreadsheets/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU) / [3](https://www.securemessagingapps.com/)
|
||||||
* ↪️ **[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)**
|
|
||||||
* ⭐ **[PrivacySpy](https://privacyspy.org/)** or [Terms of Service; Didn't Read](https://tosdr.org/) - Sites Privacy Policies
|
* ⭐ **[PrivacySpy](https://privacyspy.org/)** or [Terms of Service; Didn't Read](https://tosdr.org/) - Sites Privacy Policies
|
||||||
* ⭐ **[JustGetMyData](https://justgetmydata.com/)** - Links to Obtain Your Data from Websites
|
* ⭐ **[JustGetMyData](https://justgetmydata.com/)** - Links to Obtain Your Data from Websites
|
||||||
|
* ⭐ **[simplewall](https://github.com/henrypp/simplewall)**, [WFC](https://www.binisoft.org/wfc.php), [pfSense](https://www.pfsense.org/) / [How-to](https://youtu.be/am7xT-zU1Q0) or [Tinywall](https://tinywall.pados.hu/) - Firewall / Network Monitors
|
||||||
* ⭐ **[Cryptomator](https://cryptomator.org/)**, [Boxcryptor](https://www.boxcryptor.com/en/) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) - Cloud File Encryption
|
* ⭐ **[Cryptomator](https://cryptomator.org/)**, [Boxcryptor](https://www.boxcryptor.com/en/) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) - Cloud File Encryption
|
||||||
* [FirefoxMonitor](https://monitor.firefox.com/) - Data Breach Check
|
* ⭐ **[Have I been Pwned?](https://haveibeenpwned.com/)** or [GhostProject](https://ghostproject.fr/) - Monitor Email Breaches
|
||||||
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) or [leakpeek](https://leakpeek.com/) - Data Breach Search Engines
|
* ⭐ **[Proton Mail](https://proton.me/mail)** - Encrypted Email
|
||||||
* [JustDeleteMe](https://justdeleteme.xyz/) - Find / Terminate Old Accounts
|
* [Tuta](https://tuta.com/) - Encrypted Email
|
||||||
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
|
* [How Secure is My Password](https://www.security.org/how-secure-is-my-password/) - Password Strength Checker
|
||||||
* [DNS Jumper](https://www.majorgeeks.com/files/details/dns_jumper.html) - DNS Switcher
|
* [h8Mail](https://github.com/khast3x/h8mail) or [FirefoxMonitor](https://monitor.firefox.com/) - Data Breach Check
|
||||||
* [Element](https://element.io/), [linphone](https://www.linphone.org/), [Jami](https://jami.net/), [Tox](https://tox.chat/) or [Bitmask](https://bitmask.net/) - Encrypted Messaging / Video Calls
|
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://github.com/trufflesecurity/trufflehog), [Database Search](https://search.0t.rocks/) or [leakpeek](https://leakpeek.com/) - Data Breach Search Engines
|
||||||
|
* [EmailPrivacyTester](https://www.emailprivacytester.com/) - Email Privacy Test
|
||||||
|
* [OpenPGP](https://www.openpgp.org/) - Email Encryption / [Guide](https://riseup.net/en/security/message-security/openpgp/best-practices)
|
||||||
|
* [/r/emailprivacy](https://reddit.com/r/emailprivacy) - Discussion of Email Privacy / Security / Anonymity
|
||||||
|
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P)
|
||||||
|
* [JustDeleteMe](https://justdeleteme.xyz/) - Find / Terminate Old Accounts
|
||||||
|
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [PhishStats](https://phishstats.info/) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
|
||||||
|
* [encrypted-sni](https://www.cloudflare.com/ssl/encrypted-sni/) - Check Network / Browser Security
|
||||||
|
* [Element](https://element.io/), [qTox](https://qtox.github.io/), [Utopia](https://u.is/en/), [linphone](https://www.linphone.org/), [Jami](https://jami.net/), [Tox](https://tox.chat/), [Bitmask](https://bitmask.net/) or [Wickr](https://wickr.com/) - Encrypted Messaging / Video Calls
|
||||||
* [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption
|
* [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption
|
||||||
|
* [Hexchat](https://hexchat.github.io/) - Private IRC Client
|
||||||
* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat / [Info](https://shazow.net/posts/ssh-how-does-it-even/)
|
* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat / [Info](https://shazow.net/posts/ssh-how-does-it-even/)
|
||||||
* [GPGTools](https://gpgtools.org/) - Encrypt & Sign Data / Communications
|
* [GPGTools](https://gpgtools.org/) - Encrypt & Sign Data / Communications
|
||||||
* [PeerTube](https://joinpeertube.org/) - Decentralized Video Hosting / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_peertube_tools)
|
* [PeerTube](https://joinpeertube.org/) / [2](https://search.joinpeertube.org/) / [3](https://sepiasearch.org/) - Decentralized Video Hosting / [Instances](https://instances.joinpeertube.org/instances)
|
||||||
* [Undiscord](https://victornpb.github.io/undiscord)- Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
|
* [Undiscord](https://github.com/victornpb/undiscord), [discord-delete](https://github.com/cedws/discord-delete), or [QuickDeleteMessages](https://u.nu/9i9jk) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
|
||||||
|
* [Social Amnesia](https://github.com/Nick-Gottschlich/Social-Amnesia) - Reddit / Twitter Auto Post Delete
|
||||||
* [delete-likes-from-twitter](https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d) - Delete Twitter Likes / Favorites
|
* [delete-likes-from-twitter](https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d) - Delete Twitter Likes / Favorites
|
||||||
|
* [Unfavinator](http://unfavinator.com/) - Delete Twitter Favorites
|
||||||
|
* [TweetDelete](https://tweetdelete.net/) or [TweetEraser](https://www.tweeteraser.com/) - Delete Twitter Posts in Bulk
|
||||||
* [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
|
* [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
|
||||||
* [telegram-delete-all-messages](https://github.com/gurland/telegram-delete-all-messages) - Delete Telegram Message
|
|
||||||
* [Freenet Project](https://freenetproject.org/) - Browse / Publish Freenet Sites
|
* [Freenet Project](https://freenetproject.org/) - Browse / Publish Freenet Sites
|
||||||
* [Mat2](https://0xacab.org/jvoisin/mat2) / [Desktop](https://metadatacleaner.romainvigier.fr/), [2](https://0xacab.org/jvoisin/mat2-web), [metadata-cleaner](https://gitlab.com/rmnvgr/metadata-cleaner) - Remove Metadata from Files
|
* [Mat2](https://0xacab.org/jvoisin/mat2) / [Desktop](https://metadatacleaner.romainvigier.fr/), [2](https://0xacab.org/jvoisin/mat2-web), [metadata-cleaner](https://gitlab.com/rmnvgr/metadata-cleaner) - Remove Metadata from Files
|
||||||
|
* [SecLists](https://seclists.org/) - Security Mailing List Archive
|
||||||
|
* [Yggdrasil](https://yggdrasil-network.github.io/), [2](https://github.com/yggdrasil-network) - IPv6 Network / [yggdrasil-go](https://github.com/yggdrasil-network/yggdrasil-go/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Browser Privacy
|
## ▷ Browser Privacy
|
||||||
|
|
||||||
* 🌐 **[Awesome I2P](https://github.com/mikalv/awesome-i2p)** - I2P Resources
|
* ⭐ **[Tor Browser](https://www.torproject.org/)** - Onion-Routed Browser / [Default Gateway](https://github.com/htrgouvea/nipe)
|
||||||
* ↪️ **[Browser Comparisons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25BA_browser_tools)**
|
* ⭐ **[Mullvad Browser](https://mullvad.net/en/browser)** - Tor Browser Fork (w/o Tor network)
|
||||||
* ⭐ **[Tor Browser](https://www.torproject.org/)** - Onion-Routed Browser / [Gitlab](https://gitlab.torproject.org/tpo/applications/tor-browser)
|
* ⭐ **[arkenfox](https://github.com/arkenfox/user.js)**- Firefox Privacy Tweak / [Video](https://youtu.be/F7-bW2y6lcI)
|
||||||
* ⭐ **[Mullvad Browser](https://mullvad.net/en/browser)** - Tor Browser Fork (without Tor network)
|
* [Librewolf](https://librewolf.net/)- Pre-tweaked Firefox Fork / [Use Auto-Updater](https://github.com/ltguillaume/librewolf-winupdater)
|
||||||
* ⭐ **[arkenfox](https://github.com/arkenfox/user.js)** - Firefox Privacy Tweak / [Video](https://youtu.be/F7-bW2y6lcI)
|
* [CookieStatus](https://www.cookiestatus.com/) or [PrivacyTests](https://privacytests.org/) - Browser Tracking Protection Comparisons
|
||||||
* [Librewolf](https://librewolf.net/) - Pre-tweaked Firefox Fork / [Use Auto-Updater](https://github.com/ltguillaume/librewolf-winupdater)
|
* [Fingerprint Suite](https://github.com/apify/fingerprint-suite) - Browser Fingerprinting Tools / Scraping Anonymization
|
||||||
* [Brave](https://brave.com/) - Privacy-Focused Browser
|
|
||||||
* [CookieStatus](https://www.cookiestatus.com/) - Browser Tracking Protection Comparisons
|
|
||||||
* [Encrypted SNI](https://www.cloudflare.com/ssl/encrypted-sni/) - Cloudflare Browser Check
|
|
||||||
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P)
|
|
||||||
* [Whack](https://lcamtuf.coredump.cx/whack/) or [Earthling](https://earthlng.github.io/testpages/visited_links.html) - Browser History Leak Example Games
|
* [Whack](https://lcamtuf.coredump.cx/whack/) or [Earthling](https://earthlng.github.io/testpages/visited_links.html) - Browser History Leak Example Games
|
||||||
* [SSL Labs](https://clienttest.ssllabs.com:8443/ssltest/viewMyClient.html) - SSL/TLS Browser Capabilities Test
|
* [SSL Labs](https://clienttest.ssllabs.com:8443/ssltest/viewMyClient.html) - SSL/TLS Browser Capabilities Test
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Password Privacy / 2FA
|
|
||||||
|
|
||||||
* 🌐 **[2FA Directory](https://2fa.directory/)** - List of Sites with 2FA Support
|
|
||||||
* ⭐ **[Ente Auth](https://github.com/ente-io/ente#ente-auth)** - Windows / Mac / Android / iOS 2FA / [Audit](https://ente.io/blog/cryptography-audit/)
|
|
||||||
* ⭐ **[Aegis](https://getaegis.app/)** - Android 2FA
|
|
||||||
* ⭐ **[AuthenticatorPro](https://authenticatorpro.jmh.me)** - Android 2FA
|
|
||||||
* ⭐ **[HaveIBeenPwned PW](https://haveibeenpwned.com/Passwords)** - Password Breach Check
|
|
||||||
* ⭐ **[Password Strength Chart](https://i.ibb.co/vZdqMvm/6728c7ef02e9.png)**
|
|
||||||
* [2FAS](https://2fas.com/) - Android / iOS 2FA / [Discord](https://discord.gg/q4cP6qh2g5)
|
|
||||||
* [Mauth](https://github.com/X1nto/Mauth) - Android 2FA
|
|
||||||
* [FreeOTPPlus](https://github.com/helloworld1/FreeOTPPlus) - Android 2FA
|
|
||||||
* [KeePassXC](https://keepassxc.org/) - Windows / Mac / Linux 2FA / [Guide](https://youtu.be/ckWPHaQwft8)
|
|
||||||
* [AuthMe](https://authme.levminer.com/) - Windows / Mac / Linux 2FA / [GitHub](https://github.com/Levminer/authme)
|
|
||||||
* [Tauthy](https://github.com/pwltr/tauthy) - Windows / Mac / Linux 2FA
|
|
||||||
* [Yubioath](https://developers.yubico.com/yubioath-flutter/) - Windows / Android 2FA / YubiKeys
|
|
||||||
* [Protecc](https://apps.microsoft.com/store/detail/protecc-2fa-client/9PJX91M06TZS) / [GitHub](https://github.com/FireCubeStudios/Protecc) - Windows 2FA
|
|
||||||
* [OTPClient](https://github.com/paolostivanin/OTPClient) - Linux 2FA
|
|
||||||
* [2FAuth](https://docs.2fauth.app/) - Web App 2FA / Self-hosted
|
|
||||||
* [Sentinel](https://getsentinel.io/) - iOS / Mac 2FA
|
|
||||||
* [OTP Auth](https://apps.apple.com/ca/app/otp-auth/id659877384) - iOS 2FA
|
|
||||||
* [Tofu](https://www.tofuauth.com/) - iOS 2FA
|
|
||||||
* [Authenticator](https://authenticator.cc/) - Generate Two-Factor QR Codes / [GitHub](https://gitlab.gnome.org/World/Authenticator)
|
|
||||||
* [Android OTP Extractor](https://github.com/puddly/android-otp-extractor) or [OTP Helper](https://github.com/jd1378/otphelper) - Extract OTP Tokens
|
|
||||||
* [SteamGuard](https://github.com/dyc3/steamguard-cli) - Generate Steam 2FA Codes
|
|
||||||
* [PasswordsGenerator](https://passwordsgenerator.net/) - Secure Password Generator
|
|
||||||
* [Intelligence X](https://intelx.io/) - Password Breach Check
|
|
||||||
* [psbdmp](https://psbdmp.ws/) - Password Breach Check
|
|
||||||
* [Dehashed](https://dehashed.com/) - Password Breach Check
|
|
||||||
* [Spycloud](https://spycloud.com/) - Password Breach Check
|
|
||||||
* [ScatteredSecrets](https://scatteredsecrets.com/) - Password Breach Check
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Email Privacy
|
|
||||||
|
|
||||||
* ↪️ **[Temp Mail Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail)** - Create Temporary / Throwaway Emails
|
|
||||||
* ↪️ **[Email Aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_email_aliasing)** - Create Permanent Anonymous Emails
|
|
||||||
* ⭐ **[Have I Been Pwned?](https://haveibeenpwned.com/)** - Monitor Email Breaches
|
|
||||||
* ⭐ **[Proton Mail](https://proton.me/mail)** - Encrypted Email
|
|
||||||
* [Tuta](https://tuta.com/) - Encrypted Email
|
|
||||||
* [Disroot](https://disroot.org/en/services/email) - Encrypted Email
|
|
||||||
* [lil mail server](https://uq.ci/) - Simple Privacy-Focused Email
|
|
||||||
* [EmailPrivacyTester](https://www.emailprivacytester.com/) - Email Privacy Test
|
|
||||||
* [SecLists](https://seclists.org/) - Security Mailing List Archive
|
|
||||||
* [Phish.ly](https://phish.ly/) - Scan Suspicious Emails
|
|
||||||
* [Have I Been Sold?](https://haveibeensold.app/) - Monitor Third Party Email Sales
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Fingerprinting / Tracking
|
## ▷ Fingerprinting / Tracking
|
||||||
|
|
||||||
* ⭐ **[ClearURLs](https://docs.clearurls.xyz)** - Remove Tracking Elements from URLs / [Features](https://gitlab.com/ClearURLs/ClearUrls#features), [2](https://i.ibb.co/4JsQwP5/sqzfmLD.png) / Can Break Sites
|
* ⭐ **[ClearURLs](https://docs.clearurls.xyz)** - Remove Tracking Elements from URLs / [Features](https://gitlab.com/ClearURLs/ClearUrls#features), [2](https://i.imgur.com/sqzfmLD.png)
|
||||||
* ⭐ **[CanvasBlocker](https://github.com/kkapsner/CanvasBlocker)** - Prevent Canvas Fingerprinting
|
* ⭐ **[CanvasBlocker](https://github.com/kkapsner/CanvasBlocker)** - Prevent Canvas Fingerprinting
|
||||||
* ⭐ **[Creepjs](https://abrahamjuliot.github.io/creepjs)**, [WEBKAY](https://webkay.robinlinus.com/), [BrowserRecon](https://www.computec.ch/projekte/browserrecon/?s=scan), [Device Info](https://www.deviceinfo.me/), [CoverYourTracks](https://firstpartysimulator.org/) / [2](https://coveryourtracks.eff.org/) or [PersonalData](https://personaldata.info/) - Tracking / Fingerprinting Tests
|
* ⭐ **[GameIndustry](https://gameindustry.eu/en/)** - Block Trackers in Desktop / Mobile Games
|
||||||
* [dataskydd](https://webbkoll.dataskydd.net/) or [Blacklight](https://themarkup.org/blacklight) - Site Tracking Info
|
* ⭐ **[Creepjs](https://abrahamjuliot.github.io/creepjs)**, [BrowserRecon](https://www.computec.ch/projekte/browserrecon/?s=scan), [Device Info](https://www.deviceinfo.me/), [Unique Machine](https://uniquemachine.org/), [AmIUnique?](https://amiunique.org/), [CoverYourTracks](https://firstpartysimulator.org/) / [2](https://coveryourtracks.eff.org/) or [PersonalData](https://personaldata.info/) - Tracking / Fingerprinting Tests
|
||||||
|
* [WhoTracksMe](https://whotracks.me/), [Privacy Score](https://privacyscore.org/), [dataskydd](https://webbkoll.dataskydd.net/), [Blacklight](https://themarkup.org/blacklight) or [Trackography](https://trackography.org/) - Site Tracking Info
|
||||||
* [Data Removal Guide](https://inteltechniques.com/workbook.html) - Remove Online Data
|
* [Data Removal Guide](https://inteltechniques.com/workbook.html) - Remove Online Data
|
||||||
* [GameIndustry](https://gameindustry.eu/en/) - Block Trackers in Desktop / Mobile Games
|
* [BrowserLeaks](https://browserleaks.com/), [Astrill](https://rentry.co/astrill), [Comparitech](https://www.comparitech.com/privacy-security-tools/dns-leak-test/), [Do I leak?](https://www.top10vpn.com/tools/do-i-leak/) or [IPLeak](https://ipleak.org/) / [2](https://ipleak.com/) / [3](https://ipleak.net) - IP Leak Tests
|
||||||
* [BrowserLeaks](https://browserleaks.com/), [Do I leak?](https://www.top10vpn.com/tools/do-i-leak/) or [IPLeak.net](https://ipleak.net) - IP Leak Tests
|
* [DNS Leak Test](https://www.dnsleaktest.com/), [Bash DNS Test](https://bash.ws/dnsleak) or [DNS Check](https://dnscheck.tools) - DNS Leak Tests
|
||||||
|
* [Voidsec](https://ip.voidsec.com/) - WebRTC Leak Tests
|
||||||
|
* [WhatIsMyBrowser](https://www.whatismybrowser.com/detect/what-is-my-user-agent) - User-Agent Detection
|
||||||
|
* [Safing Portmaster](https://safing.io/) - Monitor Network / Block Trackers / [Discord](https://discord.com/invite/safing) / [GitHub](https://github.com/Safing/portmaster)
|
||||||
|
* [TrackMeNot](https://www.trackmenot.io/) - Tracking Protection
|
||||||
* [JShelter](https://jshelter.org/) - Prevent Fingerprinting / [Warning](https://github.com/arkenfox/user.js/issues/1729#issuecomment-1739135479)
|
* [JShelter](https://jshelter.org/) - Prevent Fingerprinting / [Warning](https://github.com/arkenfox/user.js/issues/1729#issuecomment-1739135479)
|
||||||
* [Extension Detector](https://z0ccc.github.io/extension-detector) / [GitHub](https://github.com/z0ccc/extension-detector) - Extension Fingerprinting Tests
|
* [Extension Detector](https://github.com/z0ccc/extension-detector) - Extension Fingerprinting Tests
|
||||||
* [NoScriptFingerprint](https://noscriptfingerprint.com/) - Non-JavaScript Fingerprinting
|
* [NoScriptFingerprint](https://noscriptfingerprint.com/) - Non-JavaScript Fingerprinting
|
||||||
* [Language Switcher](https://chromewebstore.google.com/detail/locale-switcher/kngfjpghaokedippaapkfihdlmmlafcc) / [GitHub](https://github.com/locale-switcher/locale-switcher), [2](https://addons.mozilla.org/en-US/firefox/addon/languageswitch) - Change Language Identifier
|
|
||||||
* [AnonymousRedirect](https://adguardteam.github.io/AnonymousRedirect/) - Anonymize Links
|
* [AnonymousRedirect](https://adguardteam.github.io/AnonymousRedirect/) - Anonymize Links
|
||||||
* [Simple Opt Out](https://simpleoptout.com/) - Turn off Targeted Ads
|
* [Simple Opt Out](https://simpleoptout.com/) - Turn off Targeted Ads
|
||||||
* [AdNauseam](https://adnauseam.io/) - Adblocker / Fakes Clicks to Confuse Tracking
|
* [AdNauseam](https://adnauseam.io/) - Adblocker / Fakes Clicks to Confuse Tracking
|
||||||
@ -344,61 +310,111 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ Privacy Extensions
|
||||||
|
|
||||||
|
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock#installation)** - Privacy Extension / Adblock / [Guide](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) / [Advanced](https://youtu.be/2lisQQmWQkY)
|
||||||
|
* [Language Switch](https://addons.mozilla.org/en-US/firefox/addon/languageswitch/) - Change Language Identifier
|
||||||
|
* [SocialSharePrivacy](https://panzi.github.io/SocialSharePrivacy/) - Turn Off Social Sharing Buttons
|
||||||
|
* [WhatsApp Privacy Extension](https://pfwa.lukaslen.com/) - Hide WhatsApp Messages Until Hovered Over / [GitHub](https://github.com/LukasLen/Privacy-Extension-For-WhatsApp-Web)
|
||||||
|
* [WAIncognito](https://chromewebstore.google.com/detail/waincognito/alhmbbnlcggfcjjfihglopfopcbigmil) - Disable WhatsApps Read Receipts & Presence Updates
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
## ▷ Frontends
|
## ▷ Frontends
|
||||||
|
|
||||||
* 🌐 **[Alt Frontends](https://github.com/mendel5/alternative-front-ends)** / [2](https://rentry.co/8kqrrn), [Farside](https://farside.link/) or [alternative-frontends](https://github.com/digitalblossom/alternative-frontends) - Frontend Indexes
|
* 🌐 **[Alt Frontends](https://github.com/mendel5/alternative-front-ends)** / [2](https://rentry.co/8kqrrn), [Farside](https://farside.link/) or [alternative-frontends](https://github.com/digitalblossom/alternative-frontends) - Frontend Indexes
|
||||||
* ↪️ **[YouTube Frontends](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_players_.2F_frontends)**
|
* ↪️ **[YouTube Frontends](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_frontends)**
|
||||||
* ⭐ **[LibRedirect](https://libredirect.github.io/)** / [2](https://github.com/libredirect/libredirect), [Predirect](https://github.com/libreom/predirect) or [Proxy Redirect](https://openuserjs.org/scripts/sjehuda/Proxy_Redirect) - Frontend Redirect Extensions
|
* ⭐ **[LibRedirect](https://libredirect.github.io/)** / [2](https://github.com/libredirect/libredirect), [Predirect](https://github.com/libreom/predirect) or [Proxy Redirect](https://openuserjs.org/scripts/sjehuda/Proxy_Redirect) - Frontend Redirect Extensions
|
||||||
* [Numblr](https://github.com/heyLu/numblr) - Self-Hosted Frontend Redirect
|
* [Numblr](https://github.com/heyLu/numblr) - Self-Hosted Frontend Redirect
|
||||||
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
|
* [Photon](https://photon-reddit.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||||
* [Invidious Redirect](https://addons.mozilla.org/en-US/firefox/addon/hooktube-redirect/?src=search) - YouTube Frontend Redirect
|
* [Invidious Redirect](https://addons.mozilla.org/en-US/firefox/addon/hooktube-redirect/?src=search) - YouTube Frontend Redirect
|
||||||
* [twstalker](https://twstalker.com/), [X Cancelled](https://xcancel.com/) or [nitter](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - Twitter Frontends
|
|
||||||
* [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
|
* [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
|
||||||
* [Proxitok](https://github.com/pablouser1/ProxiTok) - TikTok Frontend
|
* [Proxitok](https://github.com/pablouser1/ProxiTok) or [TikNot](https://tiknot.netlify.app/) / [Redirect](https://greasyfork.org/en/scripts/482683) - TikTok Frontends
|
||||||
* [Tumlook](https://www.tumlook.com/), [Tumgik](https://www.tumgik.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
|
* [Tumlook](https://www.tumlook.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
|
||||||
* [BreezeWiki](https://breezewiki.com/) - Fandom Frontend / [Mirrors](https://pastebin.com/DmbrhEDD)
|
|
||||||
* [MikuInvidious](https://0xacab.org/johnxina/mikuinvidious) - BiliBili Frontend
|
* [MikuInvidious](https://0xacab.org/johnxina/mikuinvidious) - BiliBili Frontend
|
||||||
* [SafeTwitch](https://codeberg.org/SafeTwitch/safetwitch) or [Twineo](https://codeberg.org/CloudyyUw/twineo) - Twitch Frontends
|
* [SafeTwitch](https://codeberg.org/SafeTwitch/safetwitch) or [Twineo](https://codeberg.org/CloudyyUw/twineo) - Twitch Frontends
|
||||||
* [Whoogle](https://benbusby.com/projects/whoogle-search/) - Google Search Frontend
|
* [Whoogle](https://benbusby.com/projects/whoogle-search/) - Google Search Frontend
|
||||||
* [Lingva Translate](https://github.com/TheDavidDelta/lingva-translate) - Google Translate Frontend
|
* [Lingva Translate](https://github.com/TheDavidDelta/lingva-translate) - Google Translate Frontend
|
||||||
* [Scribe](https://sr.ht/~edwardloveall/Scribe/), [medium.rip](https://medium.rip/) or [LibMedium](https://libmedium.batsense.net/) - Medium Frontends
|
* [Scribe](https://sr.ht/~edwardloveall/Scribe/), [medium.rip](https://medium.rip/) or [LibMedium](https://github.com/realaravinth/libmedium) - Medium Frontends
|
||||||
* [Quetre](https://quetre.iket.me) / [GitHub](https://github.com/zyachel/quetre) - Quora Frontend
|
* [Quetre](https://github.com/zyachel/quetre) - Quora Frontend
|
||||||
* [Rimgo](https://codeberg.org/rimgo/rimgo) - Imgur Frontend / [Instances](https://rimgo.codeberg.page/), [2](https://codeberg.org/rimgo/instances)
|
* [Rimgo](https://codeberg.org/rimgo/rimgo) - Imgur Frontend
|
||||||
* [Binternet](https://github.com/Ahwxorg/Binternet) - Pinterest Frontend
|
* [Binternet](https://github.com/Ahwxorg/Binternet) - Pinterest Frontend
|
||||||
* [Pixivfe](https://codeberg.org/VnPower/pixivfe) - Pixiv Frontend
|
* [Pixivfe](https://codeberg.org/VnPower/pixivfe) - Pixiv Frontend
|
||||||
* [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend
|
* [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend
|
||||||
* [AnonymousOverflow](https://code.whatever.social) - StackOverflow Frontend
|
* [AnonymousOverflow](https://github.com/httpjamesm/AnonymousOverflow) - StackOverflow Frontend
|
||||||
|
* [BreezeWiki](https://breezewiki.com/) - Fandom Frontend
|
||||||
* [Tent](https://codeberg.org/sun/Tent) - Bandcamp Frontend
|
* [Tent](https://codeberg.org/sun/Tent) - Bandcamp Frontend
|
||||||
* [Dumb](https://codeberg.org/rramiachraf/dumb) or [Intellectual](https://intellectual.insprill.net/) - Genius Frontend
|
* [Dumb](https://codeberg.org/rramiachraf/dumb) or [Intellectual](https://github.com/Insprill/intellectual) - Genius Frontend
|
||||||
* [Rural Dictionary](https://codeberg.org/zortazert/rural-dictionary) - Urban Dictionary Frontend
|
* [Rural Dictionary](https://codeberg.org/zortazert/rural-dictionary) - Urban Dictionary Frontend
|
||||||
* [BiblioReads](https://codeberg.org/nesaku/BiblioReads) - Goodreads Frontend
|
* [BiblioReads](https://codeberg.org/nesaku/BiblioReads) - Goodreads Frontend
|
||||||
* [LibreMDb](https://libremdb.iket.me) - IMDb Frontend
|
* [LibreMDb](https://github.com/zyachel/libremdb) - IMDb Frontend
|
||||||
* [Neuters](https://neuters.de/) - Reuters Frontend
|
* [Neuters](https://github.com/HookedBehemoth/neuters) - Reuters Frontend
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Search Engines
|
## ▷ Search Engines
|
||||||
|
|
||||||
* 🌐 **[nixnet](https://searx.nixnet.services/)**, [searx.space](https://searx.space/) or [Searx Index](https://www.startpage.com/sp/search?q=%22powered%20by%20Searx%22) - Searx Instance Indexes
|
* 🌐 **[nixnet](https://searx.nixnet.services/)**, [searx.space](https://searx.space/) or [Searx Index](https://www.startpage.com/sp/search?q=%22powered%20by%20Searx%22) - Searx Instance Indexes
|
||||||
* ⭐ **[searx.fmhy](https://searx.fmhy.net/)**, [Fuck Off Google](https://search.fuckoffgoogle.net/), [searx](https://searx.be/), [tiekoetter](https://searx.tiekoetter.com/), [monocles](https://monocles.de/) - Searx Instance
|
* ⭐ **[searx.fmhy](https://searx.fmhy.net/)** - Searx Instance
|
||||||
* ⭐ **[Metager](https://metager.org/)**
|
* ⭐ **[Metager](https://metager.org/)**
|
||||||
* ⭐ **[Stract](https://trystract.com/)**
|
* ⭐ **[Stract](https://trystract.com/)**
|
||||||
* ⭐ **[Araa](https://araa.extravi.dev/)** / Uses Google / DDG / Qwant
|
* ⭐ **[Araa](https://araa.extravi.dev/)**
|
||||||
* ⭐ **[DuckDuckGo](https://duckduckgo.com/)** - [Shortcuts](https://duckduckgo.com/bangs), [2](https://github.com/dmlls/yang) / Uses Bing
|
* ⭐ **[DuckDuckGo](https://duckduckgo.com/)** - [Shortcuts](https://duckduckgo.com/bangs)
|
||||||
* [whoogle.fmhy](https://whoogle.fmhy.net/) - Whoogle Instance / Uses Google
|
* [whoogle.fmhy](https://whoogle.fmhy.net/) - Whoogle Instance
|
||||||
|
* [searx-qt](https://notabug.org/CYBERDEViL/searx-qt) - Searx Desktop App
|
||||||
|
* [Fuck Off Google](https://search.fuckoffgoogle.net/) - Searx Instance
|
||||||
|
* [searx](https://searx.be/) - Searx Instance
|
||||||
|
* [tiekoetter](https://searx.tiekoetter.com/) - Searx Instance
|
||||||
|
* [monocles](https://monocles.de/) - Searx Instance
|
||||||
* [LibreY](https://github.com/Ahwxorg/librey) or [LibreX](https://github.com/hnhx/librex)
|
* [LibreY](https://github.com/Ahwxorg/librey) or [LibreX](https://github.com/hnhx/librex)
|
||||||
* [4get](https://4get.ca/)
|
* [4get](https://4get.ca/)
|
||||||
* [Mojeek](https://www.mojeek.com/)
|
* [Mojeek](https://www.mojeek.com/)
|
||||||
* [Qwant](https://www.qwant.com/)
|
* [Qwant](https://www.qwant.com/)
|
||||||
* [Swisscows](https://swisscows.com/) / Uses Bing
|
* [Swisscows](https://swisscows.com/)
|
||||||
* [YaCy](https://yacy.net/)
|
* [YaCy](https://yacy.net/)
|
||||||
* [Startpage](https://www.startpage.com/) / Uses Google
|
* [Startpage](https://www.startpage.com/)
|
||||||
* [Brave Search](https://search.brave.com/)
|
|
||||||
* [Search Encrypt](https://www.searchencrypt.com/)
|
* [Search Encrypt](https://www.searchencrypt.com/)
|
||||||
* [ekoru](https://ekoru.org/) / Uses Bing
|
* [ekoru](https://ekoru.org/)
|
||||||
* [Gibiru](https://gibiru.com/) / Uses Google
|
* [Gibiru](https://gibiru.com/)
|
||||||
* [SearXNG](https://docs.searxng.org/) - Self-Hosted
|
* [SearXNG](https://docs.searxng.org/) - Self-Hosted
|
||||||
* [Whoogle](https://pypi.org/project/whoogle-search/) - Self-Hosted
|
* [Whoogle](https://github.com/benbusby/whoogle-search) - Self-Hosted
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ Two-Factor Authentication
|
||||||
|
|
||||||
|
* 🌐 **[2FA Directory](https://2fa.directory/)** - List of Sites with 2FA Support
|
||||||
|
* ⭐ **[Aegis](https://getaegis.app/)** - Android 2FA
|
||||||
|
* ⭐ **[Ente](https://github.com/ente-io/auth/)** - Android / iOS 2FA / [Audit](https://ente.io/blog/cryptography-audit/)
|
||||||
|
* [2FAS](https://2fas.com/) - Android / iOS 2FA / [Discord](https://discord.gg/q4cP6qh2g5)
|
||||||
|
* [AuthenticatorPro](https://github.com/jamie-mh/AuthenticatorPro) - Android 2FA
|
||||||
|
* [Mauth](https://github.com/X1nto/Mauth) - Android 2FA
|
||||||
|
* [KeePassXC](https://keepassxc.org/) - Windows / Mac / Linux 2FA / [Guide](https://youtu.be/ckWPHaQwft8)
|
||||||
|
* [AuthMe](https://github.com/Levminer/authme) - Windows / Mac / Linux 2FA
|
||||||
|
* [Tauthy](https://github.com/pwltr/tauthy) - Windows / Mac / Linux 2FA
|
||||||
|
* [Yubioath](https://developers.yubico.com/yubioath-flutter/) - Windows / Android 2FA / YubiKeys
|
||||||
|
* [Protecc](https://github.com/FireCubeStudios/Protecc) - Windows 2FA
|
||||||
|
* [2FAuth](https://github.com/Bubka/2FAuth) - Web App 2FA / Self-hosted
|
||||||
|
* [Sentinel](https://getsentinel.io/) - iOS / Mac 2FA
|
||||||
|
* [Raivo OTP](https://raivo-otp.com) - iOS 2FA
|
||||||
|
* [OTP Auth](https://apps.apple.com/ca/app/otp-auth/id659877384) - iOS 2FA
|
||||||
|
* [Tofu](https://www.tofuauth.com/) - iOS 2FA
|
||||||
|
* [Authenticator](https://authenticator.cc/) - Generate Two-Factor QR Codes / [GitHub](https://gitlab.gnome.org/World/Authenticator)
|
||||||
|
* [Android OTP Extractor](https://github.com/puddly/android-otp-extractor) or [OTP Helper](https://github.com/jd1378/otphelper) - Extract OTP Tokens
|
||||||
|
* [SteamGuard](https://github.com/dyc3/steamguard-cli) - Generate Steam 2FA Codes
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ Encode / Decode
|
||||||
|
|
||||||
|
* ⭐ **[CyberChef](https://gchq.github.io/CyberChef/)** - Encode / Decode Text
|
||||||
|
* ⭐ **[Universal Encoding Tool](https://unenc.com/)** - Encode / Convert Text
|
||||||
|
* ⭐ **[Base64 Decode](https://www.base64decode.org/) / [Encode](https://www.base64encode.org/)** / [Dynamic](https://apps.maximelafarie.com/base64/) / [Chrome](https://chromewebstore.google.com/detail/base64-encoderdecoder/afdannbjainhcddbjjlhamdgnojibeoi), [2](https://chromewebstore.google.com/detail/base64-decode-copy/llcfmnginbnmkeddkjjellcimmffjdcf), [3](https://chromewebstore.google.com/detail/clip64-base64-decoder/hdneaoibdfdmifgfjjlkbkceanhjmgch) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/base64-decoder/) / [Opera](https://addons.opera.com/en/extensions/details/base64-encode-and-decode/)
|
||||||
|
* [Txtmoji](https://txtmoji.com/) - Text to Emoji Encryption / Decryption
|
||||||
|
* [Ciphey](https://github.com/Ciphey/Ciphey) - Automated Decryption Tool
|
||||||
|
* [cryptii](https://cryptii.com/), [DenCode](https://dencode.com/) - Text / URL Encoding
|
||||||
|
* [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
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -408,18 +424,18 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* 🌐 **[VPN Comparisons](https://redd.it/171h9qa)** or [Techlore Chart](https://techlore.tech/vpn) - VPN Comparison Charts
|
* 🌐 **[VPN Comparison Chart](https://redd.it/171h9qa)** or [Techlore Chart](https://techlore.tech/vpn)- VPN Comparisons
|
||||||
* 🌐 **[VPN Relationships](https://kumu.io/Windscribe/vpn-relationships)** - VPN Relationship Chart
|
|
||||||
* ⭐ **[/r/VPNs](https://www.reddit.com/r/vpns/)** - VPN Help and Discussion
|
* ⭐ **[/r/VPNs](https://www.reddit.com/r/vpns/)** - VPN Help and Discussion
|
||||||
* ⭐ **[Windscribe](https://windscribe.com)** - Free Version Available
|
* ⭐ **[AirVPN](https://airvpn.org/)** - [Pricing](https://i.ibb.co/8rVJ5JB/c4b813a6b6bc.png)
|
||||||
* ⭐ **[AirVPN](https://airvpn.org/)**
|
* ⭐ **[Windscribe](https://windscribe.com)** - [Pricing](https://ibb.co/tPZZDhC) / Free Version Available
|
||||||
* ⭐ **[Proton](https://protonvpn.com)** - No Torrenting with Free Version / [Config Generation](https://gist.github.com/fusetim/1a1ee1bdf821a45361f346e9c7f41e5a)
|
* ⭐ **[Proton](https://protonvpn.com)** - [Pricing](https://ibb.co/gg4VCDR) / No Torrenting w/ Free Version
|
||||||
* ⭐ **[Warp](https://one.one.one.one/)** - Traffic Encryption VPN / [Client](https://github.com/ViRb3/wgcf), [2](https://github.com/bepass-org/oblivion-desktop) / [Warp+ Data](https://t.me/warpplus), [2](https://github.com/nxvvvv/warp-plus), [3](https://github.com/totoroterror/warp-cloner), [4](https://t.me/generatewarpplusbot), [5](https://rentry.co/warp_plus_free) / [Warp+ Warning](https://rentry.co/warpwarning2) / [WireGuard Guide](https://rentry.co/foss-warp)
|
* ⭐ **[Warp](https://1.1.1.1/)**, [2](https://1.0.0.1/) - Traffic Encryption VPN / [Client](https://github.com/ViRb3/wgcf) / [Warp+ Data](https://t.me/warpplus), [2](https://github.com/nxvvvv/warp-plus), [3](https://rentry.co/warp_plus_free), [4](https://github.com/totoroterror/warp-cloner), [5](https://t.me/generatewarpplusbot) / [Warp+ Warning](https://rentry.co/warpwarning) / [WireGuard Guide](https://rentry.co/foss-warp)
|
||||||
* ⭐ **[Riseup](https://riseup.net/en/vpn)** - Free VPN / [Config CLI Script](https://github.com/kmille/riseup-vpn-configurator)
|
* ⭐ **[Riseup](https://riseup.net/en/vpn)** - Free VPN
|
||||||
* [Mullvad](https://mullvad.net/) - [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/)
|
* [Mullvad](https://mullvad.net/) - [Pricing](https://i.ibb.co/sHB33GJ/daf48a5ee585.png) / [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/)
|
||||||
* [IVPN](https://www.ivpn.net/) - [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/)
|
* [IVPN](https://www.ivpn.net/) - [Pricing](https://i.ibb.co/6sQKrQL/e06bea93c5ba.png) / [Free Trial](https://redd.it/nzjmqa) / [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/)
|
||||||
|
* [OVPN](https://www.ovpn.com/) - [Pricing](https://ibb.co/BNmCJdS) / [No Logging](https://www.ovpn.com/en/blog/ovpn-wins-court-order)
|
||||||
* [VPN Gate](https://www.vpngate.net/en/download.aspx) - Free VPN / [Note](https://pastebin.com/TrSw7EpF)
|
* [VPN Gate](https://www.vpngate.net/en/download.aspx) - Free VPN / [Note](https://pastebin.com/TrSw7EpF)
|
||||||
* [PrivadoVPN](https://privadovpn.com/) - Free VPN / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail)
|
* [PrivadoVPN](https://privadovpn.com/) - Free VPN / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_temp_email_sites)
|
||||||
* [Leap VPN](https://leap.se/) - Free VPNs
|
* [Leap VPN](https://leap.se/) - Free VPNs
|
||||||
* [VPNBook](https://www.vpnbook.com/) - Free VPN Accounts
|
* [VPNBook](https://www.vpnbook.com/) - Free VPN Accounts
|
||||||
|
|
||||||
@ -431,13 +447,13 @@
|
|||||||
* ⭐ **[How-to Bind VPN to Client](https://redd.it/ssy8vv)** - Bind VPN to Client to Avoid ISP Letters
|
* ⭐ **[How-to Bind VPN to Client](https://redd.it/ssy8vv)** - Bind VPN to Client to Avoid ISP Letters
|
||||||
* ⭐ **[WireGuard](https://www.wireguard.com/)** - VPN Tunnel / [Setup Guide](https://github.com/amritb/poor-mans-vpn) / [Tools](https://guardline-vpn.github.io/wireguard-tools/) / [Manager](https://github.com/perara/wg-manager) / [WebUI](https://hub.docker.com/r/weejewel/wg-easy)
|
* ⭐ **[WireGuard](https://www.wireguard.com/)** - VPN Tunnel / [Setup Guide](https://github.com/amritb/poor-mans-vpn) / [Tools](https://guardline-vpn.github.io/wireguard-tools/) / [Manager](https://github.com/perara/wg-manager) / [WebUI](https://hub.docker.com/r/weejewel/wg-easy)
|
||||||
* [OpenVPN](https://openvpn.net/) or [TincVPN](https://www.tinc-vpn.org/) - VPN Tunnels
|
* [OpenVPN](https://openvpn.net/) or [TincVPN](https://www.tinc-vpn.org/) - VPN Tunnels
|
||||||
* [WireHole](https://github.com/IAmStoxe/wirehole) - Wireguard VPN with Adblocking Capabilities / [User-Interface](https://github.com/10h30/wirehole-ui)
|
* [WireHole](https://github.com/IAmStoxe/wirehole) - Wireguard VPN w/ Adblocking Capabilities
|
||||||
* [Syntropy](https://www.syntropystack.com/vpn), [Self Hosted VPN](https://github.com/rajannpatel/Pi-Hole-on-Google-Compute-Engine-Free-Tier-with-Full-Tunnel-and-Split-Tunnel-Wireguard-VPN-Configs), [VpnHood](https://github.com/vpnhood/VpnHood), [n2n](https://github.com/ntop/n2n), [ipsec-vpn](https://github.com/hwdsl2/setup-ipsec-vpn) or [Outline](https://getoutline.org/) - Self-Hosted VPN
|
* [Syntropy](https://www.syntropystack.com/vpn), [Self Hosted VPN](https://github.com/rajannpatel/Pi-Hole-on-Google-Compute-Engine-Free-Tier-with-Full-Tunnel-and-Split-Tunnel-Wireguard-VPN-Configs), [VpnHood](https://github.com/vpnhood/VpnHood), [n2n](https://github.com/ntop/n2n), [ipsec-vpn](https://github.com/hwdsl2/setup-ipsec-vpn) or [Outline](https://getoutline.org/) - Self-Hosted VPN
|
||||||
* [OpenConnect](https://www.infradead.org/openconnect/) - SSL VPN / [GUI](https://openconnect.github.io/openconnect-gui/)
|
* [OpenConnect](https://www.infradead.org/openconnect/) - SSL VPN / [GUI](https://openconnect.github.io/openconnect-gui/)
|
||||||
* [Gluetun](https://hub.docker.com/r/qmcgaw/gluetun) / [GitHub](https://github.com/qdm12/gluetun) - Tunnel your Docker containers through a VPN
|
* [Gluetun](https://github.com/qdm12/gluetun) - Tunnel your Docker containers through a VPN
|
||||||
* [Pritunl](https://pritunl.com/) - VPN Server
|
* [Pritunl](https://pritunl.com/) - VPN Server
|
||||||
* [Algo VPN](https://blog.trailofbits.com/2016/12/12/meet-algo-the-vpn-that-works/) / [GitHub](https://github.com/trailofbits/algo) - Cloud VPN
|
* [Algo VPN](https://github.com/trailofbits/algo) - Cloud VPN
|
||||||
* [Amnezia](https://amnezia.org/) - Self-hosted VPN
|
* [Amnezia](https://github.com/amnezia-vpn/amnezia-client) - Self-hosted VPN
|
||||||
* [VPNHotspot](https://github.com/Mygod/VPNHotspot) - Share VPN Connection over Hotspot
|
* [VPNHotspot](https://github.com/Mygod/VPNHotspot) - Share VPN Connection over Hotspot
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -446,25 +462,25 @@
|
|||||||
|
|
||||||
## ▷ Proxy Apps
|
## ▷ Proxy Apps
|
||||||
|
|
||||||
* ⭐ **[Lantern](https://lantern.io/)** or **[Psiphon](https://psiphon.ca/)** - Free Proxy / VPN
|
* ⭐ **[Lantern](https://lantern.io/)** or **[Psiphon](https://psiphon.ca/)** / [Bypass Blocks](https://media.discordapp.net/attachments/953145730736996382/953730963735707719/Screenshot_20220316220604.png) - Free Proxy / VPN
|
||||||
* ⭐ **[SecureDNSClient](https://github.com/msasanmh/SecureDNSClient)** - DNS Proxy GUI / [Guide](https://rentry.co/SecureDNSClient)
|
* ⭐ **[SecureDNSClient](https://github.com/msasanmh/SecureDNSClient)** - DNS Proxy GUI / [Guide](https://rentry.co/SecureDNSClient)
|
||||||
|
* ⭐ **[Bypass ISP Blocks](https://rentry.co/enable-ech)** - Bypass ISP censorship with Firefox
|
||||||
* [No Thought is a Crime](https://ntc.party/) - Internet Censorship Discussion
|
* [No Thought is a Crime](https://ntc.party/) - Internet Censorship Discussion
|
||||||
* [GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/) / [GUI](https://github.com/mguludag/GUI-for-GoodbyeDPI), [PowerTunnel](https://github.com/krlvm/PowerTunnel) or [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) - DPI Circumvention Local Proxies
|
* [GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/) / [GUI](https://github.com/mguludag/GUI-for-GoodbyeDPI), [PowerTunnel](https://github.com/krlvm/PowerTunnel), [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) or [GFW-knocker](https://github.com/GFW-knocker/gfw_resist_tls_proxy) / [Test](https://www.howsmyssl.com/) - DPI Circumvention Local Proxies
|
||||||
* [Hola Proxy](https://github.com/Snawoot/hola-proxy) - Alternative Client for Hola Free Proxy Service
|
* [Hola Proxy](https://github.com/Snawoot/hola-proxy) - Alternative Client for Hola Free Proxy Service
|
||||||
* [Hide.me Firefox](https://addons.mozilla.org/en-US/firefox/addon/hide-me-vpn-free-proxy/) / [Chrome](https://chromewebstore.google.com/detail/hideme-proxy/ohjocgmpmlfahafbipehkhbaacoemojp) or [anonymoX](https://anonymox.net/en) - Free Proxy Service Browser Extension
|
* [Hide.me Firefox](https://addons.mozilla.org/en-US/firefox/addon/hide-me-vpn-free-proxy/) / [Chrome](https://chromewebstore.google.com/detail/hideme-proxy/ohjocgmpmlfahafbipehkhbaacoemojp) or [anonymoX](https://anonymox.net/en) - Free Proxy Service Browser Extension
|
||||||
* [Snowflake](https://snowflake.torproject.org/) - Tor Proxy Browser Extension
|
* [Snowflake](https://snowflake.torproject.org/) - Tor Proxy Browser Extension
|
||||||
* [CensorTracker](https://censortracker.org/), [FoxyProxy](https://getfoxyproxy.org/) or [SwitchyOmega](https://github.com/FelisCatus/SwitchyOmega) - Proxy Extensions
|
* [CensorTracker](https://github.com/roskomsvoboda/censortracker), [FoxyProxy](https://getfoxyproxy.org/) or [SwitchyOmega](https://github.com/FelisCatus/SwitchyOmega) - Proxy Extensions
|
||||||
* [Acrylic](https://mayakron.altervista.org/) - DNS Cache Local Proxy
|
* [Acrylic](https://mayakron.altervista.org/) - DNS Cache Local Proxy
|
||||||
* [SimpleDnsCrypt](https://github.com/instantsc/SimpleDnsCrypt) or [DNSCrypt](https://www.dnscrypt.org/) - Local DNS Encryption Proxy
|
* [SimpleDnsCrypt](https://github.com/instantsc/SimpleDnsCrypt) - DNS Encryption Local Proxy
|
||||||
* [Blocky](https://github.com/0xERR0R/blocky) - DNS Proxy
|
|
||||||
* [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / [Keys](https://rentry.co/FMHYBase64#proxifier-keys)
|
* [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / [Keys](https://rentry.co/FMHYBase64#proxifier-keys)
|
||||||
* [wireproxy](https://github.com/pufferffish/wireproxy) - Use VPNs as proxies
|
* [wireproxy](https://github.com/pufferffish/wireproxy) - Use VPNs as proxys
|
||||||
* [Hiddify](https://hiddify.com/) - Auto-Proxy Client
|
* [Hiddify](https://hiddify.com/) - Auto-Proxy Client
|
||||||
* [NginxProxyManager](https://nginxproxymanager.com) / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager) - Self-Hosted Proxy Server
|
* [NginxProxyManager](https://github.com/NginxProxyManager/nginx-proxy-manager) - Self-Hosted Proxy Server
|
||||||
* [Shadowsocks](https://shadowsocks.org/) - Proxy Client and Self-Hosted Server / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/vxiaov/free_proxies), [3](https://shadowmere.akiel.dev/) / [Client](https://github.com/shadowsocks/shadowsocks-windows)
|
* [Shadowsocks](https://shadowsocks.org/) / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/learnhard-cn/free_proxy_ss) / [Client](https://github.com/shadowsocks/shadowsocks-windows) - Proxy Client and Self-Hosted Server
|
||||||
* [Hysteria](https://v2.hysteria.network/) - Proxy Client and Self-Hosted Server
|
* [Hysteria](https://github.com/apernet/hysteria) - Proxy Client and Self-Hosted Server
|
||||||
* [Xray](https://github.com/XTLS/Xray-core) - Proxy Client and Self-Hosted Server / [Telegram](https://t.me/projectXray)
|
* [Xray](https://github.com/XTLS/Xray-core) - Proxy Client and Self-Hosted Server / [Telegram](https://t.me/projectXray)
|
||||||
* [Ultraviolet](https://docs.titaniumnetwork.org/proxies/ultraviolet) or [Metallic](https://github.com/cognetwork-dev/Metallic) - Self-Hosted Proxy Websites
|
* [Ultraviolet](https://github.com/titaniumnetwork-dev/Ultraviolet), [Privoxy](https://www.privoxy.org/) / [Docker Build](https://github.com/binhex/arch-privoxyvpn) or [Tsunami](https://github.com/FogNetwork/Tsunami) - Self-Hosted Proxy Websites
|
||||||
* [1337x Proxy](https://redd.it/tz7nyx) - 1337x Proxy Guide / [Example](https://pastebin.com/3n5K0QrP)
|
* [1337x Proxy](https://redd.it/tz7nyx) - 1337x Proxy Guide / [Example](https://pastebin.com/3n5K0QrP)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -473,6 +489,7 @@
|
|||||||
|
|
||||||
* ↪️ **[Proxy Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_proxy_lists)**
|
* ↪️ **[Proxy Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_proxy_lists)**
|
||||||
* ↪️ **[Piracy Site Proxies](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_piracy_site_proxies)**
|
* ↪️ **[Piracy Site Proxies](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_piracy_site_proxies)**
|
||||||
|
* ⭐ **[HolyUnblocker](https://www.holyubofficial.net/)**
|
||||||
* [ProxySite](https://www.proxysite.com/)
|
* [ProxySite](https://www.proxysite.com/)
|
||||||
* [GenMirror](https://www.genmirror.com/)
|
* [GenMirror](https://www.genmirror.com/)
|
||||||
* [Hide.me](https://hide.me/en/proxy)
|
* [Hide.me](https://hide.me/en/proxy)
|
||||||
@ -482,10 +499,9 @@
|
|||||||
* [KProxy](https://www.kproxy.com/)
|
* [KProxy](https://www.kproxy.com/)
|
||||||
* [Free Proxy](https://freeproxy.win/)
|
* [Free Proxy](https://freeproxy.win/)
|
||||||
* [Blockaway](https://www.blockaway.net/)
|
* [Blockaway](https://www.blockaway.net/)
|
||||||
* [Free Proxy Servers](https://www.free-proxy-servers.com/)
|
|
||||||
* [VPN Book](https://www.vpnbook.com/webproxy)
|
* [VPN Book](https://www.vpnbook.com/webproxy)
|
||||||
* [CroxyProxy](https://www.croxyproxy.com/)
|
* [CroxyProxy](https://www.croxyproxy.com/)
|
||||||
* [ProxyPx](https://croxyproxy.best/)
|
* [ProxyPx](https://www.proxypx.com/)
|
||||||
* [ProxySite](https://www.proxysite.cc/)
|
* [ProxySite](https://www.proxysite.cc/)
|
||||||
* [ProxyOf2](https://proxyof2.com/)
|
* [ProxyOf2](https://proxyof2.com/)
|
||||||
* [Proxy-URLs](https://www.proxy-urls.com/)
|
* [Proxy-URLs](https://www.proxy-urls.com/)
|
||||||
@ -493,7 +509,8 @@
|
|||||||
* [UnblockSites](https://unblocksites.online/)
|
* [UnblockSites](https://unblocksites.online/)
|
||||||
* [Proxyium](https://proxyium.com/)
|
* [Proxyium](https://proxyium.com/)
|
||||||
* [Proxy Site](https://proxysite.cloud/)
|
* [Proxy Site](https://proxysite.cloud/)
|
||||||
* [Google Translate](https://translate.google.com/) / [Proxy Explanation](https://redd.it/fawkjy), [2](https://ibb.co/BtWc8ML)
|
* [Google Translate](https://translate.google.com/) - [How to use](https://redd.it/fawkjy)
|
||||||
* [Proxy-Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper), [What is my Proxy](http://www.whatismyproxy.com/), [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker), [Socker](https://github.com/TheSpeedX/socker) or [Unfx Proxy Checker](https://openproxy.space/software/proxy-checker) / [GitHub](https://github.com/openproxyspace/unfx-proxy-checker) - Proxy Scrapers / Checkers
|
* [Proxy Scrape](https://github.com/JaredLGillespie/proxyscrape) - Python Library for Retrieving Free Proxies
|
||||||
|
* [Proxy-Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper), [What is my Proxy](http://www.whatismyproxy.com/), [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker), [Socker](https://github.com/TheSpeedX/socker) or [Unfx Proxy Checker](https://github.com/openproxyspace/unfx-proxy-checker) - Proxy Scrapers / Checkers
|
||||||
* [CheckSocks5](https://checksocks5.com/) - Socks5 Proxy Checker
|
* [CheckSocks5](https://checksocks5.com/) - Socks5 Proxy Checker
|
||||||
* [Proxynova](https://www.proxynova.com/proxy-server-list/country-ir/) - Iranian Proxies
|
* [Proxynova](https://www.proxynova.com/proxy-server-list/country-ir/) - Iranian Proxies
|
||||||
|
1291
Android-iOSGuide.md
1291
Android-iOSGuide.md
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -5,17 +5,20 @@
|
|||||||
[TOC2]
|
[TOC2]
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
### FAQ
|
### FAQ
|
||||||
|
|
||||||
> How can I improve my privacy online?
|
> How can I tell if a site or download link is safe? Any tips?
|
||||||
We'd recommend checking out privacy guides like [SSD](https://ssd.eff.org/) and [The New Oil](https://thenewoil.org/).
|
Check out the [Booty Guard](https://rentry.org/bootyguard), our basic safety guide. You should also avoid using the sites / software we've listed as unsafe [here](https://fmhy.net/unsafesites). Still feel unsure? Feel free to reach out to us via [Discord](https://discord.gg/5W9QJKuPkD).
|
||||||
|
|
||||||
> I don't know what seeding or *insert another term* means...
|
> I don't know what seeding or *insert another term* means...
|
||||||
You will find almost all terms related to piracy and more in [The Piracy Glossary](https://rentry.org/the-piracy-glossary). Didn't find what you're looking for or still confused? Reach out to us via [Discord](https://discord.gg/5W9QJKuPkD).
|
You will find almost all terms related to piracy and more in [The Piracy Glossary](https://rentry.org/the-piracy-glossary). Didn't find what you're looking for or still confused? Reach out to us via [Discord](https://discord.gg/5W9QJKuPkD).
|
||||||
|
|
||||||
|
> How can I download Photoshop / Adobe Products for free?
|
||||||
|
You can download pre-cracked Adobe products from [M0nkrus](https://w14.monkrus.ws/) by following [this guide](https://rentry.co/adobesoftware). Alternatively, you could patch them yourself by following [these guides](https://www.reddit.com/r/GenP/wiki/index/) / [2](https://genpguides.github.io/).
|
||||||
|
!!!info M0nkrus is a well-trusted and reputable source for Adobe software in the piracy community.
|
||||||
|
|
||||||
> How can I download / activate Windows or Microsoft Office for free?
|
> How can I download / activate Windows or Microsoft Office for free?
|
||||||
For Windows check out this [section](#windows-piracy), and for Microsoft Office check out this [guide](https://gravesoft.dev/download_windows_office/office_c2r_links/).
|
For Windows check out this [section](#windows-piracy), and for Microsoft Office check out this [guide](https://massgrave.dev/office_c2r_links.html).
|
||||||
|
|
||||||
> Where can I find *insert game title / movie title*?
|
> Where can I find *insert game title / movie title*?
|
||||||
You can use [WhereYouWatch](https://whereyouwatch.com) for finding movies, and for new movies it's a good idea to keep an eye on [r/movieleaks](https://reddit.com/r/movieleaks) as well. You should also be able to find most movies you're looking for in the [streaming section](#streaming). For games, you can use [Rezi](https://rezi.one) or any other site listed [here](https://fmhy.net/gamingpiracyguide#download-games), and for newly released games check out [r/crackwatch](https://reddit.com/r/crackwatch).
|
You can use [WhereYouWatch](https://whereyouwatch.com) for finding movies, and for new movies it's a good idea to keep an eye on [r/movieleaks](https://reddit.com/r/movieleaks) as well. You should also be able to find most movies you're looking for in the [streaming section](#streaming). For games, you can use [Rezi](https://rezi.one) or any other site listed [here](https://fmhy.net/gamingpiracyguide#download-games), and for newly released games check out [r/crackwatch](https://reddit.com/r/crackwatch).
|
||||||
@ -31,25 +34,26 @@ No, don't do that. Windows Defender is more than enough to keep you safe, but if
|
|||||||
!!!warning Stay away from Avast, Norton, and McAfee, as these are "bloatware" and generally unsafe software.
|
!!!warning Stay away from Avast, Norton, and McAfee, as these are "bloatware" and generally unsafe software.
|
||||||
|
|
||||||
> How can I bypass a paywalled article?
|
> How can I bypass a paywalled article?
|
||||||
Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases) / [filter list](https://github.com/bpc-clone/bypass-paywalls-clean-filters) to read the article easily.
|
Use [this](https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/src/master/) / [2](https://gitlab.com/magnolia1234/bypass-paywalls-chrome-clean) to read the article easily.
|
||||||
|
|
||||||
> How can I download an image from *insert stock image site*?
|
> How can I download an image from *insert stock image site*?
|
||||||
You can use [this downloader](https://downloader.la/), and if it doesn't work you can find other stock image downloaders [here](https://fmhy.net/img-tools#stock-photos).
|
You can use [this downloader](https://downloader.la/), and if it doesn't work you can find other stock image downloaders [here](https://fmhy.net/img-tools#stock-photos).
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
### Windows Piracy
|
### Windows Piracy
|
||||||
|
|
||||||
**[Windows ISOs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)** - Download Windows
|
**[Windows ISOs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)** - Download Windows
|
||||||
**[Windows Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** - Activate Windows
|
**[Windows Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** - Activate Windows
|
||||||
|
**[Windows Piracy Guide](https://rentry.org/windows_piracy)** - How to Pirate windows
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
### Linux Piracy
|
### Linux Piracy
|
||||||
|
|
||||||
**[Linux Distros](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_linux_distros)** - Download Linux Distros
|
**[Linux Distros](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_distros)** - Download Linux Distros
|
||||||
**[Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** - Piracy Guide for Linux
|
**[Linux Piracy](https://rentry.co/LinuxPiracy) / [Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** - Piracy Guide for Linux
|
||||||
**[Torrminatorr](https://forum.torrminatorr.com/)** / **[Kapital Sin](https://kapitalsin.com/)** - Download Linux Games
|
**[Torrminatorr](https://forum.torrminatorr.com/) / [Kapital Sin](https://kapitalsin.com/)** - Download Linux Games
|
||||||
|
**[TorrFlix](https://github.com/infinity-plus/TorrFlix)** - Torrent Streaming CLI
|
||||||
**[ani-cli](https://github.com/pystardust/ani-cli)** - Anime Streaming Terminal
|
**[ani-cli](https://github.com/pystardust/ani-cli)** - Anime Streaming Terminal
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -82,14 +86,14 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
|||||||
**[Twitch Adblockers](https://fmhy.net/social-media-tools#twitch-adblockers)** - Block Twitch ads
|
**[Twitch Adblockers](https://fmhy.net/social-media-tools#twitch-adblockers)** - Block Twitch ads
|
||||||
**[Redirect Skippers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** - Bypass redirect sites
|
**[Redirect Skippers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** - Bypass redirect sites
|
||||||
|
|
||||||
!!!note Don't run multiple general adblockers like ublock and adblock plus at the same time. Running more than one can [cause breakage](https://twitter.com/gorhill/status/1033706103782170625). This only applies to general adblockers, so running things like ublock and sponsorblock at the same time is fine.
|
!!!note Don't run multiple general adblockers like ublock and adblock plus at the same time. Running more than one can cause breakage. This only applies to general adblockers, so running things like ublock and sponsorblock at the same time is fine.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
### Anti-virus
|
### Anti-virus
|
||||||
|
|
||||||
**[VirusTotal](https://www.virustotal.com)** - Test the safety of files
|
**[VirusTotal](https://www.virustotal.com) / [Kaspersky Cloud](https://opentip.kaspersky.com/)** - Test the safety of files
|
||||||
**[VTGuide](https://rentry.co/VTGuide)** - Virus scan results guide
|
**[Guide for VirusTotal](https://rentry.org/Guide4VirusTotal)** - Virus scan results guide
|
||||||
**[Malwarebytes Premium](https://rentry.co/FMHYBase64#malwarebytes-prem)** - Antivirus software
|
**[Malwarebytes Premium](https://rentry.co/FMHYBase64#malwarebytes-prem)** - Antivirus software
|
||||||
|
|
||||||
!!!note Antivirus software is usually bloatware. Stick to trusted sources for games and software and you will be fine with nothing but Windows Defender and an occasional Malwarebytes scan. Remember to always scan software before installing it with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
|
!!!note Antivirus software is usually bloatware. Stick to trusted sources for games and software and you will be fine with nothing but Windows Defender and an occasional Malwarebytes scan. Remember to always scan software before installing it with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
|
||||||
@ -100,12 +104,13 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
|||||||
|
|
||||||
**[Privacy Guides](https://www.privacyguides.org/)** - Privacy guides
|
**[Privacy Guides](https://www.privacyguides.org/)** - Privacy guides
|
||||||
**[DuckDuckGo](https://duckduckgo.com/) / [Mojeek](https://www.mojeek.com/)** - Tracker-free web search
|
**[DuckDuckGo](https://duckduckgo.com/) / [Mojeek](https://www.mojeek.com/)** - Tracker-free web search
|
||||||
**[ProtonMail](https://proton.me/mail)** - Encrypted email service
|
**[ProtonMail](https://protonmail.com/)** - Encrypted email service
|
||||||
**[Email Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_email_privacy)** - Email privacy resources
|
**[Email Aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_email_aliasing)** - Email alias forwarding
|
||||||
**[Aegis](https://getaegis.app/) / [Ente](https://github.com/ente-io/auth/)** - 2FA to prevent logins without user authentication
|
**[Aegis](https://getaegis.app/) / [Ente](https://github.com/ente-io/auth/)** - 2FA to prevent logins without user authentication
|
||||||
**[Password Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_password_managers)** - Save multiple passwords
|
**[Password Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_password_managers)** - Save multiple passwords
|
||||||
**[HaveIBeenPwned](https://haveibeenpwned.com/)** - Get notified when your email or phone number has been found in a data breach
|
**[HaveIBeenPwned](https://haveibeenpwned.com/)** - Get notified when your email or phone number has been found in a data breach
|
||||||
**[VPN List](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** - VPN index
|
**[VPN List](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** - VPN index
|
||||||
|
**[File Encryption Tools](https://fmhy.pages.dev/storage/#file-encryption-tools)** - File encryption apps / tools
|
||||||
|
|
||||||
!!!note Note that a VPN is not needed outside torrenting. You can avoid the need for one altogether by sticking to direct download and streaming sites.
|
!!!note Note that a VPN is not needed outside torrenting. You can avoid the need for one altogether by sticking to direct download and streaming sites.
|
||||||
|
|
||||||
@ -113,11 +118,11 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
|||||||
|
|
||||||
### Streaming
|
### Streaming
|
||||||
|
|
||||||
**[movie-web](https://erynith.github.io/movie-web-instances/) + [Add Sources](https://pastebin.com/RHXHtXJZ) / [Braflix](https://www.braflix.ru/) / [watch.lonelil](https://watch.lonelil.ru/) / [FMovies](https://fmovies24.to/) / [Binged](https://binged.live/)** - Fast movie / TV streaming
|
**[lonelil](https://watch.lonelil.com/) / [Braflix](https://www.braflix.app/) / [FMovies](https://fmoviesz.to/)** - Fast movie / TV streaming
|
||||||
**[HiAnime](https://hianime.to/)** - Fast anime streaming
|
**[AniWatch](https://aniwatch.to/) / [AniWave](https://aniwave.to/)** - Fast anime streaming
|
||||||
**[Dramacool](https://dramacool.cy/)** - Fast Asian drama streaming
|
**[Dramacool](https://dramacool.cy/)** - Fast Asian drama streaming
|
||||||
**[SportsSurge](https://v2.sportsurge.net/home4/)** - Live sports streaming
|
**[SportsSurge](https://sportsurge.net/)** - Live sports streaming
|
||||||
**[Spotify](https://spotify.com/) / [YouTube Music](https://music.youtube.com/)** - Music & podcast streaming / [Spotify Adblock](https://github.com/SpotX-Official/SpotX)
|
**[Spotify](https://spotify.com/) / [YouTube Music](https://music.youtube.com/)** - Music & podcast streaming / [Spotify Adblock](https://github.com/amd64fox/SpotX)
|
||||||
**[Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0)**, [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search
|
**[Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0)**, [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search
|
||||||
**[TV CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg)** - Multi-site TV search
|
**[TV CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg)** - Multi-site TV search
|
||||||
**[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei) / [2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu)** - Multi-site anime search
|
**[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei) / [2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu)** - Multi-site anime search
|
||||||
@ -127,19 +132,20 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
|||||||
|
|
||||||
### Downloading
|
### Downloading
|
||||||
|
|
||||||
**[LRepacks](https://lrepacks.net/) / [CRACKSurl](https://cracksurl.com/) / [M0nkrus](https://w14.monkrus.ws/)** - Trusted software sites
|
**[LRepacks](https://lrepacks.net/)** or **[CRACKSurl](https://cracksurl.com/)** - Trusted software sites
|
||||||
**[Pahe](https://pahe.ink/)** - Fast video downloads
|
**[OlaMovies](https://olamovies.bar/)** - Fast video downloads
|
||||||
**[FitGirl Repacks](https://fitgirl-repacks.site/)** / [Discord](https://discord.gg/Up3YARe4RW) / **[SteamRIP](https://steamrip.com/)** - Game download sites
|
**[FitGirl Repacks](https://fitgirl-repacks.site/) / [SteamRIP](https://steamrip.com/) / [GOG-Games](https://gog-games.to/)** - Game download sites / [FitGirl Discord](https://discord.gg/Up3YARe4RW)
|
||||||
|
**[Vimms Lair](https://vimm.net/) / [No-Intro](https://rentry.co/FMHYBase64#no-intro)** - ROM download sites / [Emulators](https://emulation.gametechwiki.com/)
|
||||||
**[Firehawk52](https://rentry.org/firehawk52)** - Music ripping guide
|
**[Firehawk52](https://rentry.org/firehawk52)** - Music ripping guide
|
||||||
**[lucida](https://lucida.to/) / [DoubleDouble](https://doubledouble.top/)** - Multi-Site audio download
|
**[DoubleDouble](https://doubledouble.top/)** - Multi-Site audio download
|
||||||
|
**[Free MP3 Download](https://free-mp3-download.net/)** - MP3 / FLAC downloads
|
||||||
**[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Audio download app
|
**[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Audio download app
|
||||||
**[squid.wtf](https://squid.wtf/)** - Deezer FLAC download
|
|
||||||
**[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z) / [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h)** - Multi-site download search
|
**[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z) / [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h)** - Multi-site download search
|
||||||
**[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr#gsc.tab=0) / [2](https://cse.google.com/cse?cx=89f2dfcea452fc451) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578#gsc.tab=0)** - Multi-site video download search
|
**[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr#gsc.tab=0) / [2](https://cse.google.com/cse?cx=89f2dfcea452fc451) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578#gsc.tab=0)** - Multi-site video download search
|
||||||
**[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)** - Multi-site anime download search
|
**[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)** - Multi-site anime download search
|
||||||
**[Game Download CSE](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_download_cse)** - Multi-site game download search
|
**[Game Download CSE](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_download_cse)** - Multi-site game download search
|
||||||
**[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io) / [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578)** - Multi-site audio download search
|
**[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io) / [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578)** - Multi-site audio download search
|
||||||
!!!note When using DDLs, it's generally recommended to use a download manager such as JDownloader, as they improve the ease of downloading along with the speed. You can find them listed [here](https://fmhy.net/file-tools#download-managers).
|
!!!note When using DDLs, it's generally recommended to use a download manager such as Internet Download Manager (IDM) or JDownloader, as they improve the ease of downloading along with the speed. You can find them listed [here](https://fmhy.net/file-tools#download-managers).
|
||||||
***
|
***
|
||||||
|
|
||||||
### Torrenting
|
### Torrenting
|
||||||
@ -161,8 +167,8 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
|||||||
|
|
||||||
### Reading
|
### Reading
|
||||||
|
|
||||||
**[Mobilism](https://forum.mobilism.org) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Annas Archive](https://annas-archive.gs/)** / [2](https://annas-archive.se/) - Books, audiobooks, comics & more
|
**[Mobilism](https://forum.mobilism.org) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Annas Archive](https://annas-archive.org/)** - Books, audiobooks, comics & more
|
||||||
**[Audiobook Bay](https://audiobookbay.is/)** - Audiobook torrents / **Avoid fake DL links, use [Torrents / Magnets](https://i.ibb.co/8sV2061/0fa8159b11bb.png)**
|
**[Audiobook Bay](https://audiobookbay.is/)** - Audiobook torrents / Avoid fake DL links, use [Torrents / Magnets](https://i.ibb.co/8sV2061/0fa8159b11bb.png)
|
||||||
**[ReadComicsOnline](https://readcomiconline.li/)** - Read comics online
|
**[ReadComicsOnline](https://readcomiconline.li/)** - Read comics online
|
||||||
**[MangaReader](https://mangareader.to/)** - Read manga online
|
**[MangaReader](https://mangareader.to/)** - Read manga online
|
||||||
**[Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8) / [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu) / [3](https://cse.google.com/cse?cx=e9657e69c76480cb8) / [4](https://cse.google.com/cse?cx=c46414ccb6a943e39) / [5](https://ravebooksearch.com/)** - Multi-site book search
|
**[Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8) / [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu) / [3](https://cse.google.com/cse?cx=e9657e69c76480cb8) / [4](https://cse.google.com/cse?cx=c46414ccb6a943e39) / [5](https://ravebooksearch.com/)** - Multi-site book search
|
||||||
@ -178,15 +184,16 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
|||||||
**[Android AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** / **[iOS AdGuard Premium](https://rentry.co/FMHYBase64#adguard-pro-ios)** - Adblocking app
|
**[Android AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** / **[iOS AdGuard Premium](https://rentry.co/FMHYBase64#adguard-pro-ios)** - Adblocking app
|
||||||
**[Android Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk)** / **[iOS Modded Spotify](https://rentry.co/FMHYBase64#spotify)** - Modded Spotify
|
**[Android Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk)** / **[iOS Modded Spotify](https://rentry.co/FMHYBase64#spotify)** - Modded Spotify
|
||||||
**[Cromite](https://github.com/uazo/cromite) / [Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/) / [Kiwi](https://play.google.com/store/apps/details?id=com.kiwibrowser.browser&hl=en_US&gl=US)** - Android web browsers
|
**[Cromite](https://github.com/uazo/cromite) / [Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/) / [Kiwi](https://play.google.com/store/apps/details?id=com.kiwibrowser.browser&hl=en_US&gl=US)** - Android web browsers
|
||||||
|
**[Brave](https://apps.apple.com/us/app/brave-private-web-browser-vpn/id1052879175)** - iOS web browser / [Improve Safari](https://apps.apple.com/us/app/hyperweb/id1581824571)
|
||||||
**[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Modded APKs
|
**[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Modded APKs
|
||||||
**[/r/ApkApps Megathread](https://apksapps.notion.site/apksapps/096ef38f452342ba99b4e1509a449729?v=9970360b443643789c333bd2c7180009)** - Updated list of modded APKs / [Subreddit](https://www.reddit.com/r/ApksApps) / [Discord](https://discord.gg/Kr5EWKZU5Y)
|
**[/r/ApkApps Megathread](https://apksapps.notion.site/apksapps/096ef38f452342ba99b4e1509a449729?v=9970360b443643789c333bd2c7180009)** - Updated list of modded APKs / [Subreddit](https://www.reddit.com/r/ApksApps) / [Discord](https://discord.gg/Kr5EWKZU5Y)
|
||||||
**[APKMirror](https://www.apkmirror.com/)** - Untouched APKs
|
**[APKMirror](https://www.apkmirror.com/)** - Untouched APKs
|
||||||
**[F-Droid](https://f-droid.org/)** - FOSS Android Apps
|
**[F-Droid](https://f-droid.org/)** - FOSS Android Apps
|
||||||
**[Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8) / [2](https://cse.google.com/cse?cx=73948689c2c206528) / [3](https://cse.google.com/cse?cx=a805854b6a196d6a6)** - Multi-site APK search
|
**[Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8) / [2](https://cse.google.com/cse?cx=73948689c2c206528) / [3](https://cse.google.com/cse?cx=a805854b6a196d6a6)** - Multi-site APK search
|
||||||
**[Stremio](https://www.stremio.com/)** - Video streaming app / Use VPN / [Guide](https://rentry.co/privatestremio)
|
**[Stremio](https://www.stremio.com/)** - Video streaming app / Use VPN
|
||||||
**[Patch Reddit Clients](https://docs.google.com/document/u/0/d/1wHvqQwCYdJrQg4BKlGIVDLksPN0KpOnJWniT6PbZSrI/mobilebasic)** - How To Patch 3rd Party Reddit Clients
|
**[Patch Reddit Clients](https://docs.google.com/document/u/0/d/1wHvqQwCYdJrQg4BKlGIVDLksPN0KpOnJWniT6PbZSrI/mobilebasic)** - How To Patch 3rd Party Reddit Clients
|
||||||
**[ReVanced Manager](https://github.com/revanced/revanced-manager)** - Ad-Free YouTube, Reddit, X etc. Patcher / [Discord](https://discord.com/invite/rF2YcEjcrT) / [Guide](https://redd.it/xlcny9)
|
**[ReVanced Manager](https://github.com/revanced/revanced-manager)** - Ad-free YouTube / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||||
**[Complete Jailbreak Chart](https://ios.cfw.guide/)** - Jailbreaking info & tools
|
**[Complete Jailbreak Chart](https://appledb.dev/)** - Jailbreaking info & tools / [Discord](https://discord.gg/rtfNDxnJfB)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -199,6 +206,7 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
|||||||
**[Download Managers](https://fmhy.net/file-tools#download-managers)** - Manage file downloads
|
**[Download Managers](https://fmhy.net/file-tools#download-managers)** - Manage file downloads
|
||||||
**[File Archivers](https://fmhy.net/file-tools#file-archivers)** - Unzip / Compress files
|
**[File Archivers](https://fmhy.net/file-tools#file-archivers)** - Unzip / Compress files
|
||||||
**[OpenSubtitles](https://opensubtitles.org/)** - Most popular subtitles site
|
**[OpenSubtitles](https://opensubtitles.org/)** - Most popular subtitles site
|
||||||
|
**[HolyUnblocker](https://www.holyubofficial.net/)** - View sites blocked by ISP / school
|
||||||
**[Unsafe Sites / Software](https://redd.it/10bh0h9)** - Things we recommend avoiding
|
**[Unsafe Sites / Software](https://redd.it/10bh0h9)** - Things we recommend avoiding
|
||||||
|
|
||||||
***
|
***
|
||||||
|
2552
DEVTools.md
2552
DEVTools.md
File diff suppressed because it is too large
Load Diff
@ -6,20 +6,24 @@
|
|||||||
|
|
||||||
# ► Download Directories
|
# ► Download Directories
|
||||||
|
|
||||||
* **Note** - Some Open Directories grab IP's, so use a VPN or Tor when accessing them.
|
**Note** - Some Open Directories grab IP's, so use a VPN or Tor when accessing them.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* 🌐 **[/r/opendirectories](https://www.reddit.com/r/opendirectories/)** - Open Directories Subreddit / [Telegram](https://t.me/r_OpenDirectories) / [/u/ODScanner](https://reddit.com/u/ODScanner)
|
* 🌐 **[/r/opendirectories](https://www.reddit.com/r/opendirectories/)** - Open Directories Subreddit / [Telegram](https://t.me/r_OpenDirectories) / [/u/ODScanner](https://reddit.com/u/ODScanner)
|
||||||
|
* 🌐 **[smolOD](https://rentry.co/FMHYBase64#smolod)** - Small Open Directories
|
||||||
|
* ↪️ **[Open Directory Indexes](https://rentry.co/FMHYBase64#open-directory-indexes)**
|
||||||
* ↪️ **[Open Directory Search String Builders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_open_directory_search_string_builder)**, [2](https://redd.it/933pzm), [3](https://redd.it/g4kfem), [4](https://redd.it/lj0a1e)
|
* ↪️ **[Open Directory Search String Builders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_open_directory_search_string_builder)**, [2](https://redd.it/933pzm), [3](https://redd.it/g4kfem), [4](https://redd.it/lj0a1e)
|
||||||
* ↪️ **[Google Piracy Groups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_google_piracy_discussion_groups)**
|
* ↪️ **[Google Piracy Groups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_google_piracy_discussion_groups)**
|
||||||
* ⭐ **[Directory Lister](https://directorylister.com/)** - Open Directory Explorer
|
* ⭐ **[Directory Lister](https://directorylister.com/)** - Open Directory Explorer
|
||||||
* ⭐ **[EyeDex](https://www.eyedex.org/)**, [ODCrawler](https://odcrawler.xyz/), [ODS](https://sites.google.com/view/l33tech/tools/ods) or [mmnt](https://www.mmnt.net/) - Open Directory Search Engines
|
* ⭐ **[EyeDex](https://www.eyedex.org/)**, [ODCrawler](https://odcrawler.xyz/), [OpenSho](https://opendirindex.opensho.com/), [ODS](https://sites.google.com/view/l33tech/tools/ods) or [mmnt](https://www.mmnt.net/) - Open Directory Search Engines
|
||||||
* [mega.archive (Discord)](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive
|
* ⭐ **[TG Archive](https://tgarchive.eu.org/)** - Telegram File Search
|
||||||
|
* [mega.archive](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive
|
||||||
* [GDrive Server](https://telegra.ph/GDrive-Server-Direct-Links-06-28)
|
* [GDrive Server](https://telegra.ph/GDrive-Server-Direct-Links-06-28)
|
||||||
* [Napalm FTP](https://www.searchftps.net/), [Mamont](https://www.mmnt.ru/int/) or [Search-22](https://search-22.com/ftp-search-tools) - FTP Search
|
* [Napalm FTP](https://www.searchftps.net/), [Mamont](https://www.mmnt.ru/int/) or [Search-22](https://search-22.com/ftp-search-tools) - FTP Search
|
||||||
* [dedigger](https://www.dedigger.com/) - GDrive File Search
|
* [dedigger](https://www.dedigger.com/) - GDrive File Search
|
||||||
* [Sala De Espera](https://matrix.to/#/!qbOtnJEDGsPuWZBHLX:matrix.org?via=matrix.org) - Drive Sharing Community
|
* [Sala De Espera](https://matrix.to/#/!qbOtnJEDGsPuWZBHLX:matrix.org?via=matrix.org) / [Discord](https://discord.gg/ZRhpUtzvkC) - Drive Sharing Community
|
||||||
|
* [Create Open Directory Search Engine](https://redd.it/d3w2fu)
|
||||||
* [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer
|
* [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer
|
||||||
* [Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0) - Search Pastebin Directories
|
* [Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0) - Search Pastebin Directories
|
||||||
* [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive
|
* [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive
|
||||||
@ -29,19 +33,19 @@
|
|||||||
|
|
||||||
# ► Download Sites
|
# ► Download Sites
|
||||||
|
|
||||||
* **Note** - General DDL sites use a lot of different sources, so it's best to avoid them for anything you install, like software, games or APKs. You can also use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners.
|
**Note** - General DDL sites use a lot of different sources, so it's best to avoid them for anything you install, like software, games or APKs. You can also use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[Archive.org](https://archive.org/)** - Video / Audio / Magazines / Newspapers / ROMs / [Downloader](https://github.com/MiniGlome/Archive.org-Downloader) / [CLI](https://github.com/jjjake/internetarchive)
|
* ⭐ **[Archive.org](https://archive.org/)** - Video / Audio / Magazines / Newspapers / ROMs / [Downloader](https://github.com/MiniGlome/Archive.org-Downloader) / [CLI](https://github.com/jjjake/internetarchive)
|
||||||
* ⭐ **[The Eye](https://beta.the-eye.eu/)** - Audio / Books / Comics / Magazines / [Discord](https://discord.com/invite/the-eye)
|
* ⭐ **[The Eye](https://beta.the-eye.eu/)** - Audio / Books / Comics / Magazines / [Discord](https://discord.com/invite/the-eye)
|
||||||
|
* ⭐ **[DownloadHa](https://www.downloadha.com)** - Video / Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||||
* ⭐ **[DirtyWarez](https://forum.dirtywarez.com/)** - Video / Audio / Books / Comics
|
* ⭐ **[DirtyWarez](https://forum.dirtywarez.com/)** - Video / Audio / Books / Comics
|
||||||
* ⭐ **[/r/DataHoarder](https://reddit.com/r/DataHoarder)**, [Data Horde](https://datahorde.org/), [Archive Team](https://wiki.archiveteam.org/) / [Subreddit](https://www.reddit.com/r/Archiveteam/), [Gnutella Forums](https://www.gnutellaforums.com/) or [FileSharingTalk](https://filesharingtalk.com/forum.php) - File Hoarding Forums
|
* ⭐ **[/r/DataHoarder](https://reddit.com/r/DataHoarder)**, [Data Horde](https://datahorde.org/), [Archive Team](https://wiki.archiveteam.org/) / [Subreddit](https://www.reddit.com/r/Archiveteam/), [Gnutella Forums](https://www.gnutellaforums.com/) or [FileSharingTalk](https://filesharingtalk.com/forum.php) - File Hoarding Forums
|
||||||
* [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end)
|
* [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end)
|
||||||
* [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics
|
* [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics
|
||||||
* [rlsbb](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://comment.rlsbb.cc/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker)
|
* [rlsbb](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://comment.rlsbb.cc/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker)
|
||||||
* [Adit-HD](https://www.adit-hd.com/) - Video / Audio / Books
|
* [Adit-HD](https://www.adit-hd.com/) - Video / Audio / Books
|
||||||
* [AsanDL](http://asandl.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
|
||||||
* [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses
|
* [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses
|
||||||
* [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW
|
* [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW
|
||||||
* [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines
|
* [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines
|
||||||
@ -87,7 +91,7 @@
|
|||||||
|
|
||||||
## ▷ Search Sites
|
## ▷ Search Sites
|
||||||
|
|
||||||
* **Note** - These aggregate from multiple sources, so it's best to avoid them for software / games.
|
**Note** - These aggregate from multiple sources, so it's best to avoid them for software / games.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -95,13 +99,10 @@
|
|||||||
* ⭐ **[FilePursuit](https://filepursuit.com)** - [Discord](https://discord.gg/xRfFd8h)
|
* ⭐ **[FilePursuit](https://filepursuit.com)** - [Discord](https://discord.gg/xRfFd8h)
|
||||||
* ⭐ **[4Shared](https://www.4shared.com/)**
|
* ⭐ **[4Shared](https://www.4shared.com/)**
|
||||||
* ⭐ **[Hatt](https://github.com/FrenchGithubUser/Hatt)** - File Search App
|
* ⭐ **[Hatt](https://github.com/FrenchGithubUser/Hatt)** - File Search App
|
||||||
* [Meawfy](https://meawfy.com/) - Mega.nz Search
|
|
||||||
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1)
|
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1)
|
||||||
* [scnlog](https://scnlog.me/)
|
* [scnlog](https://scnlog.me/)
|
||||||
* [fidigger](https://fidigger.com/)
|
|
||||||
* [filesearch.link](https://filesearch.link/)
|
* [filesearch.link](https://filesearch.link/)
|
||||||
* [Linktury](https://www.linktury.com/)
|
* [Linktury](https://www.linktury.com/)
|
||||||
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search
|
|
||||||
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine
|
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine
|
||||||
* [SunXDCC](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
|
* [SunXDCC](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
|
||||||
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files
|
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files
|
||||||
@ -130,59 +131,80 @@
|
|||||||
|
|
||||||
# ► Software Sites
|
# ► Software Sites
|
||||||
|
|
||||||
* **Note** - Remember to always scan software before installing with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
|
**Note** - Remember to always scan software before installing with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ↪️ **[Windows ISOs / Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)**
|
|
||||||
* ⭐ **[LRepacks](https://lrepacks.net/)**
|
* ⭐ **[LRepacks](https://lrepacks.net/)**
|
||||||
* ⭐ **[CRACKSurl](https://cracksurl.com/)** - [Telegram](https://t.me/cracksurldotcom)
|
* ⭐ **[CRACKSurl](https://cracksurl.com/)** - [Telegram](https://t.me/cracksurldotcom)
|
||||||
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/)
|
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/)
|
||||||
* ⭐ **[soft98](https://soft98.ir/)** - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
* ⭐ **[nsane.down](https://www.nsaneforums.com/)** - Signup Required
|
||||||
* ⭐ **[Game Bounty Software](https://gamebounty.world/software/)** - Download / [Discord](https://dsc.gg/gamebounty)
|
|
||||||
* ⭐ **[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
|
||||||
* [AIOWares](https://www.aiowares.com/)
|
* [AIOWares](https://www.aiowares.com/)
|
||||||
* [TheMicroTech](https://programs.themicrotech.net/)
|
* [TheMicroTech](https://programs.themicrotech.net/)
|
||||||
* [DownloadHa](https://www.downloadha.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
* [soft98](https://soft98.ir/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||||
* [Patoghu](https://patoghu.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
* [Patoghu](https://patoghu.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||||
* [Softlay](https://www.softlay.com/downloads/)
|
* [Softlay](https://www.softlay.com/downloads/)
|
||||||
* [Mutaz](https://www.mutaz.pro/)
|
* [Mutaz.net](https://www.mutaz.net/)
|
||||||
* [Heidoc](https://www.heidoc.net/joomla/)
|
* [Heidoc](https://www.heidoc.net/joomla/)
|
||||||
* [AsanDL](http://asandl.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
|
||||||
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/)
|
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/)
|
||||||
|
* [SamLab](https://samlab.ws/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||||
* [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns)
|
* [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns)
|
||||||
* [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels
|
* [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels
|
||||||
* [Rarewares](https://www.rarewares.org/) - Rare Software
|
* [Rarewares](https://www.rarewares.org/) - Rare Software
|
||||||
* [PLC4Me](https://plc4me.com/) - Automation Software
|
* [PLC4Me](https://plc4me.com/) - Automation Software
|
||||||
|
* [civileng_soft](https://t.me/civileng_soft) - Civil Engineering Software
|
||||||
* [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive
|
* [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive
|
||||||
* [Team V.R releases](https://codec.kyiv.ua/releases.html) - Professional Video, Audio & Adobe Software / Plugins
|
* [Team V.R releases](https://codec.kiev.ua/releases.html) - Professional Video, Audio & Adobe Software / Plugins
|
||||||
* [WLSetup-All](https://rentry.co/FMHYBase64#wlsetup-all) - Windows Live Essentials 2012 Archive
|
* [WLSetup-All](https://rentry.co/FMHYBase64#wlsetup-all) - Windows Live Essentials 2012 Archive
|
||||||
* [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Discord](https://discord.gg/BVBh2XVn9s)
|
* [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Discord](https://discord.com/invite/X9ZuegSM4N)
|
||||||
* [ZXPInstaller](https://zxpinstaller.com/) - Adobe Extension Installer
|
* [ZXPInstaller](https://github.com/elements-storage/ZXPInstaller) - Adobe Extension Installer
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Freeware Sites
|
## ▷ Freeware Sites
|
||||||
|
|
||||||
* 🌐 **[Awesome Open Source](https://awesomeopensource.com/)**, [OpenAlternative](https://openalternative.co/), [Opensource Builders](https://opensource.builders/), [OSSSoftware](https://osssoftware.org/), [OSS Gallery](https://oss.gallery/), [Awesome OSS](https://github.com/RunaCapital/awesome-oss-alternatives), [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) or [FossHub](https://www.fosshub.com/) - FOSS Indexes
|
* 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)** - Freeware Index
|
||||||
* 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)**, [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/), [Free Lunch](https://github.com/auctors/free-lunch), [MajorGeeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) or [TinyApps](https://tinyapps.org/) - Freeware Indexes
|
* 🌐 **[Awesome Selfhosted](https://github.com/awesome-selfhosted/awesome-selfhosted)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) - Selfhosted Software Index
|
||||||
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) or [Selfh.st](https://selfh.st/apps/) - Selfhosted Software Indexes
|
|
||||||
* 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index
|
* 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index
|
||||||
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
||||||
* ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)**
|
* ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)**
|
||||||
|
* ↪️ **[Alternative Software Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_alternative_software_.2F_app_sites)**
|
||||||
* ⭐ **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend
|
* ⭐ **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend
|
||||||
* ⭐ **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore)
|
* ⭐ **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore)
|
||||||
* [SourceForge](https://sourceforge.net/)- FOSS Repositories
|
* [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/) - Freeware Index
|
||||||
* [Fossies](https://fossies.org/all.html) - FOSS Archive
|
* [OldVersion](http://www.oldversion.com/) - Old Versions of Software
|
||||||
* [Free Software Directory](https://directory.fsf.org/wiki/Main_Page) or [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories) - FOSS Wikis
|
* [OlderGeeks](https://oldergeeks.com/) - Freeware Index
|
||||||
* [Softpedia](https://www.softpedia.com/), [Realityripple](https://realityripple.com/), [OlderGeeks](https://oldergeeks.com/), [FilePuma](https://www.filepuma.com/), [FileEagle](https://www.fileeagle.com/), [LO4D](https://www.lo4d.com/), [GRC](https://www.grc.com/freepopular.htm), [Uwe Sieber's Homepage](https://www.uwe-sieber.de/english.html) or [Software Informer](https://software.informer.com/) - Freeware
|
* [Free Software MF](https://whoisdsmith.gitbook.io/free-software-mf) - Freeware Index
|
||||||
* [PortableApps.com](https://portableapps.com/), [Portapps](https://portapps.io/) or [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps
|
* [Softpedia](https://www.softpedia.com/) - Freeware Index
|
||||||
|
* [Realityripple](https://realityripple.com/) - Freeware Index
|
||||||
|
* [Software Informer](https://software.informer.com/) - Freeware Index
|
||||||
|
* [Awesome Windows](https://github.com/Awesome-Windows/Awesome) - Freeware Index
|
||||||
|
* [Major Geeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) - Freeware Index
|
||||||
|
* [SourceForge](https://sourceforge.net/)- FOSS Index
|
||||||
|
* [FossHub](https://www.fosshub.com/)- FOSS Index
|
||||||
|
* [Fossies](https://fossies.org/all.html)- FOSS Index
|
||||||
|
* [Free Software Directory](https://directory.fsf.org/wiki/Main_Page)- FOSS Index
|
||||||
|
* [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories)- FOSS Index
|
||||||
|
* [OSSSoftware](https://osssoftware.org/) - FOSS Index
|
||||||
|
* [Awesome Open Source](https://awesomeopensource.com/) - FOSS Index
|
||||||
|
* [Open-Source Alternatives](https://github.com/btw-so/open-source-alternatives) - FOSS Index
|
||||||
|
* [Opensource Builders](https://opensource.builders/) - FOSS Index
|
||||||
|
* [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) - FOSS Index
|
||||||
|
* [LO4D](https://www.lo4d.com/) - Freeware Index
|
||||||
|
* [FilePuma](https://www.filepuma.com/) - Freeware Index
|
||||||
|
* [GRC](https://www.grc.com/freepopular.htm) - Freeware Index
|
||||||
|
* [TinyApps](https://tinyapps.org/) - Freeware Index
|
||||||
|
* [Phrozen](https://www.phrozen.io/) - Freeware Index
|
||||||
|
* [FileEagle](https://www.fileeagle.com/) - Freeware Index
|
||||||
|
* [PortableApps.com](https://portableapps.com/) - Portable Apps
|
||||||
|
* [Portapps](https://portapps.io/) - Portable Apps
|
||||||
|
* [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps
|
||||||
|
* [Uwe Sieber's Homepage](https://www.uwe-sieber.de/english.html)
|
||||||
* [Nirsoft](https://www.nirsoft.net/), [Windows-Utilities](https://orga.cat/windows-utilities), [OS Vault](https://osvault.weebly.com/directory.html) or [WinTools](https://www.wintools.info/) - Windows Software
|
* [Nirsoft](https://www.nirsoft.net/), [Windows-Utilities](https://orga.cat/windows-utilities), [OS Vault](https://osvault.weebly.com/directory.html) or [WinTools](https://www.wintools.info/) - Windows Software
|
||||||
* [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG)
|
* [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG)
|
||||||
* [RaymondFreeSoftware](https://t.me/raymondfreesoftware) - Telegram
|
* [RaymondFreeSoftware](https://t.me/raymondfreesoftware) - Telegram
|
||||||
* [Suckless](https://suckless.org/) - Simple Software Archive
|
* [Suckless](https://suckless.org/) - Simple Software Archive
|
||||||
* [OldVersion](http://www.oldversion.com/) - Old Versions of Software
|
|
||||||
* [WinWorldPC](https://winworldpc.com/) - Abandonware / Operating Systems
|
* [WinWorldPC](https://winworldpc.com/) - Abandonware / Operating Systems
|
||||||
* [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games
|
* [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games
|
||||||
* [MS-DOS Index](http://www.lanet.lv/simtel.net/msdos/index-msdos.html) - MS-DOS Software
|
* [MS-DOS Index](http://www.lanet.lv/simtel.net/msdos/index-msdos.html) - MS-DOS Software
|
||||||
@ -191,21 +213,6 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Alt Software Sites
|
|
||||||
|
|
||||||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** - Crowdsourced Recommendations
|
|
||||||
* [Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives) - Adobe Software Alternative Index
|
|
||||||
* [SaaSHub](https://www.saashub.com/)
|
|
||||||
* [Alternative.me](https://alternative.me/)
|
|
||||||
* [opensourcealternative.to](https://www.opensourcealternative.to/) - Open-source Alternatives
|
|
||||||
* [TopAlter.com](https://topalter.com/)
|
|
||||||
* [ListAlternative](https://www.listalternative.com/)
|
|
||||||
* [Alternative Internet](https://github.com/redecentralize/alternative-internet)
|
|
||||||
* [Appmus](https://appmus.com/)
|
|
||||||
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [Sitelike.org](https://www.sitelike.org/), [SitesLike](https://www.siteslike.com/) - Similar Site Lists
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites)
|
## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -220,6 +227,7 @@
|
|||||||
* [DC++](https://dcplusplus.sourceforge.io/index.html) - File Sharing App / [Clients](https://dchublists.com/clients/) / [Hubs](https://dchublists.com/), [2](https://dchublist.org/), [3](https://dchublist.biz/)
|
* [DC++](https://dcplusplus.sourceforge.io/index.html) - File Sharing App / [Clients](https://dchublists.com/clients/) / [Hubs](https://dchublists.com/), [2](https://dchublist.org/), [3](https://dchublist.biz/)
|
||||||
* [eMule](https://www.emule-project.net/), [Fopnu](https://fopnu.com/), [Shareaza](https://shareaza.sourceforge.net/) or [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App
|
* [eMule](https://www.emule-project.net/), [Fopnu](https://fopnu.com/), [Shareaza](https://shareaza.sourceforge.net/) or [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App
|
||||||
* [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/)
|
* [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/)
|
||||||
|
* [WireShare](https://sourceforge.net/projects/wireshare/) - File Sharing App / LimeWire Fork
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -228,7 +236,6 @@
|
|||||||
* 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources
|
* 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources
|
||||||
* ⭐ **[IRC Tutorial](https://rentry.org/irc)**, [Libera Guides](https://libera.chat/guides/), [LoadGuru](https://www.theloadguru.com/xdcc-irc-beginners-guide/), [New Blood](https://anonops.com/newblood/) or [Simple Wiki Guide](https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial) - IRC Guides
|
* ⭐ **[IRC Tutorial](https://rentry.org/irc)**, [Libera Guides](https://libera.chat/guides/), [LoadGuru](https://www.theloadguru.com/xdcc-irc-beginners-guide/), [New Blood](https://anonops.com/newblood/) or [Simple Wiki Guide](https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial) - IRC Guides
|
||||||
* [AdiIRC](https://adiirc.com/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html) or [Bitchx](https://bitchx.sourceforge.net/) - IRC Clients
|
* [AdiIRC](https://adiirc.com/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html) or [Bitchx](https://bitchx.sourceforge.net/) - IRC Clients
|
||||||
* [Hexchat](https://hexchat.github.io/) - Private IRC Client
|
|
||||||
* [KiwiIRC](https://kiwiirc.com/) or [TheLounge](https://thelounge.chat/) - WebIRC Client
|
* [KiwiIRC](https://kiwiirc.com/) or [TheLounge](https://thelounge.chat/) - WebIRC Client
|
||||||
* [irc2go](https://en.irc2go.com/) - Browse IRC Chat Rooms / [Top 1000](https://netsplit.de/networks/top100.php)
|
* [irc2go](https://en.irc2go.com/) - Browse IRC Chat Rooms / [Top 1000](https://netsplit.de/networks/top100.php)
|
||||||
* [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks
|
* [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks
|
||||||
@ -243,8 +250,6 @@
|
|||||||
* [/r/usenet](https://reddit.com/r/usenet)
|
* [/r/usenet](https://reddit.com/r/usenet)
|
||||||
* [Usenet-Uploaders](https://github.com/animetosho/Nyuu/wiki/Usenet-Uploaders), [ngPost](https://github.com/mbruel/ngPost) or [Nyuu](https://github.com/animetosho/Nyuu) - Usenet Uploaders
|
* [Usenet-Uploaders](https://github.com/animetosho/Nyuu/wiki/Usenet-Uploaders), [ngPost](https://github.com/mbruel/ngPost) or [Nyuu](https://github.com/animetosho/Nyuu) - Usenet Uploaders
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Indexers
|
## ▷ Indexers
|
||||||
|
|
||||||
* 🌐 **[Indexer List](https://www.reddit.com/r/usenet/wiki/indexers/)** - Indexer List
|
* 🌐 **[Indexer List](https://www.reddit.com/r/usenet/wiki/indexers/)** - Indexer List
|
||||||
@ -254,20 +259,20 @@
|
|||||||
* [orionoid](https://orionoid.com/)
|
* [orionoid](https://orionoid.com/)
|
||||||
* [binsearch](https://binsearch.info/)
|
* [binsearch](https://binsearch.info/)
|
||||||
* [abnzb](https://www.abnzb.com/)
|
* [abnzb](https://www.abnzb.com/)
|
||||||
* [NZB Index](https://www.nzbindex.com/), [2](https://www.nzbindex.nl/)
|
* [NZB Index](https://www.nzbindex.com/)
|
||||||
* [Newznab](https://www.newznab.com/)
|
* [Newznab](https://www.newznab.com/)
|
||||||
|
* [NZBIndex](https://www.nzbindex.nl/)
|
||||||
|
* [NZBGrabit](https://www.nzbgrabit.xyz/)
|
||||||
* [NZBStars](https://nzbstars.com/)
|
* [NZBStars](https://nzbstars.com/)
|
||||||
* [usenet-crawler](https://www.usenet-crawler.com/)
|
|
||||||
* [GingaDaddy](https://www.gingadaddy.com/)
|
* [GingaDaddy](https://www.gingadaddy.com/)
|
||||||
* [NZBFinder](https://nzbfinder.ws/)
|
* [NZBFinder](https://nzbfinder.ws/)
|
||||||
* [NZBKing](https://nzbking.com/)
|
* [NZBKing](https://nzbking.com/)
|
||||||
* [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404
|
* [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404
|
||||||
* [OldUSe](https://article.olduse.net/) - Search Usenet Articles
|
* [OldUSe](https://article.olduse.net/) - Search Usenet Articles
|
||||||
* [althub](https://althub.co.za) - Unlimited Free Trials
|
* [althub](https://althub.co.za) - Unlimited Free Trials
|
||||||
|
* [nZEDb](https://github.com/nZEDb/nZEDb) - Self-Hosted
|
||||||
* [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client
|
* [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Providers
|
## ▷ Providers
|
||||||
|
|
||||||
* 🌐 **[/r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists
|
* 🌐 **[/r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists
|
||||||
@ -278,13 +283,11 @@
|
|||||||
* [usenet.farm](https://usenet.farm/#trial)
|
* [usenet.farm](https://usenet.farm/#trial)
|
||||||
* [Free Trials](https://www.ngprovider.com/free-usenet-trials.php)
|
* [Free Trials](https://www.ngprovider.com/free-usenet-trials.php)
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Downloaders
|
## ▷ Downloaders
|
||||||
|
|
||||||
* ⭐ **[sabnzbd](https://sabnzbd.org/)** / [Grabber](https://github.com/lem6ns/sabgrab) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/nzb-unity/) / [Chrome](https://chromewebstore.google.com/detail/nzb-unity/mpejfoghnejnbfkpbiafklkmlhebkapb)
|
* ⭐ **[sabnzbd](https://sabnzbd.org/)** / [Grabber](https://github.com/lem6ns/sabgrab) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/nzb-unity/) / [Chrome](https://chromewebstore.google.com/detail/nzb-unity/mpejfoghnejnbfkpbiafklkmlhebkapb)
|
||||||
* ⭐ **[NZBUnity](https://github.com/tumblfeed/nzbunity)** - Send Usenet Files to Client
|
* ⭐ **[NZBUnity](https://github.com/tumblfeed/nzbunity)** - Send Usenet Files to Client
|
||||||
* [nzbget](https://nzbget.com/) / [GitHub](https://github.com/nzbgetcom/nzbget)
|
* [nzbget](https://github.com/nzbgetcom/nzbget), [2](https://nzbget.com/download/)
|
||||||
* [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes
|
* [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes
|
||||||
* [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot
|
* [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot
|
||||||
|
|
||||||
@ -292,14 +295,13 @@
|
|||||||
|
|
||||||
# ► Leeches / Debrid
|
# ► Leeches / Debrid
|
||||||
|
|
||||||
* 🌐 **[Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches)** or [leechlisting](https://www.leechlisting.com/) - Leech Lists
|
* 🌐 **[Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Main_Page)** or [leechlisting](https://www.leechlisting.com/) - Leech Lists
|
||||||
* [@Transload](https://t.me/transload) - Telegram Leech Bots
|
* [@Transload](https://t.me/transload) - Telegram Leech Bots
|
||||||
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Send Premium Files to Leeches / 2 Hosts Only
|
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Send Premium Files to Leeches / 2 Hosts Only
|
||||||
* [RapidGrab](https://rapidgrab.ovh/) or [Newscon](https://www.newscon.net/d1/) / [2](https://www.newscon.org/d3/) - Leech
|
* [RapidGrab](https://rapidgrab.pl/) or [Newscon](https://www.newscon.net/d1/) - Leech
|
||||||
* [Real-Debrid](https://real-debrid.com/) - Paid Debrid service / [Torrent Client](https://github.com/rogerfar/rdt-client) / [Movies / TV](https://hdencode.org/)
|
* [Real-Debrid](https://real-debrid.com/) - Paid Debrid service / [Torrent Client](https://github.com/rogerfar/rdt-client) / [Movies / TV](https://hdencode.org/)
|
||||||
* [Debrid-Link](https://debrid-link.com) - Debrid with Free Tier
|
* [Debrid-Link](https://debrid-link.com) - Debrid w/ Free Tier / [Limits](https://i.imgur.com/vZtlvtA.png)
|
||||||
* [AllDebrid](https://alldebrid.com/) - Paid Debrid service with seven day trial
|
* [AllDebrid](https://alldebrid.com/) - Paid Debrid service with seven day trial
|
||||||
* [Debrid Media Manager](https://debridmediamanager.com/) - Manage / Stream / Download RD Files
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
1136
EDUPiracyGuide.md
1136
EDUPiracyGuide.md
File diff suppressed because it is too large
Load Diff
251
File-Tools.md
251
File-Tools.md
@ -6,66 +6,69 @@
|
|||||||
|
|
||||||
# ► File Tools
|
# ► File Tools
|
||||||
|
|
||||||
* ↪️ **[File Scanners](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_file_scanners)**
|
* ⭐ **[OpenWith](https://www.openwith.org/)** or [OpenMyFiles](https://www.openmyfiles.com/) - File Extension Libraries
|
||||||
* ⭐ **[Fileinfo](https://fileinfo.com/)**, [Filext](https://filext.com/) or [OpenMyFiles](https://www.openmyfiles.com/) - File Extension Libraries
|
|
||||||
* ⭐ **[czkawka](https://github.com/qarmin/czkawka)** or [dupeGuru](https://dupeguru.voltaicideas.net/) - Duplicate File Finders
|
* ⭐ **[czkawka](https://github.com/qarmin/czkawka)** or [dupeGuru](https://dupeguru.voltaicideas.net/) - Duplicate File Finders
|
||||||
* [horsicq](https://horsicq.github.io/) - File Tools / [GitHub](https://github.com/horsicq/)
|
* [horsicq](https://horsicq.github.io/) - File Tools / [GitHub](https://github.com/horsicq/)
|
||||||
* [Beyond Compare](https://www.scootersoftware.com/) - File / Directory Comparison Tool / [Pro](https://rentry.co/FMHYBase64#beyond-compare-crack)
|
* [Beyond Compare](https://www.scootersoftware.com/) - File / Directory Comparison Tool / [Crack](https://rentry.co/FMHYBase64#beyond-compare-crack)
|
||||||
* [UnLock IT](https://emcosoftware.com/unlock-it/download) or [Lock Hunter](https://lockhunter.com/) - File Unlocker / Deleter
|
* [UnLock IT](https://emcosoftware.com/unlock-it/download), [Lock Hunter](https://lockhunter.com/) or [FileExile](https://sourceforge.net/projects/filexile/) - File Unlocker / Deleter
|
||||||
* [Magika](https://github.com/google/magika) - AI File Content Type Detector
|
* [File Juggler](https://www.filejuggler.com/) - Organize Files Automatically
|
||||||
* [Phockup](https://github.com/ivandokov/phockup) - Organize Photo / Video Files by Date
|
* [Phockup](https://github.com/ivandokov/phockup) - Organize Photo / Video Files by Date
|
||||||
* [Icaros](https://github.com/Xanashi/Icaros) - Add Explorer Thumbnails to any Video Format
|
* [Random Executor](https://sneakysnail.net/random-executor/) - Random File Executor
|
||||||
* [Tagging for Windows](https://tagging.connectpaste.com/) - Tag-Based Filesystem
|
* [TMSU](https://github.com/oniony/TMSU) or [Tagging for Windows](https://tagging.connectpaste.com/) - Tag-Based Filesystem
|
||||||
|
* [filetree](https://github.com/roboyoshi/datacurator-filetree) - Data Filetree
|
||||||
* [HTTPDirfs](https://github.com/fangfufu/httpdirfs) - HTTP File System
|
* [HTTPDirfs](https://github.com/fangfufu/httpdirfs) - HTTP File System
|
||||||
* [mergerfs](https://github.com/trapexit/mergerfs) - Union Filesystem
|
* [mergerfs](https://github.com/trapexit/mergerfs) - Union Filesystem
|
||||||
* [filebrowser](https://github.com/filebrowser/filebrowser/) - Online File Viewer
|
* [Snap2HTML](https://rlvision.com/snap2html/about.php) - Take HTML Snapshots of Folder / File Structures
|
||||||
|
* [filebrowser](https://github.com/filebrowser/filebrowser/) or [Filext](https://filext.com/) - Online File Viewers
|
||||||
* [File-Examples](https://file-examples.com/) - Dummy File Examples
|
* [File-Examples](https://file-examples.com/) - Dummy File Examples
|
||||||
|
* [What](https://github.com/bee-san/pyWhat) - File Analyzer
|
||||||
* [OpenHashTab](https://github.com/namazso/OpenHashTab) - Compare / Display File Hashes
|
* [OpenHashTab](https://github.com/namazso/OpenHashTab) - Compare / Display File Hashes
|
||||||
|
* [FilesMerge](https://www.filesmerge.com/) - Online File Merger
|
||||||
* [WinMerge](https://winmerge.org/) - Compare / Merge Files & Folders
|
* [WinMerge](https://winmerge.org/) - Compare / Merge Files & Folders
|
||||||
* [Attribute Changer](https://www.petges.lu/) - Edit File & Folder Properties
|
* [Attribute Changer](https://www.petges.lu/) - Edit File & Folder Properties
|
||||||
* [TagSpaces](https://www.tagspaces.org/) - Add Tags to Files and Folders
|
* [TagSpaces](https://www.tagspaces.org/) - Add Tags to Files and Folders
|
||||||
|
* [DefaultProgramsEditor](https://defaultprogramseditor.com/) - File Association Editor
|
||||||
* [SKTimeStamp](https://tools.stefankueng.com/SKTimeStamp.html) - Change File Created / Modified Time
|
* [SKTimeStamp](https://tools.stefankueng.com/SKTimeStamp.html) - Change File Created / Modified Time
|
||||||
* [Corrupt My File](https://www.corruptmyfile.com/) or [Corrupt-A-File](https://corrupt-a-file.net/) - Intentionally Corrupt your Files
|
* [Corrupt My File](https://www.corruptmyfile.com/) or [Corrupt-A-File](https://corrupt-a-file.net/) - Intentionally Corrupt your Files
|
||||||
* [ExtractMetadata](https://www.extractmetadata.com/) or [Metadata2Go](https://www.metadata2go.com/) - Metadata Viewers / Editors
|
* [ExtractMetadata](https://www.extractmetadata.com/) or [Metadata2Go](https://www.metadata2go.com/) - Metadata Viewers / Editors
|
||||||
* [lessmsi](https://lessmsi.activescott.com/) - .msi Content Extractor / [GitHub](https://github.com/activescott/lessmsi)
|
* [lessmsi](https://lessmsi.activescott.com/) - .msi Content Extractor / [GitHub](https://github.com/activescott/lessmsi)
|
||||||
* [ProperTree](https://github.com/corpnewt/ProperTree) - GUI Plist Editor
|
* [ProperTree](https://github.com/corpnewt/ProperTree) - GUI Plist Editor
|
||||||
* [OpenBoardView](https://github.com/OpenBoardView/OpenBoardView) - View .brd Files
|
* [OpenBoardView](https://github.com/OpenBoardView/OpenBoardView) - View .brd Files
|
||||||
* [infekt](https://infekt.ws/) / [GitHub](https://github.com/syndicodefront/infekt), [nfoview](https://otsaloma.io/nfoview/) / [GitHub](https://github.com/otsaloma/nfoview) or [NFOmation](https://nfomation.net/) - NFO Viewers
|
* [pe_tree](https://github.com/blackberry/pe_tree) - PE File Tree View
|
||||||
|
* [infekt](https://infekt.ws/) / [GitHub](https://github.com/syndicodefront/infekt), [nfoview](https://otsaloma.io/nfoview/) / [GitHub](https://github.com/otsaloma/nfoview) or [NFOmation](https://nfomation.net/) - NFO File Viewers
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Download Managers
|
## ▷ Download Managers
|
||||||
|
|
||||||
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Captcha Solver](https://github.com/cracker0dks/CaptchaSolver) / [Dark Theme](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||||
* ⭐ **[Go Speed](https://gopeed.com/)** - Download Manager / [GitHub](https://github.com/GopeedLab/gopeed) / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories)
|
* ⭐ **[IDM](https://www.internetdownloadmanager.com/)** - Download Manager / [Activation](https://massgrave.dev/idm-activation-script.html)
|
||||||
* ⭐ **[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager
|
* ⭐ **[XDM](https://xtremedownloadmanager.com/)** - Download Manager / [GitHub](https://github.com/subhra74/xdm)
|
||||||
* [XDM](https://xtremedownloadmanager.com/) - Download Manager / [GitHub](https://github.com/subhra74/xdm)
|
* [Motrix](https://www.motrix.app/) - Download Manager / [Web Extensions](https://github.com/gautamkrishnar/motrix-webextension/) / [GitHub](https://github.com/agalwood/Motrix)
|
||||||
* [Motrix](https://www.motrix.app/) or [imFile](https://github.com/imfile-io/imfile-desktop) - Download Manager / [GitHub](https://github.com/agalwood/Motrix)
|
* [Mipony](https://www.mipony.net/) - Download Manager
|
||||||
* [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/)
|
|
||||||
* [FDM](https://www.freedownloadmanager.org/) - Download Manager / [YTDL Addon](https://github.com/meowcateatrat/elephant) / [Note](https://pastebin.com/Vgwf3avH)
|
|
||||||
* [ArrowDL](https://github.com/setvisible/ArrowDL/) - Download Manager
|
|
||||||
* [pyLoad](https://pyload.net/) - Lightweight Download Manager
|
* [pyLoad](https://pyload.net/) - Lightweight Download Manager
|
||||||
* [File Centipede](https://filecxx.com/) - Upload / Download Manager
|
* [File Centipede](https://filecxx.com/) - Upload / Download Manager
|
||||||
* [DownThemAll](https://www.downthemall.org/) or [Turbo Download Manager](https://add0n.com/turbo-download-manager-v2.html) / [GitHub](https://github.com/inbasic/turbo-download-manager-v2/) - Download Management Extensions
|
|
||||||
* [HTTP Downloader](https://erickutcher.github.io/#HTTP_Downloader/) - Download Manager for HTTP / FTP / SFTP Protocols
|
* [HTTP Downloader](https://erickutcher.github.io/#HTTP_Downloader/) - Download Manager for HTTP / FTP / SFTP Protocols
|
||||||
* [Downloader](https://downloader.la/) or [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - File Download Tools
|
* [Downloader](https://downloader.la/) or [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - File Download Tools
|
||||||
* [mf-dl](https://gitgud.io/Pyxia/mf-dl/) or [mediafire_bulk_downloader](https://github.com/NicKoehler/mediafire_bulk_downloader) - Mediafire File Downloaders
|
* [mf-dl](https://gitgud.io/Pyxia/mf-dl/) or [mediafire_bulk_downloader](https://github.com/NicKoehler/mediafire_bulk_downloader) - Mediafire File Downloaders
|
||||||
|
* [One Leaf](https://oneleaf.icu/) or [PanDownload](https://baidu.gamesdrive.net/) - Baidu Netdisk Downloaders
|
||||||
* [WhatsLink](https://whatslink.info/) - View File Download Metadata
|
* [WhatsLink](https://whatslink.info/) - View File Download Metadata
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ File Archivers
|
## ▷ File Archivers
|
||||||
|
|
||||||
* 🌐 **[SuperCompression](https://supercompression.org/)** - File Compression Resources
|
* ⭐ **[7-Zip](https://www.7-zip.org/)** / [Colab](https://github.com/dropcreations/7zip-in-Google-Colab) / [Dark Mode](https://github.com/huanrenfeng/7zipDarkmode) / [Benchmarks](https://s1.hoffart.de/7zip-bench/) / [Additional Codecs](https://github.com/mcmilk/7-Zip-zstd) - File Archiver
|
||||||
* ⭐ **[7-Zip](https://www.7-zip.org/)** - File Archiver
|
|
||||||
* ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** - File Archiver
|
* ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** - 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
|
|
||||||
* [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums
|
* [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums
|
||||||
* [TurboBench](https://github.com/powturbo/TurboBench) - Compression Benchmark
|
* [TurboBench](https://github.com/powturbo/TurboBench) - Compression Benchmark
|
||||||
* [unzip-http](https://github.com/saulpw/unzip-http) - Unzip via HTTP without Downloading
|
* [unzip-http](https://github.com/saulpw/unzip-http) - Unzip via HTTP Without Downloading
|
||||||
|
* [CompactGUI](https://github.com/IridiumIO/CompactGUI) or [Compactor](https://github.com/Freaky/Compactor) - Transparent Compression
|
||||||
* [WinRAR](https://www.win-rar.com/) - File Archiver / [Licenses](https://rentry.co/FMHYBase64#winrar-licenses)
|
* [WinRAR](https://www.win-rar.com/) - File Archiver / [Licenses](https://rentry.co/FMHYBase64#winrar-licenses)
|
||||||
* [Efficient Compression Tool](https://github.com/fhanau/Efficient-Compression-Tool) or [Minuimus](https://birds-are-nice.me/software/minuimus.html) - File Archivers / Optimizers
|
* [Bandizip](https://www.bandisoft.com/bandizip/) - File Archiver
|
||||||
|
* [IZArc](https://www.izarc.org/) - File Archiver
|
||||||
|
* [FileOptimizer](https://nikkhokkho.sourceforge.io/static.php?page=FileOptimizer), [Efficient Compression Tool](https://github.com/fhanau/Efficient-Compression-Tool) or [Minuimus](https://birds-are-nice.me/software/minuimus.html) - File Archivers / Optimizers
|
||||||
* [ZIP Extractor](https://zipextractor.app/) - Google Drive / Gmail File Archiver
|
* [ZIP Extractor](https://zipextractor.app/) - Google Drive / Gmail File Archiver
|
||||||
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online
|
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online
|
||||||
* [unzip-online](https://unzip-online.com/en) - Unzip Files Online
|
* [unzip-online](https://unzip-online.com/en) - Unzip Files Online
|
||||||
@ -75,8 +78,8 @@
|
|||||||
|
|
||||||
## ▷ File Converters
|
## ▷ File Converters
|
||||||
|
|
||||||
* 🌐 **[.to Sites](https://rentry.co/tosites)** - File Converters Index
|
* 🌐 **[.to Sites](https://rentry.co/nsq29)** - File Converters Index
|
||||||
* ⭐ **[File Converter](https://file-converter.io/)** / [GitHub](https://github.com/Tichau/FileConverter) - Convert / Compress Files
|
* ⭐ **[File Converter](https://file-converter.org/)** / [GitHub](https://github.com/Tichau/FileConverter) - Convert / Compress Files
|
||||||
* ⭐ **[CloudConvert](https://cloudconvert.com/)** - Convert Files / 1 GB Limit
|
* ⭐ **[CloudConvert](https://cloudconvert.com/)** - Convert Files / 1 GB Limit
|
||||||
* [Pandoc](https://pandoc.org/) - Document Converter
|
* [Pandoc](https://pandoc.org/) - Document Converter
|
||||||
* [ConvertCSV](https://www.convertcsv.com/) - CSV Data Conversion
|
* [ConvertCSV](https://www.convertcsv.com/) - CSV Data Conversion
|
||||||
@ -92,16 +95,14 @@
|
|||||||
* [onlineconvertfree](https://onlineconvertfree.com/) - File Converter / 100 MB Limit
|
* [onlineconvertfree](https://onlineconvertfree.com/) - File Converter / 100 MB Limit
|
||||||
* [MiConv](https://miconv.com/) - File Converter / 75 MB Limit
|
* [MiConv](https://miconv.com/) - File Converter / 75 MB Limit
|
||||||
* [Converter 365](https://www.converter365.com/) - File Converter / 50 MB Limit
|
* [Converter 365](https://www.converter365.com/) - File Converter / 50 MB Limit
|
||||||
* [Aconvert](https://www.aconvert.com/) - File Converter / 40 MB Limit
|
* [ACConvert](https://www.aconvert.com/) - File Converter / 40 MB Limit
|
||||||
* [PPT Online](https://www.aspose.app/) - File Converter / 35 MB Limit
|
* [PPT Online](https://www.aspose.app/) - File Converter / 35 MB Limit
|
||||||
* [LetsConvert](https://letsconvert.io/) - File Converter / 250 MB Limit
|
|
||||||
* [Online Convert](https://www.online-convert.com/) - File Converter
|
* [Online Convert](https://www.online-convert.com/) - File Converter
|
||||||
* [Zamzar](https://www.zamzar.com/) - File Converter
|
* [Zamzar](https://www.zamzar.com/) - File Converter
|
||||||
* [Online Converter](https://www.onlineconverter.com/) - File Converter
|
* [Online Converter](https://www.onlineconverter.com/) - File Converter
|
||||||
* [File-Coversion](https://www.files-conversion.com/) - File Converter
|
* [File-Coversion](https://www.files-conversion.com/) - File Converter
|
||||||
* [11zon](https://www.11zon.com/) - File Converter
|
* [11zon](https://www.11zon.com/) - File Converter
|
||||||
* [Convert Town](https://convert.town/) - File Converter
|
* [Convert Town](https://convert.town/) - File Converter
|
||||||
* [Docspal](https://www.docspal.com/) - File Converter
|
|
||||||
* [Better Converter](https://better-converter.com/) - File Converter
|
* [Better Converter](https://better-converter.com/) - File Converter
|
||||||
* [conversion-tool](https://www.conversion-tool.com/) - File Converter
|
* [conversion-tool](https://www.conversion-tool.com/) - File Converter
|
||||||
* [go4convert](https://go4convert.com/) - File Converter
|
* [go4convert](https://go4convert.com/) - File Converter
|
||||||
@ -112,18 +113,20 @@
|
|||||||
|
|
||||||
## ▷ File Explorers
|
## ▷ File Explorers
|
||||||
|
|
||||||
* ⭐ **[Files](https://files.community/)** - Customizable Windows File Manager
|
|
||||||
* [Xplorer](https://xplorer.space/) / [GitHub](https://github.com/kimlimjustin/xplorer) / [Discord](https://discord.com/invite/MHGtSWvfUS), [DoubleCMD](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross Platform File Explorers
|
* [Xplorer](https://xplorer.space/) / [GitHub](https://github.com/kimlimjustin/xplorer) / [Discord](https://discord.com/invite/MHGtSWvfUS), [DoubleCMD](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross Platform File Explorers
|
||||||
* [Sigma](https://sigma-file-manager.vercel.app) - Modern File Manager for Windows / Linux / [GitHub](https://github.com/aleksey-hoffman/sigma-file-manager)
|
* [Files](https://files.community/) - Customizable Windows File Manager
|
||||||
|
* [Sigma](https://github.com/aleksey-hoffman/sigma-file-manager) - Modern File Manager for Windows / Linux
|
||||||
* [ChromaFiler](https://chroma.zone/chromafiler/) - Column-based Windows File Manager
|
* [ChromaFiler](https://chroma.zone/chromafiler/) - Column-based Windows File Manager
|
||||||
|
* [ExplorerPatcher](https://github.com/valinet/ExplorerPatcher) - Improve Windows Explorer
|
||||||
* [WinFile](https://github.com/microsoft/winfile) - Original Windows File Explorer
|
* [WinFile](https://github.com/microsoft/winfile) - Original Windows File Explorer
|
||||||
* [One Commander](https://www.onecommander.com/), [Free Commander](https://freecommander.com/), [Q-Dir](https://www.softwareok.com/?seite=Freeware/Q-Dir), [Quick Access Popup](https://www.quickaccesspopup.com/) or [FileExplorer](https://github.com/omeryanar/FileExplorer) - Alt Windows File Explorers
|
* [One Commander](https://www.onecommander.com/), [Free Commander](https://freecommander.com/), [Q-Dir](https://www.softwareok.com/?seite=Freeware/Q-Dir), [Quick Access Popup](https://www.quickaccesspopup.com/) or [FileExplorer](https://github.com/omeryanar/FileExplorer) - Alt Windows File Explorers
|
||||||
* [Explorer++](https://explorerplusplus.com/) - Lightweight Windows File Manager
|
* [Explorer++](https://explorerplusplus.com/) - Lightweight Windows File Manager
|
||||||
* [Far Manager](https://www.farmanager.com/) - Windows File / Archive Manager
|
* [Far Manager](https://www.farmanager.com/) - Windows File / Archive Manager
|
||||||
* [Total Commander](https://www.ghisler.com/) - Shareware Windows File Manager
|
* [Total Commander](https://www.ghisler.com/) - Shareware Windows File Manager
|
||||||
* [Organize](http://organize.readthedocs.io) - Automated File Manager
|
* [Organize](https://github.com/tfeldmann/organize) - Automated File Manager
|
||||||
* [TrayDir](https://github.com/SamuelSVD/TrayDir) - System Tray File Manager
|
* [TrayDir](https://github.com/SamuelSVD/TrayDir) - System Tray File Manager
|
||||||
* [TablacusExplorer](https://tablacus.github.io/explorer_en.html), [QTTabBar](https://github.com/indiff/qttabbar), [Multi Commander](https://multicommander.com/) or [ExplorerEx](https://github.com/DearVa/ExplorerEx) - Tab File Managers
|
* [TablacusExplorer](https://tablacus.github.io/explorer_en.html) / [GitHub](https://github.com/tablacus/TablacusExplorer) - File Manager with Addon Support
|
||||||
|
* [Multi Commander](https://multicommander.com/) or [ExplorerEx](https://github.com/DearVa/ExplorerEx) - Multi-Tabbed File Managers
|
||||||
* [Vifm](https://vifm.info/) - Vim-based File Manager
|
* [Vifm](https://vifm.info/) - Vim-based File Manager
|
||||||
* [WinSetView](https://github.com/LesFerch/WinSetView) - Globally Set Explorer Folder Views
|
* [WinSetView](https://github.com/LesFerch/WinSetView) - Globally Set Explorer Folder Views
|
||||||
|
|
||||||
@ -132,7 +135,7 @@
|
|||||||
## ▷ File Searching
|
## ▷ File Searching
|
||||||
|
|
||||||
* ⭐ **[Everything](https://voidtools.com/)** - File Search Engine
|
* ⭐ **[Everything](https://voidtools.com/)** - File Search Engine
|
||||||
* [Recoll](https://www.lesbonscomptes.com/recoll/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [Spyglass](https://github.com/spyglass-search/spyglass), [DocFetcher](https://docfetcher.sourceforge.net/) or [Orange](https://0-range.github.io/) - Cross Platform Search Engines
|
* [Recoll](https://www.lesbonscomptes.com/recoll/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [Spyglass](https://github.com/spyglass-search/spyglass), [DocFetcher](https://docfetcher.sourceforge.net/) or [Orange](https://github.com/naaive/orange) - Cross Platform Search Engines
|
||||||
* [AnyTXT](https://anytxt.net/) or [FluentSearch](https://fluentsearch.net/) - Windows Search Engines
|
* [AnyTXT](https://anytxt.net/) or [FluentSearch](https://fluentsearch.net/) - Windows Search Engines
|
||||||
* [AstroGrep](https://sourceforge.net/projects/astrogrep/), [grepWin](https://github.com/stefankueng/grepWin) or [dnGrep](https://dngrep.github.io/) - Windows GUI Grep Utilities
|
* [AstroGrep](https://sourceforge.net/projects/astrogrep/), [grepWin](https://github.com/stefankueng/grepWin) or [dnGrep](https://dngrep.github.io/) - Windows GUI Grep Utilities
|
||||||
* [fselect](https://github.com/jhspetersson/fselect) - SQL-like Search Engine
|
* [fselect](https://github.com/jhspetersson/fselect) - SQL-like Search Engine
|
||||||
@ -145,6 +148,8 @@
|
|||||||
|
|
||||||
* ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)**
|
* ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)**
|
||||||
* ⭐ **[Picocrypt](https://github.com/HACKERALERT/Picocrypt)**
|
* ⭐ **[Picocrypt](https://github.com/HACKERALERT/Picocrypt)**
|
||||||
|
* [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS partition
|
||||||
|
* [EncFS MP](https://encfsmp.sourceforge.io/index.html)
|
||||||
* [Hat](https://hat.sh/), [GNUPG](https://gnupg.org/)
|
* [Hat](https://hat.sh/), [GNUPG](https://gnupg.org/)
|
||||||
* [GPG4Win](https://www.gpg4win.org/)
|
* [GPG4Win](https://www.gpg4win.org/)
|
||||||
* [Encrypto](https://macpaw.com/encrypto)
|
* [Encrypto](https://macpaw.com/encrypto)
|
||||||
@ -159,28 +164,31 @@
|
|||||||
|
|
||||||
## ▷ File Backup / Sync
|
## ▷ File Backup / Sync
|
||||||
|
|
||||||
* ⭐ **[SyncThing](https://syncthing.net/)** - File Sync / [Tray Support](https://martchus.github.io/syncthingtray/)
|
* ⭐ **[SyncThing](https://syncthing.net/)** - File Sync
|
||||||
* ⭐ **[KDEConnect](https://kdeconnect.kde.org/)** - Phone / File Sync
|
* ⭐ **[KDEConnect](https://kdeconnect.kde.org/)** - Phone / File Sync
|
||||||
* ⭐ **[freefilesync](https://freefilesync.org/)** - File Backup
|
* ⭐ **[freefilesync](https://freefilesync.org/)** - File Backup
|
||||||
* ⭐ **[Kopia](https://kopia.io/)** - File Backup
|
|
||||||
* [MyPhoneExplorer](https://www.fjsoft.at/) - Phone / Desktop Sync
|
* [MyPhoneExplorer](https://www.fjsoft.at/) - Phone / Desktop Sync
|
||||||
* [SyncFolder](https://apps.microsoft.com/detail/9nc73mjwhsww?rtc=1&hl=en-us&gl=US) - Phone / Desktop Sync
|
|
||||||
* [etesync](https://www.etesync.com/) - File Sync
|
* [etesync](https://www.etesync.com/) - File Sync
|
||||||
* [allwaysync](https://allwaysync.com/) - File Sync
|
* [allwaysync](https://allwaysync.com/) - File Sync
|
||||||
* [Resilio](https://www.resilio.com/individuals/) - File Sync
|
* [Resilio](https://www.resilio.com/individuals/) - File Sync
|
||||||
* [SmartFTP](https://www.smartftp.com/) - File Sync
|
* [SmartFTP](https://www.smartftp.com/) - File Sync
|
||||||
* [rsync](https://rsync.samba.org) - File Sync / [GitHub](https://github.com/WayneD/rsync)
|
* [rsync](https://github.com/WayneD/rsync) - File Sync
|
||||||
* [Unison](https://github.com/bcpierce00/unison) - File Sync
|
* [Unison](https://github.com/bcpierce00/unison) - File Sync
|
||||||
* [FolderClone](https://www.folderclone.com/) - Clone / Backup Folders
|
* [FolderClone](https://www.folderclone.com/) - Clone / Backup Folders
|
||||||
* [BackupPC](https://backuppc.github.io/backuppc/) - File Backup
|
* [BackupPC](https://backuppc.github.io/backuppc/) - File Backup
|
||||||
* [TeraCopy](https://www.codesector.com/teracopy) - File Backup
|
* [TeraCopy](https://www.codesector.com/teracopy) - File Backup
|
||||||
* [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic) - File Backup
|
* [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic) - File Backup
|
||||||
* [UrBackup](https://www.urbackup.org/) - File Backup
|
* [UrBackup](https://www.urbackup.org/) - File Backup
|
||||||
|
* [BlobBackup](https://github.com/BlobBackup/BlobBackup) - File Backup
|
||||||
|
* [SafeCopy](https://www.elwinsoft.com/safecopy-free.html) - File Backup
|
||||||
|
* [FastCopy](https://fastcopy.jp/) - File Backup
|
||||||
|
* [OCCT](https://www.ocbase.com/) - File Backup
|
||||||
* [Aomei](https://www.ubackup.com/) - File Backup
|
* [Aomei](https://www.ubackup.com/) - File Backup
|
||||||
* [Duplicati](https://www.duplicati.com/) - File Backup
|
* [Duplicati](https://www.duplicati.com/) - File Backup
|
||||||
* [Borg](https://www.borgbackup.org/) - File Backup
|
* [Borg](https://www.borgbackup.org/) - File Backup
|
||||||
* [USBImager](https://bztsrc.gitlab.io/usbimager/) - File Backup
|
* [USBImager](https://bztsrc.gitlab.io/usbimager/) - File Backup
|
||||||
* [Toucan](https://github.com/PortableApps/Toucan) - File Backup
|
* [Toucan](https://github.com/PortableApps/Toucan) - File Backup
|
||||||
|
* [Kopia](https://kopia.io/) - File Backup
|
||||||
* [duplicity](https://duplicity.gitlab.io/) - File Backup
|
* [duplicity](https://duplicity.gitlab.io/) - File Backup
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -209,7 +217,6 @@
|
|||||||
* [nwipe](https://github.com/martijnvanbrummelen/nwipe)
|
* [nwipe](https://github.com/martijnvanbrummelen/nwipe)
|
||||||
* [ShredOS](https://github.com/PartialVolume/shredos.x86_64)
|
* [ShredOS](https://github.com/PartialVolume/shredos.x86_64)
|
||||||
* [Delapp](https://github.com/differentrain/Delapp)
|
* [Delapp](https://github.com/differentrain/Delapp)
|
||||||
* [RED](https://www.jonasjohn.de/red.htm) - Remove Empty Directories
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -224,32 +231,37 @@
|
|||||||
* [Bruji](https://www.bruji.com/) - Data Automation
|
* [Bruji](https://www.bruji.com/) - Data Automation
|
||||||
* [FileBot](https://www.filebot.net/) - Data Automation
|
* [FileBot](https://www.filebot.net/) - Data Automation
|
||||||
* [MediaElch](https://www.kvibes.de/mediaelch/) - Data Automation
|
* [MediaElch](https://www.kvibes.de/mediaelch/) - Data Automation
|
||||||
* [TVRename](https://www.tvrename.com/) - TV File Data Automation
|
* [TVNamer](https://github.com/dbr/tvnamer) or [TVRename](https://www.tvrename.com/) - TV File Data Automation
|
||||||
* [Shoko](https://github.com/shokoanime) - Anime File Data Automation
|
* [Shoko](https://github.com/shokoanime) - Anime File Data Automation
|
||||||
* [Szyszka](https://github.com/qarmin/szyszka) - Bulk Renamer
|
* [Szyszka](https://github.com/qarmin/szyszka) - Bulk Renamer
|
||||||
|
* [Massren](https://github.com/laurent22/massren) - Bulk Renamer
|
||||||
* [PowerRename](https://learn.microsoft.com/en-us/windows/powertoys/powerrename) - Bulk Renamer
|
* [PowerRename](https://learn.microsoft.com/en-us/windows/powertoys/powerrename) - Bulk Renamer
|
||||||
* [Ant Renamer](https://www.antp.be/software/renamer) - Bulk Renamer
|
* [Ant Renamer](https://www.antp.be/software/renamer) - Bulk Renamer
|
||||||
* [Flut Renamer](https://github.com/sun-jiao/flut-renamer) - Bulk Renamer
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ PDF Tools
|
## ▷ PDF Tools
|
||||||
|
|
||||||
* ⭐ **[Sejda](https://www.sejda.com/)**, [ILovePDF](https://www.ilovepdf.com/), [DigiPDF](https://digipdf.app/?lang=en_US), [PDF2Go](https://www.pdf2go.com/), [Stirling PDF](https://pdf.app.danian.co/) or [SimplePDF](https://simplepdf.eu/) - Online PDF Toolkits
|
* ⭐ **[Sejda](https://www.sejda.com/)**, [ILovePDF](https://www.ilovepdf.com/) or [SimplePDF](https://simplepdf.eu/) - Online PDF Toolkits
|
||||||
* ⭐ **[PDFGear](https://www.pdfgear.com/)**, **[PDF24](https://www.pdf24.org/)**, [xPDFReader](https://www.xpdfreader.com/), [PDF Arranger](https://github.com/pdfarranger/pdfarranger), [PrivatePDF](https://photown.github.io/private-pdf/), [PDFBox](https://pdfbox.apache.org/) or [OpenPDF](https://github.com/LibrePDF/OpenPDF) - Offline PDF Toolkits
|
* ⭐ **[PDFGear](https://www.pdfgear.com/)**, [xPDFReader](https://www.xpdfreader.com/), [PrivatePDF](https://github.com/photown/private-pdf), [PDFBox](https://pdfbox.apache.org/) or [OpenPDF](https://github.com/LibrePDF/OpenPDF) - PDF Editors / Toolkits
|
||||||
* [PDFGrep](https://pdfgrep.org/) - PDF Text Search
|
* [PDFGrep](https://pdfgrep.org/) - PDF Text Search
|
||||||
* [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on GDrive
|
* [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on GDrive
|
||||||
* [online2pdf](https://online2pdf.com/) or [2PDFConverter](https://www.2pdfconverter.com/) - Convert Files to PDF
|
* [online2pdf](https://online2pdf.com/) or [2PDFConverter](https://www.2pdfconverter.com/) - Convert Files to PDF
|
||||||
* [PDFConverter](https://www.pdfconverter.com/) or [PDFconvert](https://docupub.com/pdfconvert/) - PDF File Converters
|
* [PDFConverter](https://www.pdfconverter.com/) or [PDFconvert](https://docupub.com/pdfconvert/) - PDF File Converters
|
||||||
|
* [Adobe Compress PDF](https://www.adobe.com/acrobat/online/compress-pdf.html) - PDF Compressor
|
||||||
* [PDF Mergy](https://pdfmerge.w69b.com/) or [PDFSnake](https://pdfsnake.app/) - Merge PDF Files
|
* [PDF Mergy](https://pdfmerge.w69b.com/) or [PDFSnake](https://pdfsnake.app/) - Merge PDF Files
|
||||||
|
* [Adobe Word Converter](https://www.adobe.com/acrobat/online/word-to-pdf.html) - Word to PDF Converter
|
||||||
* [PDFLayoutTextStripper](https://github.com/JonathanLink/PDFLayoutTextStripper) - PDF to Text Converter
|
* [PDFLayoutTextStripper](https://github.com/JonathanLink/PDFLayoutTextStripper) - PDF to Text Converter
|
||||||
* [VancedPDF](https://vancepdf.com/) or [PDFtoWordConverter](https://xodo.com/pdf-to-word-converter) - PDF to Word Converter
|
* [VancedPDF](https://vancepdf.com/) or [PDFtoWordConverter](https://xodo.com/pdf-to-word-converter) - PDF to Word Converter
|
||||||
* [Marker](https://github.com/VikParuchuri/marker) - PDF to Markdown
|
* [Marker](https://github.com/VikParuchuri/marker) - PDF to Markdown
|
||||||
* [Images to PDF](https://github.com/Swati4star/Images-to-PDF) or [Adobe Converter](https://www.adobe.com/acrobat/online/jpg-to-pdf.html) - Image to PDF Converter
|
* [Adobe Excel to PDF](https://www.adobe.com/acrobat/online/excel-to-pdf.html) - Convert Excel Files to PDF
|
||||||
|
* [Images to PDF](https://github.com/Swati4star/Images-to-PDF), [JPG2PDFBot](https://t.me/JPG2PDFBot), [Adobe Converter](https://www.adobe.com/acrobat/online/jpg-to-pdf.html) or [img2pdf](https://pypi.org/project/img2pdf/) - Image to PDF Converter
|
||||||
* [PDFCrowd](https://pdfcrowd.com/), [HTMLaPDF](https://www.htmlapdf.com/), [TailWindPDF](https://tailwindpdf.com/) or [wkhtmltopdf](https://wkhtmltopdf.org/) - HTML to PDF / Image Converter
|
* [PDFCrowd](https://pdfcrowd.com/), [HTMLaPDF](https://www.htmlapdf.com/), [TailWindPDF](https://tailwindpdf.com/) or [wkhtmltopdf](https://wkhtmltopdf.org/) - HTML to PDF / Image Converter
|
||||||
|
* [PSTOEdit](http://pstoedit.net/) - Convert PDF to other Vector Formats
|
||||||
* [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/), [2](https://vebuka.com/)
|
* [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/), [2](https://vebuka.com/)
|
||||||
* [WebToPDF](https://webtopdf.com/) or [Percollate](https://github.com/danburzo/percollate) - Webpage to PDF Converters
|
* [Percollate](https://github.com/danburzo/percollate), [WebToPDF](https://webtopdf.com/) or [PDFmyURL](https://pdfmyurl.com/) - Webpage to PDF Converters
|
||||||
* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs
|
* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs
|
||||||
|
* [PPT To PDF](https://www.adobe.com/acrobat/online/ppt-to-pdf.html) - Convert PowerPoint to PDF Adobe
|
||||||
* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover
|
* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover
|
||||||
* [Scan Your PDF](https://www.scanyourpdf.com/) - Make PDFs look Scanned
|
* [Scan Your PDF](https://www.scanyourpdf.com/) - Make PDFs look Scanned
|
||||||
* [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs
|
* [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs
|
||||||
@ -258,79 +270,81 @@
|
|||||||
* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected GDrive PDFs
|
* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected GDrive PDFs
|
||||||
* [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files
|
* [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files
|
||||||
* [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - Fill & sign a PDF
|
* [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - Fill & sign a PDF
|
||||||
* [PrintFriendly](https://www.printfriendly.com/) - Printer Formatting Tools
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► File Hosts
|
# ► File Hosts
|
||||||
|
|
||||||
* **Note** - Keep in mind that it's **never** a good idea to upload personal or confidential files to any file host, even if they claim to be encrypted. Most file hosts remove files after inactivity, while some delete them regardless. Check each host if you're concerned about file expiry.
|
**Note** - Size is per file and time is after the last time someone downloaded that file unless specified.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ↪️ **[Video File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_video_file_hosts)**
|
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 90 days / [Discord](https://discord.gg/TWKGvYAFvX) / [Speedtest File](https://pixeldrain.com/speedtest) / [Bypass](https://pixeldrain-bypass.cybar.xyz) / [Bypass Note](https://pastebin.com/Ab1mZXXV)
|
||||||
|
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 days
|
||||||
|
* ⭐ **[FileDitch](https://fileditch.com/)** - 15GB / Forever
|
||||||
|
* ⭐ **[1fichier](https://1fichier.com/)** - 300GB / 15 days (30 days if you sign up)
|
||||||
* ⭐ **[Buzzheavier](https://buzzheavier.com/)** - Unlimited / Forever / [Discord](https://discord.gg/ttQjgC28WP)
|
* ⭐ **[Buzzheavier](https://buzzheavier.com/)** - Unlimited / Forever / [Discord](https://discord.gg/ttQjgC28WP)
|
||||||
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 Days
|
* ⭐ **[Send.cm](https://send.cm/)** - 100GB / 15 days
|
||||||
* ⭐ **[1fichier.com](https://1fichier.com/)** - 300GB / 15 Days (30 Days With Account)
|
* ⭐ **[Oshi](https://oshi.at/)** - 5GB / 90 days
|
||||||
* ⭐ **[file.haus](https://filehaus.top/)** - 200GB / Forever / [.pk](https://filehaus.pk/) / [.su](https://filehaus.su/) / [.onion](http://fileha3hjvudqs2moembtaegnpjo5ptec3tomf5dlxx6ydwtajkkahyd.onion/) / [.i2p](http://xr256v4weabr3rdz3nqzb27bv3gkwjisuf2d57urqtmh3gx3w7da.b32.i2p/) / [.loki](http://nipqehne9zrtpryw6ig5y9gu7c8gwt8ymrrncufxg1g8wf5t4rqo.loki/) / [Discord](https://discord.gg/5Ac25XZfv6) / [Telegram](https://t.me/tsutajanet)
|
* ⭐ **[Hexupload](https://www.hexupload.net/)** - 15GB / 60 days
|
||||||
* ⭐ **[Send.cm](https://send.cm/)** - 100GB / 15 Days
|
* ⭐ **[Mixdrop](https://mixdrop.ag/)** - 2GB / 60 Days / Signup Required
|
||||||
* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB With Account) / Forever
|
* ⭐ **[Qiwi](https://qiwi.gg)** - [Warning](https://pastebin.com/jn90QMEt) / Signup Required
|
||||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever
|
* ⭐ **[Catbox.moe](https://catbox.moe/)** - 200MB / Forever
|
||||||
* ⭐ **[HIDAN](https://hidan.sh/)** - Unlimited / 10+ Days (from upload)
|
* [MultiUp](https://multiup.io/), [MirrorAce](https://mirrorace.com/) or [Mirrorcreator](https://www.mirrored.to/) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct) - Multi Host Uploaders
|
||||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX)
|
|
||||||
* ⭐ **Pixeldrain Tools** - [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz) / [Limit Bypass Userscript](https://greasyfork.org/en/scripts/491326-pixeldrain-download-bypass)
|
|
||||||
* [MultiUp.io](https://multiup.io/) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct), [MirrorAce](https://mirrorace.com/), or [Mirrored.to](https://www.mirrored.to/) - Multi Host Uploaders
|
|
||||||
* [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App
|
* [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App
|
||||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Account Required
|
* [Archive.org](https://archive.org/create/) - Signup Required
|
||||||
* [Qiwi](https://qiwi.gg) - Account Required
|
* [send](https://send.vis.ee/) / [instances](https://gitlab.com/timvisee/send-instances) - 2.5gb / 1 day
|
||||||
* [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://pastebin.com/W0j4VDAN)
|
* [File.cm](https://file.cm/) - 100GB / 30 days / Signup Required
|
||||||
* [file.kiwi](https://file.kiwi/) - Unlimited / [File Expiry Explanation](https://file.kiwi/en/price)
|
* [edisk](https://www.edisk.cz/) - 10GB / 30 days
|
||||||
* [FEX.NET](https://fex.net/) - 100GB / 7 Days
|
* [file.kiwi](https://file.kiwi/) - Unlimited / 3.5 Days / [Free Download Duration](https://ibb.co/85z9D1s)
|
||||||
* [SwissTransfer](https://www.swisstransfer.com/) - 50GB / 30 Days / 250 Downloads
|
* [easyupload](https://easyupload.io/) - 10GB / 50gb total / 30 days
|
||||||
* [BowFile](https://bowfile.com/) - 20GB / 20 Days
|
* [fastupload](https://fastupload.io/en) - 10GB / 30 days
|
||||||
* [Hexupload](https://www.hexupload.net/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
* [desiupload](https://desiupload.co/) or [uploadraja](https://uploadraja.com/) - 10GB / 15 days
|
||||||
* [FileLu](https://filelu.com/) - 15GB / 1 Day (Unlimited With Account) / [Note](https://pastebin.com/Rr9ZqD2F)
|
* [fshare](https://www.fshare.vn/) - 10GB / 5 days
|
||||||
* [Fastupload.io](https://fastupload.io/en) - 10GB / 30 Days (60 Days With Account)
|
* [megaup](https://megaup.net/) - 5GB / 60 days
|
||||||
* [eDisk](https://www.edisk.cz/) or [Easyupload.io](https://easyupload.io/) - 10GB / 30 Days
|
* [ufile](https://ufile.io/) - 5GB / 30 days
|
||||||
* [Drop Download](https://drop.download/) - 10GB / 30 Days / Account Required
|
* [sendbig](https://www.sendbig.com/) - 5GB / 7 days
|
||||||
* [DesiUpload](https://desiupload.co/) - 10GB / 15 Days (15GB / 30 Days With Account)
|
* [Smash](https://fromsmash.com/) - 2GB / 7Days
|
||||||
* [GrosFichiers](https://www.grosfichiers.com/) - 10GB / 14 Days
|
* [alfafile](https://www.alfafile.net/) - 5GB / 30 days / Signup Required
|
||||||
* [Fshare](https://www.fshare.vn/) - 10GB / 5 Days
|
* [drop.download](https://drop.download/) - 5GB / 15 days / Signup Required
|
||||||
* [Uploadraja.com](https://uploadraja.com/) - 10GB / 4 Days (30GB / 15 Days With Account)
|
* [clicknupload](https://clicknupload.co/) - 2GB / 12 days / 5gb / 30 days on sign-up
|
||||||
* [FileTransfer.io](https://filetransfer.io/) - 6GB / 21 Days / 50 Downloads
|
* [doodrive](https://doodrive.com/) - 2GB / 30 days / Signup Required
|
||||||
* [Tempfile](https://tempfile.me/) - 10GB / 90 Days
|
* [sfile](https://sfile.mobi/) - 100MB / 5gb total / Forever
|
||||||
* [FileDitch](https://fileditch.com/), [Oshi](https://oshi.at/) or [SendGB](https://www.sendgb.com/) - 5GB / 90 Days
|
* [krakenfiles](https://krakenfiles.com/) - 1GB / 90 days
|
||||||
* [MegaUp](https://megaup.net/) - 5GB / 60 Days
|
* [Imagenetz](https://www.imagenetz.de/) - 2GB / 90 days
|
||||||
* [ufile.io](https://ufile.io/) - 5GB / 30 Days
|
* [filelu](https://filelu.com/) - ?GB / 10 days
|
||||||
* [Internxt Send](https://send.internxt.com/) - 5GB / 15 Days
|
* [fileconvoy](https://www.fileconvoy.com/) - 3GB / 21 days total
|
||||||
* [pCloud Transfer](https://transfer.pcloud.com/) or [Tresorit Send](https://send.tresorit.com/) - 5GB / 7 Days / Email Required
|
* [filetransfer](https://filetransfer.io/) - 6GB / 21 days total / 50 download limit
|
||||||
* [Temp.sh](https://temp.sh/) - 4GB / 3 Days
|
* [swisstransfer](https://www.swisstransfer.com/en) - 50GB / 30 days total / 250 download limit
|
||||||
* [File Convoy](https://www.fileconvoy.com/) - 3GB / 21 Days
|
* [bowfile](https://bowfile.com/) - 5GB / 30 days total
|
||||||
* [FilePost](https://file-post.net/) - 3GB / 7 Days / Email Required
|
* [grosfichiers](https://www.grosfichiers.com/) - 10GB / 14 days total
|
||||||
* [Send](https://send.vis.ee/) - 2.5GB / 3 Days / 10 Downloads / [Instances](https://gitlab.com/timvisee/send-instances)
|
* [filebin](https://filebin.net/) - Unlimited / 6 days total / Anyone w/ a link can delete
|
||||||
* [DropMB](https://dropmb.com/) - 2GB / 1 Year
|
* [fex](https://fex.net/) - 100GB total / 7 days total
|
||||||
* [FireLoad](https://www.fireload.com/) - 2GB / 60 Days / Account Required
|
* [Encl](https://encl.io/) - 10gb / 7 days total
|
||||||
* [Lufi](https://upload.disroot.org/) - 2GB / 30 Days
|
* [SendGB](https://www.sendgb.com/) - 5GB / 7 days total
|
||||||
* [DooDrive](https://doodrive.com/) - 2GB / 30 Days / Account Required
|
* [pCloud Transfer](https://transfer.pcloud.com/) - 5GB / 7 days total
|
||||||
* [Clicknupload](https://clicknupload.co/) - 2GB / 8 Days (10GB / 25 Days With Account)
|
* [tresorit](https://send.tresorit.com/) - 5GB / 7 days total
|
||||||
* [WeTransfer](https://wetransfer.com/) - 2GB / 7 Days
|
* [temp.sh](https://temp.sh/) - 4GB / 3 days total
|
||||||
* [Smash](https://fromsmash.com/) - 2GB / 7 Days / Email Required
|
* [file-post](https://file-post.net/) - 3GB / 7 days total
|
||||||
* [Limited Upload Hosts](https://rentry.org/xc48kg) - More Hosts / 1GB or Below
|
* [FireLoad](https://www.fireload.com/) - 2GB / 60 days total / Signup Required
|
||||||
|
* [WeTransfer](https://wetransfer.com/) - 2GB / 7 days total
|
||||||
|
* [LitterBox](https://litterbox.catbox.moe/) - 1GB / 3 days total
|
||||||
|
* [Limited Upload Hosts](https://rentry.org/xc48kg) - 1GB or below
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ P2P File Transfer
|
## ▷ P2P File Transfer
|
||||||
|
|
||||||
* ⭐ **[ToffeeShare](https://toffeeshare.com/)**
|
* ⭐ **[ToffeeShare](https://toffeeshare.com/)**
|
||||||
|
* ⭐ **[Transfer.sh](https://transfer.sh/)**
|
||||||
* ⭐ **[Blaze](https://blaze.vercel.app/)** / [GitHub](https://github.com/blenderskool/blaze)
|
* ⭐ **[Blaze](https://blaze.vercel.app/)** / [GitHub](https://github.com/blenderskool/blaze)
|
||||||
* ⭐ **[LocalSend](https://localsend.org/)** - Phone / Desktop Transfer / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png)
|
|
||||||
* ⭐ **[wormhole](https://wormhole.app/)**
|
* ⭐ **[wormhole](https://wormhole.app/)**
|
||||||
* ⭐ **[justbeamit](https://justbeamit.com/)**
|
* ⭐ **[justbeamit](https://justbeamit.com/)**
|
||||||
* ⭐ **[Tailscale](https://tailscale.com/)**
|
* ⭐ **[Tailscale](https://tailscale.com/)**
|
||||||
* ⭐ **[spacedrop](https://spacedrop.app/)**
|
* ⭐ **[LocalSend](https://localsend.org/)** - Phone / Desktop Transfer / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png)
|
||||||
* [Warpinator](https://github.com/linuxmint/warpinator) - Phone / Desktop Transfer
|
* [Warpinator](https://github.com/linuxmint/warpinator) - Phone / Desktop Transfer
|
||||||
* [QRServ](https://play.google.com/store/apps/details?id=dev.uint.qrserv) - Phone / Desktop Transfer / [GitHub](https://github.com/uintdev/qrserv)
|
* [QRServ](https://github.com/uintdev/qrserv) - Phone / Desktop Transfer
|
||||||
* [pairdrop](https://pairdrop.net/) or [Snapdrop](https://snapdrop.net/)
|
* [pairdrop](https://pairdrop.net/)
|
||||||
* [sharedrop](https://www.sharedrop.io/)
|
* [sharedrop](https://www.sharedrop.io/)
|
||||||
* [new.space](https://new.space/)
|
* [new.space](https://new.space/)
|
||||||
* [file.pizza](https://file.pizza/)
|
* [file.pizza](https://file.pizza/)
|
||||||
@ -341,7 +355,7 @@
|
|||||||
* [OwnCloud](https://owncloud.com/)
|
* [OwnCloud](https://owncloud.com/)
|
||||||
* [WinSCP](https://winscp.net/eng/index.php)
|
* [WinSCP](https://winscp.net/eng/index.php)
|
||||||
* [FileBrowser](https://filebrowser.org/)
|
* [FileBrowser](https://filebrowser.org/)
|
||||||
* [croc](https://github.com/schollz/croc) / [GUI](https://github.com/howeyc/crocgui)
|
* [croc](https://github.com/howeyc/crocgui)
|
||||||
* [landrop](https://landrop.app/)
|
* [landrop](https://landrop.app/)
|
||||||
* [Surge](https://getsurge.io/)
|
* [Surge](https://getsurge.io/)
|
||||||
* [saladroom](https://saladroom.net/)
|
* [saladroom](https://saladroom.net/)
|
||||||
@ -358,7 +372,6 @@
|
|||||||
* [PlusTransfer](https://www.plustransfer.com/)
|
* [PlusTransfer](https://www.plustransfer.com/)
|
||||||
* [Wing FTP](https://www.wftpserver.com/)
|
* [Wing FTP](https://www.wftpserver.com/)
|
||||||
* [Xlight](https://xlightftpd.com/)
|
* [Xlight](https://xlightftpd.com/)
|
||||||
* [FileZilla](https://filezilla-project.org/)
|
|
||||||
* [uschovna](https://www.uschovna.cz/)
|
* [uschovna](https://www.uschovna.cz/)
|
||||||
* [posilej](https://posilej.cz/)
|
* [posilej](https://posilej.cz/)
|
||||||
* [filetransfer](https://filetransfer.kpn.com/)
|
* [filetransfer](https://filetransfer.kpn.com/)
|
||||||
@ -368,11 +381,11 @@
|
|||||||
* [filepress](https://new.filepress.store/)
|
* [filepress](https://new.filepress.store/)
|
||||||
* [sharrr](https://www.sharrr.com/)
|
* [sharrr](https://www.sharrr.com/)
|
||||||
* [Photon](https://photondev.netlify.app/)
|
* [Photon](https://photondev.netlify.app/)
|
||||||
* [EchoDuck](https://echoduck.com/)
|
|
||||||
* [ffsend](https://github.com/timvisee/ffsend)
|
* [ffsend](https://github.com/timvisee/ffsend)
|
||||||
* [File.love](https://file.love/)
|
* [File.love](https://file.love/)
|
||||||
* [IPFS](https://ipfs.tech/) or [kubo](https://github.com/ipfs/kubo) - P2P Hypermedia Protocol
|
* [spacedrop](https://spacedrop.app/)
|
||||||
* IPFS Tools - [Resources](https://github.com/ipfs/awesome-ipfs) / [Extension](https://github.com/ipfs/ipfs-companion) / [Desktop](https://github.com/ipfs/ipfs-desktop) / [IPFS Cluster](https://ipfscluster.io/)
|
* [IPFS](https://ipfs.tech/) - P2P Hypermedia Protocol / [Resources](https://github.com/ipfs/awesome-ipfs) / [Extension](https://github.com/ipfs/ipfs-companion) / [Desktop](https://github.com/ipfs/ipfs-desktop)
|
||||||
|
* [IPFS Cluster](https://ipfscluster.io/) - Automated data availability and redundancy on IPFS
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -382,42 +395,42 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[Cloud Storage Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** - Compare Cloud Storage Polices
|
* ⭐ **[Cloud Storage Comparisions](https://eylenburg.github.io/cloud_comparison.htm)** - Compare Cloud Storage Polices
|
||||||
* ⭐ **[Rclone](https://rclone.org/)** - Cloud Storage Manager
|
* ⭐ **[RClone](https://rclone.org/)** - Cloud Storage Manager
|
||||||
* ⭐ **Rclone Tools** - [Guide](https://telegra.ph/Simple-rclone-usage-01-13) / [WebUI](https://github.com/rclone/rclone-webui-react), [2](https://github.com/MinorMole/RcloneBrowser-Portable) / [GUI](https://github.com/kapitainsky/RcloneBrowser) / [Colab](https://colab.research.google.com/github/szyha/RcloneLabArchive/blob/master/RcloneLab.ipynb) / [Telegram](https://t.me/rclonexbot) / [Transfer Tool](https://github.com/TheCaduceus/Multi-Cloud-Transfer-Tool)
|
* ⭐ **RClone Tools** - [Guide](https://telegra.ph/Simple-rclone-usage-01-13) / [WebUI](https://github.com/rclone/rclone-webui-react), [2](https://github.com/MinorMole/RcloneBrowser-Portable) / [GUI](https://github.com/kapitainsky/RcloneBrowser) / [Colab](https://colab.research.google.com/github/szyha/RcloneLabArchive/blob/master/RcloneLab.ipynb) / [Telegram](https://t.me/rclonexbot) / [Transfer Tool](https://github.com/TheCaduceus/Multi-Cloud-Transfer-Tool)
|
||||||
* ⭐ **[gclone](https://github.com/dogbutcat/gclone)**, [2](https://github.com/l3v11/gclone) - Cloud Storage Manager
|
* ⭐ **[gclone](https://github.com/dogbutcat/gclone)**, [2](https://github.com/l3v11/gclone) - Cloud Storage Manager
|
||||||
* ⭐ **gclone Tools** - [Guide](https://telegra.ph/Gclone-Guide-for-Windows-07-20) / [Telegram](https://github.com/wrenfairbank/telegram_gcloner) / [Bot](https://github.com/MsGsuite/CloneBot) / [Discord Bot](https://github.com/Rekulous/CloneCord-bot), [2](https://github.com/jsmsj/GcloneDiscordify)
|
* ⭐ **gclone Tools** - [Guide](https://telegra.ph/Gclone-Guide-for-Windows-07-20) / [Telegram](https://github.com/wrenfairbank/telegram_gcloner) / [Bot](https://github.com/MsGsuite/CloneBot) / [Discord Bot](https://github.com/Rekulous/CloneCord-bot), [2](https://github.com/jsmsj/GcloneDiscordify) / [Colab](https://github.com/Rekulous/GCloneLab), [2](https://colab.research.google.com/github/Rekulous/GCloneLab/blob/main/GCloneLab.ipynb)
|
||||||
* ⭐ **[Air Explorer](https://airexplorer.net/en/)** - Cloud Storage Manager
|
* ⭐ **[Air Explorer](https://airexplorer.net/en/)** - Cloud Storage Manager
|
||||||
* ⭐ **[RaiDrive](https://www.raidrive.com/)** - Cloud Storage Manager
|
* ⭐ **[RaiDrive](https://www.raidrive.com/)** - Cloud Storage Manager
|
||||||
* ⭐ **[GDrive](https://drive.google.com/)** - 15GB Free / ~$3.25 for 1TB
|
* ⭐ **[GDrive](https://drive.google.com/)** - 15GB Free / ~$3.25 for 1TB
|
||||||
* ⭐ **[mega](https://mega.nz/)** - 20GB Free / ~$4.5 for 1TB / [GitHub](https://github.com/meganz)
|
* ⭐ **[mega](https://mega.nz/)** - 20GB Free / ~$4.5 for 1TB / [GitHub](https://github.com/meganz)
|
||||||
* ⭐ **[disk.yandex](https://disk.yandex.com/)** - 5GB Free / $2.42 for 1TB
|
* ⭐ **[disk.yandex](https://disk.yandex.com/)** - 5GB Free / $2.42 for 1TB
|
||||||
* ⭐ **[filen](https://filen.io/)** - 10GB Free / ~$8 for 1TB
|
* ⭐ **[filen](https://filen.io/)** - 10GB Free / ~$8 for 1TB
|
||||||
|
* ⭐ **[internxt](https://internxt.com/)** - 10GB Free / ~4.85 for 1TB
|
||||||
* ⭐ **[Cyberduck](https://cyberduck.io/)** - Libre Server / Cloud Storage Browser
|
* ⭐ **[Cyberduck](https://cyberduck.io/)** - Libre Server / Cloud Storage Browser
|
||||||
* [Cloud Storage Archiving Guide](https://pastebin.com/kLhLHsXg) - How To Safely Archive Files on Cloud Storage Sites
|
* [Cloud Storage Archiving Guide](https://pastebin.com/kLhLHsXg) - How To Safely Archive Files on Cloud Storage Sites
|
||||||
* [terabox](https://terabox.com/) - 1TB Free / $3.50 for 2TB / [Downloader](https://indexsubtitle.cc/terabox-direct-link-generator)
|
* [terabox](https://terabox.com/) - 1TB Free / $3.50 for 2TB
|
||||||
* [dropbox](https://www.dropbox.com/) - 1 or 2 GB Free / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral)
|
* [CyberFile](https://cyberfile.me/) - 1TB Free
|
||||||
|
* [HelURL](https://helurl.com/) - 50GB Free
|
||||||
|
* [dropbox](https://www.dropbox.com/) - 5GB Free / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral)
|
||||||
* [mediafire](https://www.mediafire.com/) - 10GB Free / $5.83 for 1TB
|
* [mediafire](https://www.mediafire.com/) - 10GB Free / $5.83 for 1TB
|
||||||
* [icedrive](https://icedrive.net/) - 10GB Free / $5 for 1TB
|
* [icedrive](https://icedrive.net/) - 10GB Free / $5 for 1TB
|
||||||
* [PCloud](https://www.pcloud.com/) - 10GB Free / ~$4.16 for 1TB
|
* [PCloud](https://www.pcloud.com/) - 10GB Free / ~$4.16 for 1TB
|
||||||
* [JumpShare](https://jumpshare.com/) - 2GB Free / $8.25 for 1TB
|
* [JumpShare](https://jumpshare.com/) - 2GB Free / $8.25 for 1TB
|
||||||
* [CyberFile](https://cyberfile.me/) - 10GB Free
|
|
||||||
* [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16.67 for 1TB
|
* [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16.67 for 1TB
|
||||||
* [storj](https://www.storj.io/) - 25GB Free / ~$4 for 1TB
|
* [storj](https://www.storj.io/) - 25GB Free / ~$4 for 1TB
|
||||||
* [Blomp](https://www.blomp.com/) - 20GB Free / ~$3 for 2TB
|
* [xpipe](https://github.com/xpipe-io/xpipe) - Remote File Manager
|
||||||
* [internxt](https://internxt.com/) - 10GB Free / ~4.85 for 1TB
|
|
||||||
* [1Cloud File](https://1cloudfile.com/) - 10GB Free
|
|
||||||
* [xpipe](https://xpipe.io) - Remote File Manager
|
|
||||||
* [bookmarkfs](https://github.com/CoolElectronics/bookmarkfs) - Chrome's Profile Sync Cloud Storage
|
* [bookmarkfs](https://github.com/CoolElectronics/bookmarkfs) - Chrome's Profile Sync Cloud Storage
|
||||||
* [InfiniDrive](https://github.com/nicomda/InfiniDrive) - Amazon Prime Photos Cloud Storage
|
* [InfiniDrive](https://github.com/nicomda/InfiniDrive) - Amazon Prime Photos Cloud Storage
|
||||||
* [OneDriveFly](https://github.com/Tai7sy/OneDriveFly) or [OneDrive Vercel Index](https://ovi.swo.moe/) - OneDrive Indexes
|
* [OneDriveFly](https://github.com/Tai7sy/OneDriveFly) or [OneDrive Vercel Index](https://ovi.swo.moe/) - OneDrive Indexes
|
||||||
* [Fix-OneDrive-Zip](https://github.com/pmqs/Fix-OneDrive-Zip) - Fix OneDrive Zip Files >4gb
|
* [Fix-OneDrive-Zip](https://github.com/pmqs/Fix-OneDrive-Zip) - Fix OneDrive Zip Files >4gb
|
||||||
|
* [Microsoft-E5-Auto-Renewal](https://github.com/TheCaduceus/Microsoft-E5-Auto-Renewal) - Developer E5 Auto Renewal
|
||||||
* [Koofr](https://koofr.eu/) - Cloud Storage Manager
|
* [Koofr](https://koofr.eu/) - Cloud Storage Manager
|
||||||
* [SpaceDrive](https://www.spacedrive.com/) - Cloud Storage Manager
|
* [SpaceDrive](https://www.spacedrive.com/) - Cloud Storage Manager
|
||||||
* [CarotDAV](http://rei.to/carotdav_en.html) - Cloud Storage Manager
|
* [CarotDAV](http://rei.to/carotdav_en.html) - Cloud Storage Manager
|
||||||
* [MultCloud](https://www.multcloud.com/) - Cloud Storage Manager
|
* [MultCloud](https://www.multcloud.com/) - Cloud Storage Manager
|
||||||
* [MSP360](https://www.msp360.com/explorer.aspx) - Cloud Storage Manager
|
* [MSP360](https://www.msp360.com/explorer.aspx) - Cloud Storage Manager
|
||||||
* [AList](https://alist.nn.ci) - Cloud Storage Manager
|
* [AList](https://github.com/alist-org/alist) - Cloud Storage Manager
|
||||||
* [SeaFile](https://www.seafile.com/en/home/) or [FileStash](https://www.filestash.app/) - Self-Hosted Cloud Storage / [Fork](https://github.com/ZizzyDizzyMC/linx-server/)
|
* [SeaFile](https://www.seafile.com/en/home/) or [FileStash](https://www.filestash.app/) - Self-Hosted Cloud Storage / [Fork](https://github.com/ZizzyDizzyMC/linx-server/)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -425,7 +438,8 @@
|
|||||||
## ▷ GDrive Tools
|
## ▷ GDrive Tools
|
||||||
|
|
||||||
* ↪️ **[GDrive File Sharing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_gdrive_file_sharing)**
|
* ↪️ **[GDrive File Sharing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_gdrive_file_sharing)**
|
||||||
* ⭐ **[OneClickRun](https://colab.research.google.com/github/biplobsd/OneClickRun/blob/master/OneClickRun.ipynb)** - Google Drive Tools Colab / [GitHub](https://github.com/biplobsd/OneClickRun) / [Features](https://i.ibb.co/BfF3djW/f0ab560a3aef.png) / Use Throwaways
|
* ↪️ **[Copy Google Drives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_copy_google_drives)**
|
||||||
|
* ⭐ **[OneClickRun](https://colab.research.google.com/github/biplobsd/OneClickRun/blob/master/OneClickRun.ipynb)** or [MiXLab](https://github.com/shirooo39/MiXLab) - Google Drive Tools Colab / [GitHub](https://github.com/biplobsd/OneClickRun) / [Features](https://i.ibb.co/BfF3djW/f0ab560a3aef.png) / Use Throwaways
|
||||||
* ⭐ **[SA Drive](https://github.com/jsmsj/sa-drive/)** - Service Account Drive Manager
|
* ⭐ **[SA Drive](https://github.com/jsmsj/sa-drive/)** - Service Account Drive Manager
|
||||||
* [Any File to GDrive](https://github.com/menukaonline/Any-file-to-Google-Drive) - DDL to GDrive Tool
|
* [Any File to GDrive](https://github.com/menukaonline/Any-file-to-Google-Drive) - DDL to GDrive Tool
|
||||||
* [DriveUploader](https://driveuploader.com/) - Receive Files via GDrive
|
* [DriveUploader](https://driveuploader.com/) - Receive Files via GDrive
|
||||||
@ -436,15 +450,14 @@
|
|||||||
* [gdrivedl](https://github.com/matthuisman/gdrivedl) - Google Drive Python Download Script
|
* [gdrivedl](https://github.com/matthuisman/gdrivedl) - Google Drive Python Download Script
|
||||||
* [GDriveSearcherBot](https://github.com/TheHamkerCat/GdriveSearcherBot) - GDrive Search Bot
|
* [GDriveSearcherBot](https://github.com/TheHamkerCat/GdriveSearcherBot) - GDrive Search Bot
|
||||||
* [ISAAC](https://github.com/harryeffinpotter/ISAAC) - Google Service Account Generators
|
* [ISAAC](https://github.com/harryeffinpotter/ISAAC) - Google Service Account Generators
|
||||||
* [goindex](https://github.com/alx-xlx/goindex) / [Extended](https://github.com/menukaonline/goindex-extended) / [Themes](https://install.kenci.workers.dev/) or [Google-Drive-Index](https://gitlab.com/GoogleDriveIndex/Google-Drive-Index) - Google Drive Indexers
|
* [G-Index](https://github.com/LeeluPradhan/G-Index), [goindex](https://github.com/alx-xlx/goindex) / [Extended](https://github.com/menukaonline/goindex-extended) / [Themes](https://install.kenci.workers.dev/), [GDIndex](https://github.com/maple3142/GDIndex), [Google-Drive-Index](https://gitlab.com/GoogleDriveIndex/Google-Drive-Index) or [libDrive](https://github.com/libDrive/heroku) - Google Drive Indexers
|
||||||
* [Decrypt.Hashhackers](https://decrypt.hashhackers.com/) - Encrypt / Decrypt GDrive
|
* [Decrypt.Hashhackers](https://decrypt.hashhackers.com/) - Encrypt / Decrypt GDrive
|
||||||
* [gdurl](https://gdurl.com/), [google-drive-direct-link-generator/](https://www.wonderplugin.com/online-tools/google-drive-direct-link-generator/),[Direct.GDrive](https://direct.gdrive.vip/en/), [Maulvi](https://maulvi.github.io/), [GDriveWebAppPublic ](https://github.com/CloudflareHackers/GDriveWebAppPublic), [Google Drive Direct Links](https://greasyfork.org/en/scripts/10052) or [Sharer](https://sharer.pw/) - Host Direct Links on GDrive
|
* [Direct.GDrive](https://direct.gdrive.vip/en/), [Maulvi](https://maulvi.github.io/), [Google Drive Direct Links](https://greasyfork.org/en/scripts/10052) or [Sharer](https://sharer.pw/) - Host Direct Links on GDrive
|
||||||
* [GdriveCloneWeb](https://github.com/jsmsj/GdriveCloneWeb), [Google Drive Copy Folder](https://github.com/ericyd/gdrive-copy), [Copy Folder](https://chromewebstore.google.com/detail/copy-folder/kfbicpdhiofpicipfggljdhjokjblnhl) or [Google Drive Clone Bot](https://jsmsj.github.io/GdriveCloneBot/) - Copy Google Drives
|
|
||||||
* [CloneBot](https://github.com/MsGsuite/CloneBot_Heroku) - Copy GDrive to TeamDrive
|
* [CloneBot](https://github.com/MsGsuite/CloneBot_Heroku) - Copy GDrive to TeamDrive
|
||||||
* [GD-EFC Link Encryptor](https://rekulous.github.io/gd-efc-encryptor/) - Google Drive Link Encryptor for GD-EFC
|
* [GD-EFC Link Encryptor](https://rekulous.github.io/gd-efc-encryptor/) - Google Drive Link Encryptor for GD-EFC
|
||||||
* [gd-efc](https://anadius.github.io/gd-efc/) - Copy Encrypted Google Drive
|
* [gd-efc](https://anadius.github.io/gd-efc/) - Copy Encrypted Google Drive
|
||||||
|
* [gdurl](https://gdurl.com/), [google-drive-direct-link-generator/](https://www.wonderplugin.com/online-tools/google-drive-direct-link-generator/) - Direct GDrive Link Generators
|
||||||
* [Gdrive Guide-Noob Friendly](https://telegra.ph/Gdrive-Guide-Noob-Friendly-04-10) - GDrive Guide
|
* [Gdrive Guide-Noob Friendly](https://telegra.ph/Gdrive-Guide-Noob-Friendly-04-10) - GDrive Guide
|
||||||
* [DriveRename](https://driverename.iblogbox.com/) - Bulk GDrive File Rename
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
1241
GamingPiracyGuide.md
1241
GamingPiracyGuide.md
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
418
LinuxGuide.md
418
LinuxGuide.md
@ -6,11 +6,12 @@
|
|||||||
|
|
||||||
# ► Linux Distros
|
# ► Linux Distros
|
||||||
|
|
||||||
* **Note** - We don't curate individual distros ourselves as we feel the indexes listed are good enough to stand on their own.
|
**Note** - We don't curate individual distros ourselves as we feel the indexes listed are good enough to stand on their own.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[Linux Difficulty Chart](https://i.ibb.co/kXJdBrF/98e87fc317dd.png)**
|
* ⭐ **[Linux Difficulty Chart](https://i.ibb.co/kXJdBrF/98e87fc317dd.png)**
|
||||||
|
* ⭐ **[Beginner Distros](https://ash.fail/distros.html)**
|
||||||
* ⭐ **[DistroChooser](https://distrochooser.de/)**
|
* ⭐ **[DistroChooser](https://distrochooser.de/)**
|
||||||
* ⭐ **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)**
|
* ⭐ **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)**
|
||||||
* ⭐ **[Babbies First Linux](https://wiki.installgentoo.com/index.php/Babbies_First_Linux)**
|
* ⭐ **[Babbies First Linux](https://wiki.installgentoo.com/index.php/Babbies_First_Linux)**
|
||||||
@ -21,81 +22,7 @@
|
|||||||
* [OS.click](https://os.click/en)
|
* [OS.click](https://os.click/en)
|
||||||
* [LinuxTracker](https://linuxtracker.org/)
|
* [LinuxTracker](https://linuxtracker.org/)
|
||||||
* [OpenSourceFeed](https://www.opensourcefeed.org/)
|
* [OpenSourceFeed](https://www.opensourcefeed.org/)
|
||||||
* [Pkgs](https://pkgs.org/) / [Repology](https://repology.org/)
|
* [Pkgs](https://pkgs.org/)
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Linux Communities
|
|
||||||
|
|
||||||
* ⭐ **[All Things Linux](https://discord.gg/linux)** - Linux Discord Server
|
|
||||||
* [Linux.Chat](https://discord.gg/linuxchat) - Linux Discord Server
|
|
||||||
* [Linux x Technology](https://linuxdiscord.com/) - Linux Discord Server
|
|
||||||
* [Discord-Linux](https://discord.gg/discord-linux) - Linux Discord Server
|
|
||||||
* [Linux.org](https://linux.org/) - Linux Forum
|
|
||||||
* [Ezlinux](https://ezlinux.net/) - Linux Forum
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Linux Guides
|
|
||||||
|
|
||||||
* ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
|
|
||||||
* ⭐ **[Archwiki](https://wiki.archlinux.org/)** - Arch Linux Guide / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
|
|
||||||
* ⭐ **[InstallGentoo](https://wiki.installgentoo.com/)** - Linux Guides
|
|
||||||
* [GameShell](https://github.com/phyver/GameShell) - Unix Shell Learning Game
|
|
||||||
* [Gentoo Wiki](https://wiki.gentoo.org/wiki/Main_Page) - Gentoo Guides
|
|
||||||
* [HowToLinux](https://howtolinux.vercel.app) - Linux Guides
|
|
||||||
* [HowtoForge](https://www.howtoforge.com/) - Linux Guides
|
|
||||||
* [Sindresorhus Guides](https://github.com/sindresorhus/guides) - Linux Guides
|
|
||||||
* [Erik Dubois](https://www.youtube.com/c/ErikDubois) - Linux Guides
|
|
||||||
* [LinuxJourney](https://linuxjourney.com/) - Linux Guides
|
|
||||||
* [Linuxtopia](https://www.linuxtopia.org/) - Linux Guides
|
|
||||||
* [Mental Outlaw](https://www.youtube.com/channel/UC7YOGHUfC1Tb6E4pudI9STA) - Linux Guides
|
|
||||||
* [Boot-Repair](https://help.ubuntu.com/community/Boot-Repair) - Grub Repair Guide for Linux Systems
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Linux System
|
|
||||||
|
|
||||||
* 🌐 **[Awesome Gnome](https://github.com/Kazhnuz/awesome-gnome)** - GNOME Resources
|
|
||||||
* ⭐ **[Ventoy](https://www.ventoy.net)** / [GitHub](https://github.com/ventoy/Ventoy) or [Impression](https://gitlab.com/adhami3310/Impression) - Create Bootable USB Linux Drives
|
|
||||||
* ⭐ **[Btop](https://github.com/aristocratos/btop)**, **[fastfetch](https://github.com/fastfetch-cli/fastfetch)**, **[MangoHud](https://github.com/flightlessmango/MangoHud)**, [CPU-X](https://github.com/TheTumultuousUnicornOfDarkness/CPU-X), [Macchina](https://github.com/Macchina-CLI/macchina), [Archey4](https://github.com/HorlogeSkynet/archey4), [Hyfetch](https://github.com/hykilpikonna/hyfetch) or [s-tui](https://github.com/amanusk/s-tui) - System Info / Resource Monitors
|
|
||||||
* ⭐ **[TimeShift](https://github.com/linuxmint/timeshift)** - System Restore / Backup
|
|
||||||
* [DistroSea](https://distrosea.com/), [anuraOS](https://github.com/MercuryWorkshop/anuraOS) - Linux Browser Emulator
|
|
||||||
* [SysmonForLinux](https://github.com/Sysinternals/SysmonForLinux) - Monitor / Log System Activity
|
|
||||||
* [screenFetch](https://github.com/KittyKatt/screenFetch) - Bash Screenshot Information Tool
|
|
||||||
* [Nanobench](https://github.com/andreas-abel/nanoBench) - CPU Microbenchmark / [Documentation](https://nanobench.ankerl.com/)
|
|
||||||
* [ScanMem](https://github.com/scanmem/scanmem) - Memory Scanner / Debugger
|
|
||||||
* [pacwall](https://github.com/Kharacternyk/pacwall) - Live Wallpaper Dependency Graph / Package Status
|
|
||||||
* [keyd](https://github.com/rvaiya/keyd) or [xremap](https://github.com/k0kubun/xremap) - Keyboard Remapping
|
|
||||||
* [LAN Mouse](https://github.com/feschber/lan-mouse) - Mouse & Keyboard Sharing
|
|
||||||
* [Input Leap](https://github.com/input-leap/input-leap) - Multi-Computer Control
|
|
||||||
* [auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) - CPU Speed & Power Optimization Automation
|
|
||||||
* [node-startup](https://github.com/ralyodio/node-startup) - Startup Script
|
|
||||||
* [winapps](https://github.com/Fmstrat/winapps) - Run Windows Apps on Linux
|
|
||||||
* [Teleport](https://teleportsite.pages.dev/) - Windows App Compatibility Analyzer
|
|
||||||
* [WoeUSB](https://github.com/WoeUSB/WoeUSB) or [Windows2USB](https://github.com/ValdikSS/windows2usb) - Create Bootable USB Windows Drives
|
|
||||||
* [NetBoot](https://netboot.xyz/) - Distro Installer
|
|
||||||
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
|
|
||||||
* [zfsBootMenu](https://docs.zfsbootmenu.org/) - ZFS Bootloader
|
|
||||||
* [Linux Heads](https://osresearch.net/) - Minimal CoreBoot / [GitHub](https://github.com/osresearch/heads)
|
|
||||||
* [GParted](https://gparted.org/) - Partition Manager
|
|
||||||
* [Archinstall](https://github.com/archlinux/archinstall) - Arch Linux Installers
|
|
||||||
* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME
|
|
||||||
* [CoreELEC](https://coreelec.org) / [GitHub](https://github.com/CoreELEC/CoreELEC) or [LibreELEC](https://libreelec.tv/) - Kodi-Based Operating System
|
|
||||||
* [WSL](https://learn.microsoft.com/en-us/windows/wsl/) - Run Linux on Windows / [Resources](https://github.com/sirredbeard/Awesome-WSL) / [Startup Launcher](https://github.com/nullpo-head/wsl-distrod) / [Wayland / X Server](https://github.com/microsoft/wslg)
|
|
||||||
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
|
|
||||||
* [fvwm](https://www.fvwm.org/) or [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Virtual Machines
|
|
||||||
* [WebVM](https://webvm.io/) - Browser Virtual Machine / [Discord](https://discord.gg/yTNZgySKGa)
|
|
||||||
* [OSX-KVM](https://github.com/kholia/OSX-KVM), [OneClick-macOS-Simple-KVM](https://notAperson535.github.io/OneClick-macOS-Simple-KVM) or [macOS-Simple-KVM](https://github.com/foxlet/macOS-Simple-KVM) - macOS Virtual Machines
|
|
||||||
* [kmon](https://kmon.cli.rs/) - Kernel Manager and Activity Monitor
|
|
||||||
* [Kernel Map](https://makelinux.github.io/kernel/map/) - Interactive Linux Kernel Map
|
|
||||||
* [SystemRescue](https://www.system-rescue.org/) or [Super Grub2 Disk](https://www.supergrubdisk.org/super-grub2-disk/) - Bootable System Rescue Toolkits
|
|
||||||
* [coreboot](https://coreboot.org/) or [Libreboot](https://libreboot.org/) - Replace Proprietary BIOS/UEFI Firmware
|
|
||||||
* [bt-dualboot](https://github.com/x2es/bt-dualboot) - Dual-Boot Bluetooth Sync Tool
|
|
||||||
* [Hardcode Tray](https://github.com/bilelmoussaoui/Hardcode-Tray) - Hardcoded Tray Icon Fix
|
|
||||||
* [open-gpu-kernel-modules](https://github.com/NVIDIA/open-gpu-kernel-modules) - NVIDIA Linux Open GPU Kernel Module
|
|
||||||
* [nosystemd](https://nosystemd.org/) - Alternatives to Systemd
|
|
||||||
* [greetd](https://sr.ht/~kennylevinsen/greetd/) - Login Manager Daemon
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -109,36 +36,6 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Window Managers
|
|
||||||
|
|
||||||
* **Note** - Most Window Managers have a steep learning curve. Customization (or "ricing") is a requirement. [See below](https://fmhy.net/linuxguide#ricing-customization) for some resources.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
* 🌐 **[Window Manager Index](https://wiki.archlinux.org/title/Window_manager)** - List of Window Managers
|
|
||||||
* [awesomewm](https://github.com/awesomeWM/awesome) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Awesome)
|
|
||||||
* [dwm](https://dwm.suckless.org) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Dwm)
|
|
||||||
* [qtile](https://qtile.org/) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Qtile)
|
|
||||||
* [xmonad](https://xmonad.org/) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Xmonad)
|
|
||||||
* [Compix](https://github.com/xeome/compix) - Window Manager
|
|
||||||
* [bspwm](https://github.com/baskerville/bspwm) - Tiling Window Manager / [Binds](https://github.com/baskerville/sxhkd) / [Arch Wiki](https://wiki.archlinux.org/title/Bspwm)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Wayland Compositors
|
|
||||||
|
|
||||||
* 🌐 **[Wayland Compositor Index](https://wiki.archlinux.org/title/Wayland#Compositors)** - List of Wayland Compositors
|
|
||||||
* ⭐ **[Hyprland](https://hyprland.org/)** - Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://end-4.github.io/dots-hyprland-wiki/en/)
|
|
||||||
* ⭐ **[Sway](https://github.com/swaywm/sway)** or [SwayFx](https://github.com/WillPower3309/swayfx) - i3-compatible Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Sway)
|
|
||||||
* [Wayland](https://wayland.freedesktop.org/) - Linux Display Server Protocol / [Tools](https://arewewaylandyet.com/)
|
|
||||||
* [river](https://github.com/riverwm/river/) - Wayland Compositors
|
|
||||||
* [LabWC](https://github.com/labwc/labwc) - Wayland Compositors
|
|
||||||
* [kiwmi](https://github.com/buffet/kiwmi) - Wayland Compositors
|
|
||||||
* [picom](https://github.com/yshui/picom) - Wayland Compositors
|
|
||||||
* [wayfire](https://github.com/WayfireWM/wayfire/) - Wayland Compositors
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# ► Linux Apps
|
# ► Linux Apps
|
||||||
|
|
||||||
* ⭐ **[Bottles](https://usebottles.com/)** - Manage Wine containers
|
* ⭐ **[Bottles](https://usebottles.com/)** - Manage Wine containers
|
||||||
@ -146,39 +43,39 @@
|
|||||||
* ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI
|
* ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI
|
||||||
* ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** - Integrate AppImages to your App Launcher
|
* ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** - Integrate AppImages to your App Launcher
|
||||||
* ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes
|
* ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes
|
||||||
* ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers
|
* ⭐ **[rofi](https://github.com/davatorium/rofi)** / [Emoji Selector](https://github.com/Mange/rofi-emoji) or [Ulauncher](https://ulauncher.io/) - App Launchers
|
||||||
* [wslu](https://wslutiliti.es/wslu) / [GitHub](https://github.com/wslutilities/wslu) - Utilities for Windows 10 Linux Subsystem
|
* [wslu](https://github.com/wslutilities/wslu) - Utilities for Windows 10 Linux Subsystem
|
||||||
* [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux
|
* [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux
|
||||||
* [innoextract](https://constexpr.org/innoextract/) - Windows Installer Unpacker
|
* [DeskCut](https://github.com/NayamAmarshe/DeskCut) - Desktop Shortcuts App
|
||||||
* [nativefier_tauri](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps
|
* [nativefier_tauri](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps
|
||||||
* [Autokey](https://autokey.github.io/index.html) / [GitHub](https://github.com/autokey/autokey) - Linux Automation Utility
|
* [Autokey](https://github.com/autokey/autokey) - Linux Automation Utility
|
||||||
* [Touchégg](https://github.com/JoseExposito/touchegg) - Multi-Touch Gesture Recognizer
|
* [Touchégg](https://github.com/JoseExposito/touchegg) - Multi-Touch Gesture Recognizer
|
||||||
|
* [Enlightment](https://www.enlightenment.org/), [worm](https://github.com/codic12/worm), [dwm](https://dwm.suckless.org/), [qtile](https://qtile.org/), [xmonad](https://xmonad.org/), [zentile](https://github.com/blrsn/zentile) or [bspwm](https://github.com/baskerville/bspwm) - Window Managers / [Sub](https://www.reddit.com/r/bspwm/) / [Binds](https://github.com/baskerville/sxhkd)
|
||||||
* [Material Shell](https://material-shell.com/) or [Forge](https://github.com/forge-ext/forge) - GNOME Tiling Extension
|
* [Material Shell](https://material-shell.com/) or [Forge](https://github.com/forge-ext/forge) - GNOME Tiling Extension
|
||||||
* [Polonium](https://zeroxoneafour.github.io/polonium/) - KDE6 Tiling Manager Extension / [GitHub](https://github.com/zeroxoneafour/polonium)
|
* [Bismuth](https://bismuth-forge.github.io/bismuth/) - KDE Tiling Extension / [GitHub](https://github.com/Bismuth-Forge/bismuth)
|
||||||
* [Bismuth](https://bismuth-forge.github.io/bismuth/) - KDE5 Tiling Extension / [GitHub](https://github.com/Bismuth-Forge/bismuth)
|
|
||||||
* [Ghostwriter](https://ghostwriter.kde.org/) or [Remarkable](https://remarkableapp.github.io/) - Markdown Editor
|
* [Ghostwriter](https://ghostwriter.kde.org/) or [Remarkable](https://remarkableapp.github.io/) - Markdown Editor
|
||||||
* [Gedit](https://wiki.gnome.org/Apps/Gedit), [Geany](https://www.geany.org/), [Leafpad](http://tarot.freeshell.org/leafpad/), [NotepadNext](https://github.com/dail8859/NotepadNext), [taskbook](https://github.com/klaudiosinani/taskbook), [Notepadqq](https://github.com/notepadqq/notepadqq), [Featherpad](https://github.com/tsujan/FeatherPad) or [nb](https://xwmx.github.io/nb) / [GitHub](https://github.com/xwmx/nb) - Text Editor / Note Apps
|
* [Gedit](https://wiki.gnome.org/Apps/Gedit), [Geany](https://www.geany.org/), [Leafpad](http://tarot.freeshell.org/leafpad/), [NotepadNext](https://github.com/dail8859/NotepadNext), [Featherpad](https://github.com/tsujan/FeatherPad), [Mousepad](https://github.com/codebrainz/mousepad) or [Notepadqq](https://notepadqq.com/) - Text Editor
|
||||||
* [TextPieces](https://gitlab.com/liferooter/textpieces) - Quick Text Transformations / [Github](https://github.com/liferooter/textpieces)
|
* [TextPieces](https://github.com/liferooter/textpieces) - Quick Text Transformations
|
||||||
* [ly](https://github.com/fairyglade/ly) - Display Manager with Console UI
|
* [ly](https://github.com/fairyglade/ly) - Display Manager with Console UI
|
||||||
* [GammaStep](https://gitlab.com/chinstrap/gammastep) - Adjust Screen Temperature
|
* [GammaStep](https://gitlab.com/chinstrap/gammastep) - Adjust Screen Temperature
|
||||||
|
* [VirtScreen](https://github.com/kbumsik/VirtScreen) - Use Mobile Device as Monitor
|
||||||
* [Weylus](https://github.com/H-M-H/Weylus) - Use Mobile Device as Trackpad
|
* [Weylus](https://github.com/H-M-H/Weylus) - Use Mobile Device as Trackpad
|
||||||
* [AudioSource](https://github.com/gdzx/audiosource) - Use Mobile Device as Microphone
|
|
||||||
* [Ollama](https://ollama.ai/) / [Discord](https://discord.gg/ollama) - Run LLMs
|
* [Ollama](https://ollama.ai/) / [Discord](https://discord.gg/ollama) - Run LLMs
|
||||||
* [nyrna](https://nyrna.merritt.codes) - Suspend Apps / Games
|
* [nyrna](https://github.com/Merrit/nyrna) - Suspend Apps / Games
|
||||||
* [Solaar](https://github.com/pwr-Solaar/Solaar) - Logitech Device Manager
|
* [Solaar](https://github.com/pwr-Solaar/Solaar) - Logitech Device Manager
|
||||||
* [bluetuith](https://github.com/darkhz/bluetuith) - Bluetooth Manager
|
* [bluetuith](https://github.com/darkhz/bluetuith) - Bluetooth Manager
|
||||||
* [QR Scan](https://github.com/sayanarijit/qrscan) - QR Code Scanner
|
* [QR Scan](https://github.com/sayanarijit/qrscan) - QR Code Scanner
|
||||||
* [libimobiledevice](https://libimobiledevice.org) - Communicate with iOS Devices
|
* [libimobiledevice](https://github.com/libimobiledevice/libimobiledevice) - Communicate with iOS Devices
|
||||||
* [Meteo](https://gitlab.com/bitseater/meteo) - Weather App
|
* [Meteo](https://gitlab.com/bitseater/meteo) - Weather App
|
||||||
* [Client Evolution](https://help.gnome.org/users/evolution/stable/) - Calendar
|
* [Client Evolution](https://help.gnome.org/users/evolution/stable/) - Calendar
|
||||||
* [todo](https://github.com/sioodmy/todo/) or [Planify](https://github.com/alainm23/planify) - To-Do Apps
|
* [todo](https://github.com/sioodmy/todo/) - To-Do Apps
|
||||||
* [Timestrap](https://timestrap.bythewood.me/) or [Mindfulness at the Computer](https://fswb.codeberg.page/mindfulness-at-the-computer/) - Productivity Managers
|
* [Timestrap](https://timestrap.bythewood.me/) or [Mindfulness at the Computer](https://mindfulness-at-the-computer.gitlab.io/) - Productivity Managers
|
||||||
* [SafeEyes](https://slgobinath.github.io/SafeEyes/) - Break Reminders
|
* [SafeEyes](https://slgobinath.github.io/SafeEyes/) - Break Reminders
|
||||||
* [Dijo](https://github.com/NerdyPepper/dijo) - Activity Tracker
|
* [Dijo](https://github.com/NerdyPepper/dijo) - Activity Tracker
|
||||||
* [libmui](https://github.com/buserror/libmui) - Mac Style Widget Library
|
* [Manga Reader](https://flathub.org/apps/details/com.georgefb.mangareader) - Manga Reader
|
||||||
* [Railway](https://flathub.org/apps/de.schmidhuberj.DieBahn) - Travel Info Manager
|
* [dunst](https://dunst-project.org/) - Customizable Notification Daemon / [GitHub](https://github.com/dunst-project/dunst)
|
||||||
* [Komikku](https://valos.gitlab.io/Komikku/), [Suwayomi-VaadinUI](https://github.com/Suwayomi/Tachidesk-VaadinUI) or [Manga Reader](https://flathub.org/apps/details/com.georgefb.mangareader) - Manga Readers
|
* [A2LN](https://github.com/patri9ck/a2ln-app) - Display Android Notifications on Linux
|
||||||
* [Mako](https://github.com/emersion/mako), [dunst](https://dunst-project.org/) - Customizable Notification Daemon / [GitHub](https://github.com/dunst-project/dunst)
|
* [Breathing](https://github.com/SeaDve/Breathing) - Relaxation / Breathing Tool
|
||||||
* [DidYouMean](https://github.com/hisbaan/didyoumean) - Grammar Check
|
* [DidYouMean](https://github.com/hisbaan/didyoumean) - Grammar Check
|
||||||
* [KTouch](https://apps.kde.org/ktouch/), [typer](https://github.com/maaslalani/typer) or [Toipe](https://github.com/Samyak2/toipe) - Typing Practice
|
* [KTouch](https://apps.kde.org/ktouch/), [typer](https://github.com/maaslalani/typer) or [Toipe](https://github.com/Samyak2/toipe) - Typing Practice
|
||||||
|
|
||||||
@ -186,31 +83,27 @@
|
|||||||
|
|
||||||
## ▷ Software Sites
|
## ▷ Software Sites
|
||||||
|
|
||||||
* 🌐 **[ArchWiki App Sites](https://wiki.archlinux.org/title/List_of_applications)** - Linux Software / Site Index
|
* 🌐 **[Awesome Linux](https://luong-komorebi.github.io/Awesome-Linux-Software/)** or [Awesome KDE](https://github.com/francoism90/awesome-kde) - FOSS Software / [Image](https://i.ibb.co/KyTkKHz/ae00a5177857.png)
|
||||||
* 🌐 **[Awesome Linux](https://luong-komorebi.github.io/Awesome-Linux-Software/)** - FOSS Software Index
|
|
||||||
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=5.0)** / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=5.0)** / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
||||||
* ⭐ **[RuTracker](https://rutracker.org/forum/viewforum.php?f=1381)** / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
* ⭐ **[RuTracker](https://rutracker.org/forum/viewforum.php?f=1381)** / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||||
* ⭐ **[Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b)** - Multi-Site Software Search
|
* ⭐ **[Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b)** - Multi-Site Software Search
|
||||||
* [Awesome Linux Minimalism](https://github.com/knassar702/awesome-linux-minimalism) - FOSS Software
|
|
||||||
* [Awesome KDE](https://github.com/francoism90/awesome-kde) - FOSS Software
|
|
||||||
* [FOSS Torrents](https://fosstorrents.com/) - FOSS Software Torrents
|
|
||||||
* [Linux FOSS Image](https://i.ibb.co/KyTkKHz/ae00a5177857.png) - FOSS Software List
|
|
||||||
* [KDE Applications](https://apps.kde.org/) - KDE Apps
|
|
||||||
* [The Book of Secret Knowledge](https://github.com/trimstray/the-book-of-secret-knowledge)
|
* [The Book of Secret Knowledge](https://github.com/trimstray/the-book-of-secret-knowledge)
|
||||||
* [Ultimate Cheatsheet](https://gist.github.com/bgoonz/be5c5be77169ef333b431bc37d331176)
|
* [Ultimate Cheatsheet](https://gist.github.com/bgoonz/be5c5be77169ef333b431bc37d331176)
|
||||||
* [ArchWiki List of Applications](https://wiki.archlinux.org/title/list_of_applications)
|
* [ArchWiki List of Applications](https://wiki.archlinux.org/title/list_of_applications)
|
||||||
* [LinuxAlt](https://www.linuxalt.com/)
|
* [LinuxAlt](https://www.linuxalt.com/)
|
||||||
* [Plan9Port](https://9fans.github.io/plan9port/) / [GitHub](https://github.com/9fans/plan9port)
|
* [Plan9Port](https://github.com/9fans/plan9port)
|
||||||
* [tlanyan](https://itlanyan.com/)
|
* [tlanyan](https://itlanyan.com/)
|
||||||
* [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories
|
* [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories
|
||||||
* [SnapCraft](https://snapcraft.io/store) - Snap Repository
|
* [SnapCraft](https://snapcraft.io/store) - Snap Repository
|
||||||
* [GearLever](https://flathub.org/apps/it.mijorus.gearlever) or [AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher) - Appimage Managers
|
* [GearLever](https://flathub.org/apps/it.mijorus.gearlever) or [AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher) - Appimage Managers
|
||||||
* [NixOS](https://nixos.org/) / [Manager](https://github.com/nix-community/home-manager), [AppImagePool](https://github.com/prateekmedia/appimagepool), [Zap](https://zap.srev.in) / [GitHub](https://github.com/srevinsaju/zap), [pkgx](https://pkgx.sh/), [AM](https://github.com/ivan-hc/AM) or [Homebrew](https://brew.sh/) - Package Managers
|
* [NixOS](https://nixos.org/) / [Manager](https://github.com/nix-community/home-manager), [AppImagePool](https://github.com/prateekmedia/appimagepool), [Zap](https://github.com/srevinsaju/zap), [AM-Application-Manager](https://github.com/ivan-hc/AM-Application-Manager) or [Homebrew](https://brew.sh/) - Package Managers
|
||||||
* [cheat.sh](http://cheat.sh/) - App Repos
|
* [cheat.sh](http://cheat.sh/) - App Repos
|
||||||
* [AppImageHub](https://www.appimagehub.com/), [AppImages](https://appimage.github.io/) or [Get AppImage](https://g.srev.in/get-appimage/) - Download Appimages
|
* [AppImageHub](https://www.appimagehub.com/), [AppImages](https://appimage.github.io/) or [Get AppImage](https://g.srev.in/get-appimage/) - Download Appimages
|
||||||
* [yay](https://github.com/Jguer/yay), [paru](https://github.com/morganamilo/paru) or [aura](https://fosskers.github.io/aura/) - Arch User Repository Helpers
|
* [yay](https://github.com/Jguer/yay), [paru](https://github.com/morganamilo/paru) or [aura](https://github.com/fosskers/aura) - Arch User Repository Helpers
|
||||||
* [Apps for GNOME](https://apps.gnome.org/) - GNOME Apps
|
* [Apps for GNOME](https://apps.gnome.org/) - GNOME Apps
|
||||||
* [emplace](https://github.com/tversteeg/emplace) - System Package Sync
|
* [KDE Applications](https://apps.kde.org/) - KDE Apps
|
||||||
|
* [IzzySoft Apt Repositories](https://apt.izzysoft.de/)
|
||||||
|
* [Repology](https://repology.org/) - Package Repository Tracker
|
||||||
* [Pling](https://www.pling.com/) / [2](https://www.linux-apps.com/) - Linux Apps and Themes
|
* [Pling](https://www.pling.com/) / [2](https://www.linux-apps.com/) - Linux Apps and Themes
|
||||||
* [Pacstall](https://pacstall.dev/) - AUR-Inspired Package Manager for Ubuntu
|
* [Pacstall](https://pacstall.dev/) - AUR-Inspired Package Manager for Ubuntu
|
||||||
|
|
||||||
@ -218,17 +111,15 @@
|
|||||||
|
|
||||||
## ▷ Linux Video
|
## ▷ Linux Video
|
||||||
|
|
||||||
* ⭐ **[mpv](https://mpv.io/)** - Video Player
|
* ⭐ **[mpv](https://mpv.io/)** - Video Player / [Frontend](https://github.com/celluloid-player/celluloid)
|
||||||
* ⭐ **[Haruna](https://apps.kde.org/haruna/)** or **[Celluloid](https://github.com/celluloid-player/celluloid)** - MPV Frontends
|
|
||||||
* ⭐ **[Kdenlive](https://apps.kde.org/kdenlive/)** or [Flowblade](https://jliljebl.github.io/flowblade/) - Video Editors
|
|
||||||
* [MultiPlex](https://github.com/pojntfx/multiplex) - Torrent Watch Party / Use VPN
|
* [MultiPlex](https://github.com/pojntfx/multiplex) - Torrent Watch Party / Use VPN
|
||||||
* [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation
|
* [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation
|
||||||
* [Spectacle](https://apps.kde.org/spectacle/) - Screen Recorder / Clipping
|
* [Plumber](https://github.com/keshavbhatt/plumber) - Screen Recorder / Clipping
|
||||||
* [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor
|
* [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor
|
||||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
* [Flowblade](https://github.com/jliljebl/flowblade) - Video Editor
|
||||||
* [4KTUBE](https://github.com/rishabh3354/4KTUBE) or [Video Downloader](https://github.com/Unrud/video-downloader) - Video Downloaders
|
|
||||||
* [Peek](https://github.com/phw/peek) - Simple Video / GIF recorder
|
* [Peek](https://github.com/phw/peek) - Simple Video / GIF recorder
|
||||||
* [Linux-Fake-Background-Webcam](https://github.com/fangfufu/Linux-Fake-Background-Webcam/) - Fake Webcam Background
|
* [Linux-Fake-Background-Webcam](https://github.com/fangfufu/Linux-Fake-Background-Webcam/) - Fake Webcam Background
|
||||||
|
* [fmedia](https://github.com/stsaz/fmedia) - Media Player and Converter
|
||||||
* [ani-cli](https://github.com/pystardust/ani-cli) - Anime Streaming Terminal
|
* [ani-cli](https://github.com/pystardust/ani-cli) - Anime Streaming Terminal
|
||||||
* [Trackma](https://github.com/z411/trackma/) - Anime Tracking App
|
* [Trackma](https://github.com/z411/trackma/) - Anime Tracking App
|
||||||
* [LiveCaptions](https://github.com/abb128/LiveCaptions) - Real-time Captions
|
* [LiveCaptions](https://github.com/abb128/LiveCaptions) - Real-time Captions
|
||||||
@ -237,8 +128,7 @@
|
|||||||
|
|
||||||
## ▷ Linux Audio
|
## ▷ Linux Audio
|
||||||
|
|
||||||
* 🌐 **[Awesome Linux Audio](https://gitlab.com/nodiscc/awesome-linuxaudio)** - Live Audio Resources
|
* ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)**, [spotify-adblock](https://github.com/abba23/spotify-adblock) or [SpotifyNoPremium](https://github.com/Daksh777/SpotifyNoPremium) - Spotify Adblockers
|
||||||
* ⭐ **[SpotX-Bash](https://github.com/SpotX-Official/SpotX-Bash)**, [spotify-adblock](https://github.com/abba23/spotify-adblock) or [SpotifyNoPremium](https://github.com/Daksh777/SpotifyNoPremium) - Spotify Adblockers
|
|
||||||
* ⭐ **[SongRec](https://github.com/marin-m/SongRec)** or [Mousai](https://github.com/SeaDve/Mousai) - Song Identifiers
|
* ⭐ **[SongRec](https://github.com/marin-m/SongRec)** or [Mousai](https://github.com/SeaDve/Mousai) - Song Identifiers
|
||||||
* [Tidal Hi-Fi](https://github.com/Mastermindzh/tidal-hifi) - Hi-Fi Tidal for Linux
|
* [Tidal Hi-Fi](https://github.com/Mastermindzh/tidal-hifi) - Hi-Fi Tidal for Linux
|
||||||
* [cmus](https://cmus.github.io/) - Audio Player
|
* [cmus](https://cmus.github.io/) - Audio Player
|
||||||
@ -248,37 +138,34 @@
|
|||||||
* [Rhythmbox](https://wiki.gnome.org/Apps/Rhythmbox) - Audio Player
|
* [Rhythmbox](https://wiki.gnome.org/Apps/Rhythmbox) - Audio Player
|
||||||
* [Amberol](https://gitlab.gnome.org/World/amberol) - Audio Player
|
* [Amberol](https://gitlab.gnome.org/World/amberol) - Audio Player
|
||||||
* [Subsonic](https://github.com/twostraws/Subsonic) - Audio Player
|
* [Subsonic](https://github.com/twostraws/Subsonic) - Audio Player
|
||||||
* [Fooyin](https://github.com/ludouzi/fooyin) - Audio Player
|
|
||||||
* [g4music](https://gitlab.gnome.org/neithern/g4music) - Audio Player
|
* [g4music](https://gitlab.gnome.org/neithern/g4music) - Audio Player
|
||||||
* [dopamine](https://github.com/digimezzo/dopamine) - Audio Player
|
* [dopamine](https://github.com/digimezzo/dopamine) - Audio Player
|
||||||
* [AudioTube](https://invent.kde.org/multimedia/audiotube) - Audio Player
|
* [AudioTube](https://invent.kde.org/multimedia/audiotube) - Audio Player
|
||||||
* [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Music Client
|
* [Monophony](https://gitlab.com/Vistaus/monophony) - YouTube Music Client
|
||||||
* [ytermusic](https://github.com/ccgauche/ytermusic/) - YouTube Music Downloader
|
* [Deezer Linux](https://github.com/aunetx/deezer-linux) - Deezer Client
|
||||||
* [Deezer Linux](https://github.com/aunetx/deezer-linux) or [DZR](https://github.com/yne/dzr) - Deezer Clients
|
|
||||||
* [Myuzi](https://gitlab.com/albanobattistella/myuzi) - Music Streaming App
|
* [Myuzi](https://gitlab.com/albanobattistella/myuzi) - Music Streaming App
|
||||||
* [MusicPod](https://github.com/ubuntu-flutter-community/musicpod) - Podcast / Radio Player
|
|
||||||
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
|
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
|
||||||
* [Pipewire](https://wiki.archlinux.org/title/PipeWire#Noise_suppression_for_voice) / [Plugins](https://github.com/wwmm/easyeffects) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software
|
* [Pipewire](https://wiki.archlinux.org/title/PipeWire#Noise_suppression_for_voice) / [Plugins](https://github.com/wwmm/easyeffects) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software
|
||||||
* [Qtractor](https://qtractor.org/) - Audio Editor
|
* [Qtractor](https://qtractor.org/) - Audio Editor
|
||||||
* [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins
|
* [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins
|
||||||
* [Ensembles](https://github.com/ensemblesaw/ensembles-app) - Musical Performance Arranger
|
* [Ensembles](https://github.com/ensemblesaw/ensembles-app) - Musical Performance Arranger
|
||||||
* [Viper4Linux](https://github.com/Audio4Linux/Viper4Linux) / [GUI](https://github.com/Audio4Linux/Viper4Linux-GUI) or [JDSP4Linux](https://github.com/Audio4Linux/JDSP4Linux) - Audio Processors
|
* [Viper4Linux](https://github.com/Audio4Linux/Viper4Linux) / [GUI](https://github.com/Audio4Linux/Viper4Linux-GUI) or [JDSP4Linux](https://github.com/Audio4Linux/JDSP4Linux) - Audio Processors
|
||||||
|
* [Parlatype](https://www.parlatype.org/) - Audio Transcription
|
||||||
* [cava](https://github.com/karlstav/cava) - Console Audio Visualizer
|
* [cava](https://github.com/karlstav/cava) - Console Audio Visualizer
|
||||||
* [Sunamu](https://github.com/NyaomiDEV/Sunamu) - Now Playing Songs Display
|
|
||||||
* [CasterSoundboard](https://github.com/JupiterBroadcasting/CasterSoundboard) - Soundboard
|
* [CasterSoundboard](https://github.com/JupiterBroadcasting/CasterSoundboard) - Soundboard
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Linux Images
|
## ▷ Linux Images
|
||||||
|
|
||||||
* ⭐ **[Flameshot](https://flameshot.org/)** or [Scrot](https://github.com/resurrecting-open-source-projects/scrot) - Screenshot Tools
|
* ⭐ **[Flameshot](https://flameshot.org/)** - Screenshot Tool
|
||||||
* ⭐ **[TextSnatcher](https://textsnatcher.rf.gd/)** or [Frog](https://getfrog.app/) / [GitHub](https://github.com/TenderOwl/Frog/) - Image to Text
|
* ⭐ **[TextSnatcher](https://github.com/RajSolai/TextSnatcher)** or [Frog](https://tenderowl.com/work/frog/) - Image to Text
|
||||||
* [photoshopCClinux](https://github.com/Gictorbit/photoshopCClinux) - Linux Photoshop Installer
|
* [photoshopCClinux](https://github.com/Gictorbit/photoshopCClinux) - Linux Photoshop Installer
|
||||||
* [V4L2Loopback](https://github.com/umlaeute/v4l2loopback) - Create Virtual Cameras
|
* [V4L2Loopback](https://github.com/umlaeute/v4l2loopback) - Create Virtual Cameras
|
||||||
* [Drawing](https://maoschanz.github.io/drawing/) - Drawing App
|
* [Drawing](https://github.com/maoschanz/drawing) - Drawing App
|
||||||
* [Feh](https://feh.finalrewind.org/) or [NSXIV](https://github.com/nsxiv/nsxiv) - Image Viewer
|
* [Feh](https://feh.finalrewind.org/) or [NSXIV](https://github.com/nsxiv/nsxiv) - Image Viewer
|
||||||
* [lsix](https://github.com/hackerb9/lsix) - View Images in Terminal
|
* [lsix](https://github.com/hackerb9/lsix) - View Images in Terminal
|
||||||
* [Upscaler](https://gitlab.gnome.org/World/Upscaler) - Image Upscaler
|
* [Upscaler](https://gitlab.com/TheEvilSkeleton/Upscaler) - Image Upscaler
|
||||||
* [Trimage](https://trimage.org/) or [Curtail](https://github.com/Huluti/Curtail) - Image Compressor
|
* [Trimage](https://trimage.org/) or [Curtail](https://github.com/Huluti/Curtail) - Image Compressor
|
||||||
* [MkPosters](https://github.com/patrick-kidger/mkposters) - Turn Markdown Files into Posters
|
* [MkPosters](https://github.com/patrick-kidger/mkposters) - Turn Markdown Files into Posters
|
||||||
* [Rapid](https://damonlynch.net/rapid/) - Quick Linux Photo Importer
|
* [Rapid](https://damonlynch.net/rapid/) - Quick Linux Photo Importer
|
||||||
@ -289,26 +176,22 @@
|
|||||||
|
|
||||||
* 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games
|
* 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games
|
||||||
Linux Gaming Guide
|
Linux Gaming Guide
|
||||||
* 🌐 **[Are We Anti-Cheat Yet?](https://areweanticheatyet.com/)** - Anti-Cheat Game Database / GNU/Linux & Wine/Proton Compatibility
|
* ⭐ **[Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** / [2](https://web.archive.org/web/20221022121735/https://www.reddit.com/r/Piracy/comments/ndrtlf/comment/gyccwhk/?context=3) / [3](https://www.reddit.com/r/LinuxCrackSupport/wiki/index) - Linux Gaming Guides
|
||||||
* ⭐ **[Comprehensive Gaming Guide](https://linux-gaming.kwindu.eu/index.php?title=Main_Page)** / [2](https://github.com/rimsiw/linux-gaming-omg) / [3](https://web.archive.org/web/20221022121735/https://www.reddit.com/r/Piracy/comments/ndrtlf/comment/gyccwhk/?context=3) / [4](https://www.reddit.com/r/LinuxCrackSupport/wiki/index) - Linux Gaming Guides
|
* ⭐ **[protondb](https://www.protondb.com/)** - Proton Compatibility Descriptions
|
||||||
* ⭐ **[protondb](https://www.protondb.com/)**- Proton Compatibility Descriptions / [Steam Extension](https://github.com/Trsnaqe/protondb-community-extension)
|
|
||||||
* ⭐ **[Lutris](https://lutris.net/)** - Games Manager
|
* ⭐ **[Lutris](https://lutris.net/)** - Games Manager
|
||||||
* ⭐ **[proton-ge-custom](https://github.com/GloriousEggroll/proton-ge-custom)** - Play Windows Games on Linux / [Guide](https://www.reddit.com/r/LinuxCrackSupport/comments/yqfirv/how_to_install_fitgirl_or_dodi_windows_repacks_in/)
|
* ⭐ **[proton-ge-custom](https://github.com/GloriousEggroll/proton-ge-custom)** - Play Windows Games on Linux / [Guide](https://www.reddit.com/r/LinuxCrackSupport/comments/yqfirv/how_to_install_fitgirl_or_dodi_windows_repacks_in/)
|
||||||
* ⭐ **[ProtonUp-QT](https://github.com/DavidoTek/ProtonUp-Qt/)** - Install / Manage Proton-GE for Steam and Wine-GE for Lutris
|
* ⭐ **[ProtonUp-QT](https://github.com/DavidoTek/ProtonUp-Qt/)** - Install / Manage Proton-GE for Steam and Wine-GE for Lutris
|
||||||
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
||||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games
|
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games
|
||||||
* ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Support](https://gitlab.com/jc141x/portal)
|
* ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Support](https://gitlab.com/jc141x/portal)
|
||||||
* [GameHub](https://tkashkin.github.io/projects/gamehub/), [Gnome Games](https://wiki.gnome.org/Apps/Games), [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) or [Steal](https://github.com/AbdelrhmanNile/steal) - Game Libraries / Launchers
|
* [GameHub](https://tkashkin.github.io/projects/gamehub/), [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) or [Steal](https://github.com/AbdelrhmanNile/steal) - Game Managers
|
||||||
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||||
* [winesapOS](https://github.com/LukeShortCloud/winesapOS) - Play Games on Storage Devices
|
* [winesapOS](https://github.com/LukeShortCloud/winesapOS) - Play Games on Storage Devices
|
||||||
* [Gamebuntu](https://discourse.ubuntu.com/t/gamebuntu/25544/13) - Setup Gaming Environment on Ubuntu / [GitLab](https://gitlab.com/rswat09/gamebuntu)
|
* [Gamebuntu](https://discourse.ubuntu.com/t/gamebuntu/25544/13) - Setup Gaming Environment on Ubuntu / [GitLab](https://gitlab.com/rswat09/gamebuntu)
|
||||||
* [RetroPlus](https://github.com/Vysp3r/RetroPlus) - ROM Downloader
|
|
||||||
* [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games
|
* [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games
|
||||||
* [steam-tui](https://github.com/dmadisetti/steam-tui) - Rust TUI for Steam
|
* [steam-tui](https://github.com/dmadisetti/steam-tui) - Rust TUI for Steam
|
||||||
* [steam-cli](https://github.com/berenm/steam-cli) - CLI for Steam
|
* [steam-cli](https://github.com/berenm/steam-cli) - CLI for Steam
|
||||||
* [Luxtorpeda](https://github.com/luxtorpeda-dev/luxtorpeda) or [Boxtron](https://github.com/dreamer/boxtron) - Run Steam Games on Linux
|
* [Luxtorpeda](https://github.com/luxtorpeda-dev/luxtorpeda) or [Boxtron](https://github.com/dreamer/boxtron) - Run Steam Games on Linux
|
||||||
* [RetroDECK](https://retrodeck.net/) - Emulator for Steam Deck
|
|
||||||
* [CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities) - Steam Deck Utilities
|
|
||||||
* [GameScope](https://github.com/ValveSoftware/gamescope) - Steam Session Compositing Window Manager
|
* [GameScope](https://github.com/ValveSoftware/gamescope) - Steam Session Compositing Window Manager
|
||||||
* [SamRewritten](https://github.com/PaulCombal/SamRewritten) - Steam Achievement Manager
|
* [SamRewritten](https://github.com/PaulCombal/SamRewritten) - Steam Achievement Manager
|
||||||
* [Steam for Linux](https://github.com/ValveSoftware/steam-for-linux) - Steam Linux Beta Issue Tracker
|
* [Steam for Linux](https://github.com/ValveSoftware/steam-for-linux) - Steam Linux Beta Issue Tracker
|
||||||
@ -321,13 +204,12 @@ Linux Gaming Guide
|
|||||||
* [Liquorix](https://liquorix.net/), [Xanmod](https://xanmod.org/) or [Frogging](https://github.com/Frogging-Family/linux-tkg) - Linux Gaming Kernels
|
* [Liquorix](https://liquorix.net/), [Xanmod](https://xanmod.org/) or [Frogging](https://github.com/Frogging-Family/linux-tkg) - Linux Gaming Kernels
|
||||||
* [Gamemode](https://github.com/FeralInteractive/gamemode) - Linux System Optimizer
|
* [Gamemode](https://github.com/FeralInteractive/gamemode) - Linux System Optimizer
|
||||||
* [LibreGaming](https://github.com/Ahmed-Al-Balochi/LibreGaming) - Linux Game Package Downloader
|
* [LibreGaming](https://github.com/Ahmed-Al-Balochi/LibreGaming) - Linux Game Package Downloader
|
||||||
* [Prism43](https://github.com/DomHeadroom/Prism43) - Prism Launcher / Unlocker
|
|
||||||
* [mcpelauncher](https://github.com/minecraft-linux/mcpelauncher-manifest) - Minecraft Android Bedrock Edition Launcher for Linux
|
* [mcpelauncher](https://github.com/minecraft-linux/mcpelauncher-manifest) - Minecraft Android Bedrock Edition Launcher for Linux
|
||||||
* [VinegarHQ](https://vinegarhq.org/) - Bootstrapper for Roblox / [Studio Only](https://vinegarhq.org/Home/rol_faq.html)
|
* [VinegarHQ](https://vinegarhq.org/) - Bootstrapper for Roblox Player / Studio
|
||||||
* [Anime Game Launcher](https://github.com/an-anime-team/an-anime-game-launcher) / [Discord](https://discord.gg/ck37X6UWBp) - Genshin Impact Launcher
|
* [Bloxstrap](https://discord.com/invite/nKjV3mGq6R) - Roblox Launcher
|
||||||
|
* [Anime Game Launcher](https://github.com/an-anime-team/an-anime-game-launcher) - Genshin Impact Launcher
|
||||||
* [among-sus](https://git.sr.ht/~martijnbraam/among-sus) - Play Among Us in your Terminal (Recreation)
|
* [among-sus](https://git.sr.ht/~martijnbraam/among-sus) - Play Among Us in your Terminal (Recreation)
|
||||||
* [Gameboy.live](https://github.com/HFO4/gameboy.live) - Terminal Game Boy Emulator
|
* [Gameboy.live](https://github.com/HFO4/gameboy.live) - Terminal Game Boy Emulator
|
||||||
* [QuickPassthrough](https://github.com/HikariKnight/quickpassthrough) - Simplified Qemu GPU Passthrough
|
|
||||||
* [Gambit](https://github.com/maaslalani/gambit) - Terminal Chess
|
* [Gambit](https://github.com/maaslalani/gambit) - Terminal Chess
|
||||||
* [Sssnake](https://github.com/AngelJumbo/sssnake) - Terminal Snake
|
* [Sssnake](https://github.com/AngelJumbo/sssnake) - Terminal Snake
|
||||||
|
|
||||||
@ -337,43 +219,91 @@ Linux Gaming Guide
|
|||||||
|
|
||||||
## ▷ Adblock / Privacy
|
## ▷ Adblock / Privacy
|
||||||
|
|
||||||
* ↪️ **[Linux 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
* ↪️ **[Linux 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_two-factor_authentication)**
|
||||||
* ⭐ **[Arch Security Wiki](https://wiki.archlinux.org/title/Security)**, [Linux Hardening](https://vez.mrsk.me/linux-hardening.html) / [2](https://madaidans-insecurities.github.io/guides/linux-hardening.html) or [How to Secure a Linux Server](https://github.com/imthenachoman/How-To-Secure-A-Linux-Server) - Linux Security Guides
|
* ⭐ **[Arch Security Wiki](https://wiki.archlinux.org/title/Security)**, [Linux Hardening](https://vez.mrsk.me/linux-hardening.html) / [2](https://madaidans-insecurities.github.io/guides/linux-hardening.html) or [How to Secure a Linux Server](https://github.com/imthenachoman/How-To-Secure-A-Linux-Server) - Linux Security Guides
|
||||||
* ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI circumvention
|
* ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI circumvention
|
||||||
* ⭐ **[CryptSetup](https://gitlab.com/cryptsetup/cryptsetup)** or [Tomb](https://dyne.org/software/tomb/) - File Encryption
|
* ⭐ **[CryptSetup](https://gitlab.com/cryptsetup/cryptsetup)** or [Tomb](https://dyne.org/software/tomb//) - File Encryption
|
||||||
* [Securely Wipe Disk](https://wiki.archlinux.org/title/Securely_wipe_disk) or [SSD Memory Cell Clearing](https://wiki.archlinux.org/title/Solid_state_drive/Memory_cell_clearing) - Linux Disk Wipe Guides
|
|
||||||
* [JShielder](https://github.com/Jsitech/JShielder) - Hardening Script for Linux Servers
|
* [JShielder](https://github.com/Jsitech/JShielder) - Hardening Script for Linux Servers
|
||||||
* [SShuttle](https://github.com/sshuttle/sshuttle) - Proxy
|
* [SShuttle](https://github.com/sshuttle/sshuttle) - Proxy
|
||||||
* [Lynis](https://github.com/CISOfy/lynis) - Linux Security Auditing Tool
|
* [Lynis](https://github.com/CISOfy/lynis) - Linux Security Auditing Tool
|
||||||
* [Lockigest](https://elma.dev/work/lockigest/) / [GitHub](https://github.com/elmsec/lockigest) - Screen Locker
|
* [Lockigest](https://github.com/elmsec/lockigest) - Screen Locker
|
||||||
* [Mistborn](https://gitlab.com/cyber5k/mistborn) - Manage Cloud Security Apps
|
* [Mistborn](https://gitlab.com/cyber5k/mistborn) - Manage Cloud Security Apps
|
||||||
* [OpenSnitch](https://github.com/evilsocket/opensnitch) or [gufw](https://github.com/costales/gufw) - Linux Firewalls
|
* [OpenSnitch](https://github.com/evilsocket/opensnitch) or [gufw](https://github.com/costales/gufw) - Linux Firewalls
|
||||||
* [Tracee](https://aquasecurity.github.io/tracee/latest) - Runtime Security and Forensics
|
* [Tracee](https://github.com/aquasecurity/tracee) - Runtime Security and Forensics
|
||||||
* [Mofolinux](https://mofolinux.com/), [Tails](https://tails.boum.org/) or [Kodachi](https://www.digi77.com/linux-kodachi/) - Privacy-Based Operating System
|
* [Mofolinux](https://mofolinux.com/), [Tails](https://tails.boum.org/) or [Kodachi](https://www.digi77.com/linux-kodachi/) - Privacy-Based Operating System
|
||||||
* [OpenVPN Wrapper](https://github.com/slingamn/namespaced-openvpn) - VPN Tunnel
|
* [OpenVPN Wrapper](https://github.com/slingamn/namespaced-openvpn) - VPN Tunnel
|
||||||
* [Openconnect VPN Server](https://ocserv.gitlab.io/www/index.html) - Linux SSL VPN Server
|
* [Openconnect VPN Server](https://ocserv.gitlab.io/www/index.html) - Linux SSL VPN Server
|
||||||
* [DSVPN](https://github.com/jedisct1/dsvpn) - Self-Hosted VPN
|
* [arch-delugevpn](https://github.com/binhex/arch-delugevpn) - Docker with Torrent client and VPN on Arch Linux base
|
||||||
* [wireguird](https://github.com/UnnoTed/wireguird) - Wireguard GUI
|
* [wireguird](https://github.com/UnnoTed/wireguird) - Wireguard GUI
|
||||||
* [Netbird](https://github.com/netbirdio/netbird) or [vnStat](https://github.com/vergoh/vnstat) - Network Monitors
|
* [vnStat](https://github.com/vergoh/vnstat) - Network Monitor
|
||||||
* [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication
|
* [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication
|
||||||
* [ShuffleStacks](https://shufflecake.net/) - Create Hidden Volumes
|
* [ShuffleStacks](https://shufflecake.net/) - Create Hidden Volumes
|
||||||
* [Collision](https://flathub.org/apps/details/dev.geopjr.Collision) - Check File Hashes
|
* [Collision](https://flathub.org/apps/details/dev.geopjr.Collision) - Check File Hashes
|
||||||
* [WhoAmI Project](https://owerdogan.github.io/whoami-project) / [GitHub](https://github.com/owerdogan/whoami-project) - Privacy / Anonymity Tool
|
* [WhoAmI Project](https://github.com/owerdogan/whoami-project) - Privacy / Anonymity Tool
|
||||||
* [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS Partition
|
* [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS Partition
|
||||||
* [DNSWarden](https://dnswarden.com/) / [GitHub](https://github.com/bhanupratapys/dnswarden) - DNS Adblocking
|
* [BhanUpratpys](https://github.com/bhanupratapys/dnswarden) - DNS Adblocking
|
||||||
* [Firejail](https://firejail.wordpress.com/) or [Bubblewrap](https://github.com/containers/bubblewrap) - Sandboxing tools
|
* [Firejail](https://firejail.wordpress.com/) or [Bubblewrap](https://github.com/containers/bubblewrap) - Sandboxing tools
|
||||||
* [GoogleTeller](https://github.com/berthubert/googerteller) - Google Tracking Notifications
|
* [GoogleTeller](https://github.com/berthubert/googerteller) - Google Tracking Notifications
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ Linux System
|
||||||
|
|
||||||
|
* 🌐 **[Awesome Gnome](https://github.com/Kazhnuz/awesome-gnome)** - GNOME Resources
|
||||||
|
* ⭐ **[Linux.Chat](https://discord.gg/linuxchat)**, [Linux x Technology](https://linuxdiscord.com/), [Ezlinux](https://ezlinux.net/) or [Discord-Linux](https://discord.gg/discord-linux) - Linux Discussion / Forums
|
||||||
|
* ⭐ **[Archwiki](https://wiki.archlinux.org/)** - Arch Linux Wiki / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
|
||||||
|
* ⭐ **[Ventoy](https://github.com/ventoy/Ventoy)** - Create Bootable USB Linux Drives
|
||||||
|
* ⭐ **[Btop](https://github.com/aristocratos/btop)**, **[pfetch](https://github.com/dylanaraps/pfetch)**, **[MangoHud](https://github.com/flightlessmango/MangoHud)**, [CPU-X](https://github.com/TheTumultuousUnicornOfDarkness/CPU-X), [vtop](https://github.com/MrRio/vtop), [neofetch](https://github.com/dylanaraps/neofetch) / [Themes](https://github.com/chick2d/neofetch-themes) or [LM Sensors](https://github.com/lm-sensors/lm-sensors) - System Info / Resource Monitors
|
||||||
|
* [SysmonForLinux](https://github.com/Sysinternals/SysmonForLinux) - Monitor / Log System Activity
|
||||||
|
* [Nanobench](https://github.com/andreas-abel/nanoBench) - CPU Microbenchmark / [Documentation](https://nanobench.ankerl.com/)
|
||||||
|
* [ScanMem](https://github.com/scanmem/scanmem) - Memory Scanner / Debugger
|
||||||
|
* [Linux-dash](https://github.com/tariqbuilds/linux-dash) - Web-based System Dashboard
|
||||||
|
* [pacwall](https://github.com/Kharacternyk/pacwall) - Live Wallpaper Dependency Graph / Package Status
|
||||||
|
* [keyd](https://github.com/rvaiya/keyd) or [xremap](https://github.com/k0kubun/xremap) - Keyboard Remapping
|
||||||
|
* [auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) - CPU Speed & Power Optimization Automation
|
||||||
|
* [node-startup](https://github.com/ralyodio/node-startup) - Startup Script
|
||||||
|
* [die.net](https://linux.die.net/) - Linux Documentation
|
||||||
|
* [HowtoForge](https://www.howtoforge.com/), [Sindresorhus Guides](https://github.com/sindresorhus/guides), [Erik Dubois](https://www.youtube.com/c/ErikDubois), [LinuxJourney](https://linuxjourney.com/), [Mayfrost Guides](https://github.com/mayfrost/guides) or [Mental Outlaw](https://www.youtube.com/channel/UC7YOGHUfC1Tb6E4pudI9STA) - Linux Guides / Tutorials
|
||||||
|
* [howtodebuntu](https://github.com/themagicalmammal/howtolinux) - Tweaks for Debian Based Distros
|
||||||
|
* [winapps](https://github.com/Fmstrat/winapps) - Run Windows Apps on Linux
|
||||||
|
* [WoeUSB](https://github.com/WoeUSB/WoeUSB) or [Windows2USB](https://github.com/ValdikSS/windows2usb) - Create Bootable USB Windows Drives
|
||||||
|
* [NetBoot](https://netboot.xyz/) - Distro Installer
|
||||||
|
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
|
||||||
|
* [zfsBootMenu](https://github.com/zbm-dev/zfsbootmenu) - ZFS Bootloader
|
||||||
|
* [Linux Heads](https://osresearch.net/) - Minimal CoreBoot / [GitHub](https://github.com/osresearch/heads)
|
||||||
|
* [GParted](https://gparted.org/) - Partition Manager
|
||||||
|
* [ArchTitus](https://github.com/ChrisTitusTech/ArchTitus), [archinstall](https://github.com/archlinux/archinstall) or [Anarchy](https://anarchyinstaller.gitlab.io/) - Arch Linux Installer
|
||||||
|
* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME
|
||||||
|
* [OneClickDesktop](https://github.com/Har-Kuun/OneClickDesktop) - One-Click Remote Desktop
|
||||||
|
* [InstantBox](https://github.com/instantbox/instantbox) - Temporary Linux Systems
|
||||||
|
* [CoreELEC](https://github.com/CoreELEC/CoreELEC) or [LibreELEC](https://libreelec.tv/) - Kodi-Based Operating System
|
||||||
|
* [WSL](https://learn.microsoft.com/en-us/windows/wsl/) or [Tunic](https://github.com/mikeslattery/tunic) - Run Linux on Windows / [Resources](https://github.com/sirredbeard/Awesome-WSL) / [Startup Launcher](https://github.com/nullpo-head/wsl-distrod) / [Wayland / X Server](https://github.com/microsoft/wslg)
|
||||||
|
* [DistroSea](https://distrosea.com/) or [JSLinux](https://bellard.org/jslinux/) - Linux Browser Emulators
|
||||||
|
* [Vivek9Patel](https://vivek9patel.github.io/) - Run Ubuntu on Browser / [GitHub](https://github.com/vivek9patel/vivek9patel.github.io)
|
||||||
|
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
|
||||||
|
* [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Kernel-Based Virtual Machine
|
||||||
|
* [Ubuntu VNC](https://web.archive.org/web/20230729065457/https://cdn.discordapp.com/attachments/787671932957884416/787672107848302612/guicolab.ipynb) - Free Ubuntu VNC
|
||||||
|
* [OSX-KVM](https://github.com/kholia/OSX-KVM), [OneClick-macOS-Simple-KVM](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) or [macOS-Simple-KVM](https://github.com/foxlet/macOS-Simple-KVM) - macOS Virtual
|
||||||
|
* [kmon](https://kmon.cli.rs/) - Kernel Manager and Activity Monitor
|
||||||
|
* [Kernel Map](https://makelinux.github.io/kernel/map/) - Interactive Linux Kernel Map
|
||||||
|
* [UbuntuCleaner](https://github.com/gerardpuig/ubuntu-cleaner) - Easily clean Ubuntu(-based) Systems
|
||||||
|
* [TimeShift](https://github.com/linuxmint/timeshift) - System Restore / Backup
|
||||||
|
* [SystemRescue](https://www.system-rescue.org/) or [Super Grub2 Disk](https://www.supergrubdisk.org/super-grub2-disk/) - Bootable System Rescue Toolkits
|
||||||
|
* [Boot-Repair](https://help.ubuntu.com/community/Boot-Repair) - Grub Repair Guide for Linux Systems
|
||||||
|
* [sbupdate](https://github.com/andreyv/sbupdate) - Generate & Sign kernel images for UEFI Secure Boot Arch Linux
|
||||||
|
* [coreboot](https://coreboot.org/) or [Libreboot](https://libreboot.org/) - Replace Proprietary BIOS/UEFI Firmware
|
||||||
|
* [Hardcode Tray](https://github.com/bilelmoussaoui/Hardcode-Tray) - Hardcoded Tray Icon Fix
|
||||||
|
* [open-gpu-kernel-modules](https://github.com/NVIDIA/open-gpu-kernel-modules) - NVIDIA Linux Open GPU Kernel Module
|
||||||
|
* [nosystemd](https://nosystemd.org/) - Alternatives to Systemd
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
## ▷ Linux Internet
|
## ▷ Linux Internet
|
||||||
|
|
||||||
* ⭐ **[Soulseek](https://www.slsknet.org/SoulseekQt/Linux/SoulseekQt-2018-1-30-64bit-appimage.tgz)** - File Sharing App
|
* ⭐ **[Soulseek](https://www.slsknet.org/SoulseekQt/Linux/SoulseekQt-2018-1-30-64bit-appimage.tgz)** - File Sharing App
|
||||||
* ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients
|
* ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients
|
||||||
* [RuTorrent](https://github.com/Novik/ruTorrent) or [flood](https://flood.js.org/) - RTorrent Web Frontend / [Themes](https://github.com/artyuum/3rd-party-ruTorrent-Themes)
|
* [RuTorrent](https://github.com/Novik/ruTorrent) or [flood](https://flood.js.org/) - RTorrent Web Frontend / [Themes](https://github.com/artyuum/3rd-party-ruTorrent-Themes)
|
||||||
* rTorrent Tools - [Extended](http://rtorrent-ps.readthedocs.io/) / [Tools](https://pyrocore.readthedocs.org/) / [GitHub](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html)
|
* rTorrent Tools - [Extended](https://github.com/pyroscope/rtorrent-ps) / [Tools](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html)
|
||||||
* [BTFS](https://github.com/johang/btfs) - Bittorrent Filesystem
|
|
||||||
* [arch-delugevpn](https://github.com/binhex/arch-delugevpn) - Docker with Torrent client and VPN on Arch Linux base
|
|
||||||
* [Luakit](https://luakit.github.io/) - Lightweight Linux Browser
|
* [Luakit](https://luakit.github.io/) - Lightweight Linux Browser
|
||||||
* [browsh](https://www.brow.sh/) - Text Based Browser
|
* [browsh](https://www.brow.sh/) - Text Based Browser
|
||||||
* [ElectronMail](https://github.com/vladimiry/ElectronMail) or [dodo](https://github.com/akissinger/dodo) - Email Clients
|
* [ElectronMail](https://github.com/vladimiry/ElectronMail) or [dodo](https://github.com/akissinger/dodo) - Email Clients
|
||||||
@ -381,61 +311,58 @@ Linux Gaming Guide
|
|||||||
* [pass](https://www.passwordstore.org/) - Unix Password Manager
|
* [pass](https://www.passwordstore.org/) - Unix Password Manager
|
||||||
* [Seahorse](https://gitlab.gnome.org/GNOME/seahorse) or [GnomeKeyring](https://wiki.gnome.org/Projects/GnomeKeyring) - GNOME Password Manager
|
* [Seahorse](https://gitlab.gnome.org/GNOME/seahorse) or [GnomeKeyring](https://wiki.gnome.org/Projects/GnomeKeyring) - GNOME Password Manager
|
||||||
* [gopass](https://www.gopass.pw/) - CLI Password Manager
|
* [gopass](https://www.gopass.pw/) - CLI Password Manager
|
||||||
* [KGet](https://apps.kde.org/kget/), [Varia](https://github.com/giantpinkrobots/varia) or [GabutDM](https://github.com/gabutakut/gabutdm) - Download Managers
|
* [KGet](https://apps.kde.org/kget/) or [GabutDM](https://github.com/gabutakut/gabutdm) - Download Manager
|
||||||
* [easy-google-drive-downloader](https://github.com/mzramna/easy-google-drive-downloader) or [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader
|
* [easy-google-drive-downloader](https://github.com/mzramna/easy-google-drive-downloader) or [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader
|
||||||
* [google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) - Mount GDrive
|
* [google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) - Mount GDrive
|
||||||
* [maestral](https://maestral.app/) - Dropbox Client
|
* [maestral](https://maestral.app/) - Dropbox Client
|
||||||
* [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator
|
* [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator
|
||||||
* [Nala](https://gitlab.com/volian/nala) - APT Frontend
|
* [Nala](https://gitlab.com/volian/nala) - APT Frontend
|
||||||
* [aMule](https://www.amule.org/) - eMule-like P2P Client
|
* [aMule](https://www.amule.org/) - eMule-like P2P Client
|
||||||
* [Linux Router](https://github.com/garywill/linux-router) - Set Linux as Router
|
|
||||||
* [EasyPanel](https://easypanel.io/) - Server Control Panel
|
* [EasyPanel](https://easypanel.io/) - Server Control Panel
|
||||||
|
* [Wayland](https://wayland.freedesktop.org/) - Linux Display Server Protocol / [Tools](https://arewewaylandyet.com/)
|
||||||
|
* [river](https://github.com/riverwm/river/), [LabWC](https://github.com/labwc/labwc), [Hyprland](https://hyprland.org/), [kiwmi](https://github.com/buffet/kiwmi), [picom](https://github.com/yshui/picom), [wayfire](https://github.com/WayfireWM/wayfire/) or [sway](https://swaywm.org/) - Wayland Compositors
|
||||||
|
* [Compix](https://github.com/xeome/compix) - Xorg Compositor
|
||||||
* [Free Cloud Linux Server](https://rentry.co/FMHYBase64#free-cloud-linux-server) - Free Cloud Server Guide
|
* [Free Cloud Linux Server](https://rentry.co/FMHYBase64#free-cloud-linux-server) - Free Cloud Server Guide
|
||||||
* [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script
|
* [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script
|
||||||
* [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool
|
* [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool
|
||||||
* [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner
|
* [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner
|
||||||
* [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI
|
* [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI
|
||||||
* [Knapsu](https://knapsu.eu/plex/) or [Cloudbox](https://cloudbox.works/) - Media Server
|
* [Knapsu](https://knapsu.eu/plex/) or [Cloudbox](https://cloudbox.works/) - Media Server
|
||||||
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) or [DockSTARTer](https://github.com/GhostWriters/DockSTARTer) - Automated Docker Media Server Setups
|
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) - Automated Media Server Setup
|
||||||
* [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy
|
* [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy
|
||||||
* [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container
|
* [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container
|
||||||
* [swizzin](https://swizzin.ltd/) - Seedbox for Ubuntu / Debian
|
* [swizzin](https://swizzin.ltd/) - Seedbox for Ubuntu / Debian
|
||||||
* [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian
|
* [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian
|
||||||
* [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox
|
* [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox
|
||||||
* [GNU Social](https://gnusocial.network/) - Self-Hosted Social Networking Platform
|
* [GNU Social](https://gnusocial.network/) - Self-Hosted Social Networking Platform
|
||||||
* [Teams for Linux](https://github.com/IsmaelMartinez/teams-for-linux) - Collaboration Platform
|
|
||||||
* [Hexchat](https://hexchat.github.io/), [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients
|
* [Hexchat](https://hexchat.github.io/), [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients
|
||||||
* [Dino](https://dino.im/) - XMPP Client
|
* [Dino](https://dino.im/) - XMPP Client
|
||||||
* [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client
|
* [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client
|
||||||
* [ZapZap](https://rtosta.com/zapzap-web/) - WhatsApp Client
|
* [YouTube-Viewer](https://github.com/trizen/youtube-viewer) - YouTube Linux Client / [Fork](https://github.com/trizen/pipe-viewer)
|
||||||
* [YouTube-Viewer](https://github.com/trizen/youtube-viewer), [Pipe Viewer](https://github.com/trizen/pipe-viewer) or [Pipeline](https://gitlab.com/schmiddi-on-mobile/pipeline) - YouTube Clients
|
|
||||||
* [Giara](https://aur.archlinux.org/packages/giara/) - Reddit Client
|
* [Giara](https://aur.archlinux.org/packages/giara/) - Reddit Client
|
||||||
* [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172)
|
* [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172)
|
||||||
* [Nextcord](https://docs.nextcord.dev/) - Discord API Wrapper
|
* [Nextcord](https://github.com/nextcord/nextcord) - Discord API Wrapper
|
||||||
* [Discover](https://github.com/trigg/Discover) - Discord Overlay
|
* [Discover](https://github.com/trigg/Discover) - Discord Overlay
|
||||||
* [dvm](https://github.com/diced/dvm) - Discord Version Manager
|
* [dvm](https://github.com/diced/dvm) - Discord Version Manager
|
||||||
* [Rofimoji](https://github.com/fdw/rofimoji), [Shmoji](https://github.com/biox/shmoji) - Emoji CLI's
|
* [Rofimoji](https://github.com/fdw/rofimoji), [Shmoji](https://github.com/biox/shmoji) - Emoji CLI's
|
||||||
* [Flash 32 Download](https://pastebin.com/0fNaeceW)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ File Tools
|
## ▷ File Tools
|
||||||
|
|
||||||
* 🌐 **[Linux File Backup](https://github.com/restic/others)** - File Backup App List
|
* 🌐 **[Linux File Backup](https://github.com/restic/others)** - File Backup App List
|
||||||
* ⭐ **[Warpinator](https://github.com/linuxmint/warpinator)**, [rQuickshare](https://github.com/Martichou/rquickshare), [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole), [syncthing](https://syncthing.net/) / [Tray Support](https://martchus.github.io/syncthingtray/), [portal](https://github.com/SpatiumPortae/portal), [Zrok](https://zrok.io/), [Celeste](https://flathub.org/apps/details/com.hunterwittenborn.Celeste) / [2](https://snapcraft.io/celeste) or [Sharing](https://github.com/parvardegr/sharing) - File Sync Apps
|
* ⭐ **[Warpinator](https://github.com/linuxmint/warpinator)**, [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole), [syncthing](https://syncthing.net/), [portal](https://github.com/SpatiumPortae/portal) or [Sharing](https://github.com/parvardegr/sharing) - File Sync Apps
|
||||||
* ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)**, **[lf](https://github.com/gokcehan/lf)**, [ranger](https://ranger.fm), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [Superfile](https://github.com/yorukot/superfile), [Joshuto](https://github.com/kamiyaa/joshuto), [dut](https://codeberg.org/201984/dut), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers
|
* ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)** - Disk Usage Analyzer
|
||||||
* [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [CatCLI](https://github.com/deadc0de6/catcli), [xplr](https://xplr.dev/) / [GitHub](https://github.com/sayanarijit/xplr) / [Discord](https://discord.com/invite/JmasSPCcz3), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://ugrep.com) / [GitHub](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers
|
* [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [CatCLI](https://github.com/deadc0de6/catcli), [xplr](https://xplr.dev/) / [GitHub](https://github.com/sayanarijit/xplr) / [Discord](https://discord.com/invite/JmasSPCcz3), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers
|
||||||
* [Dolphin](https://userbase.kde.org/Dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
|
|
||||||
* [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop
|
* [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop
|
||||||
* [Bash Upload](https://bashupload.com/) - Bash File Upload 50GB / 3 days
|
|
||||||
* [z](https://github.com/rupa/z) - Track Most used Directories
|
* [z](https://github.com/rupa/z) - Track Most used Directories
|
||||||
|
* [Dolphin](https://userbase.kde.org/Dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
|
||||||
* [p7zip](https://p7zip.sourceforge.net/), [GNU Gzip](https://www.gnu.org/software/gzip/) or [pigz](https://zlib.net/pigz/) - File Archivers / Unzippers
|
* [p7zip](https://p7zip.sourceforge.net/), [GNU Gzip](https://www.gnu.org/software/gzip/) or [pigz](https://zlib.net/pigz/) - File Archivers / Unzippers
|
||||||
* [Pika Backup](https://gitlab.gnome.org/World/pika-backup/) - File Backup Tool
|
|
||||||
* [Curlew](https://curlew.sourceforge.io/) - File Converter
|
* [Curlew](https://curlew.sourceforge.io/) - File Converter
|
||||||
* [Boxxy](https://github.com/queer/boxxy) - Contain Files / Directories
|
* [Boxxy](https://github.com/queer/boxxy) - Contain Files / Directories
|
||||||
* [Junction](https://github.com/sonnyp/Junction) - Change File Associations
|
* [Junction](https://github.com/sonnyp/Junction) - Change File Associations
|
||||||
* [Krename](https://apps.kde.org/en-gb/krename/) - Bulk File Renamer
|
* [Krename](https://apps.kde.org/en-gb/krename/) - Bulk File Renamer
|
||||||
* [FSLint](https://www.pixelbeat.org/fslint/), [Czkawka](https://qarmin.github.io/czkawka/), [kdiff3](https://apps.kde.org/en-gb/kdiff3/) or [fclones](https://github.com/pkolaczk/fclones) - Duplicate File Finder
|
* [FSLint](https://www.pixelbeat.org/fslint/), [Czkawka](https://qarmin.github.io/czkawka/) or [fclones](https://github.com/pkolaczk/fclones) - Duplicate File Finder
|
||||||
* [xdg-ninja](https://github.com/b3nj5m1n/xdg-ninja) - Unwanted File Finder
|
* [xdg-ninja](https://github.com/b3nj5m1n/xdg-ninja) - Unwanted File Finder
|
||||||
* [rcm](https://github.com/thoughtbot/rcm) - Manage Dotfiles
|
* [rcm](https://github.com/thoughtbot/rcm) - Manage Dotfiles
|
||||||
* [Zathura](https://git.pwmt.org/pwmt) - Document Viewer
|
* [Zathura](https://git.pwmt.org/pwmt) - Document Viewer
|
||||||
@ -447,12 +374,12 @@ Linux Gaming Guide
|
|||||||
|
|
||||||
## ▷ Terminal / Shell
|
## ▷ Terminal / Shell
|
||||||
|
|
||||||
* 🌐 **[Awesome Shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://github.com/tldr-pages/tldr/) or [AltBox](https://altbox.dev/) - Linux Shell Resources
|
* 🌐 **[Awesome-shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://github.com/tldr-pages/tldr/) or [AltBox](https://altbox.dev/) - Linux Shell Resources
|
||||||
* 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)** or [TerminalTrove](https://terminaltrove.com/) - List of TUIs
|
* 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)** or [TerminalTrove](https://terminaltrove.com/) - List of TUIs
|
||||||
* ↪️ **[Linux Shell Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_command_line_shells)** or [Modern Unix](https://github.com/ibraheemdev/modern-unix)
|
* ↪️ **[Linux Shell Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_command_line_shells)** or [Modern Unix](https://github.com/ibraheemdev/modern-unix)
|
||||||
* ⭐ **[Alacritty](https://alacritty.org)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals
|
* ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
|
||||||
* ⭐ **[Shell GPT](https://github.com/TheR1D/shell_gpt)**, [2](https://github.com/jiacai2050/shellgpt) - AI Terminal Chatbot / GPT
|
* ⭐ **[lf](https://github.com/gokcehan/lf)**, [ranger](https://github.com/ranger/ranger), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [Joshuto](https://github.com/kamiyaa/joshuto), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers
|
||||||
* [Liquidprompt](https://github.com/liquidprompt/liquidprompt) - Bash / Zsh Prompt
|
* ⭐ **[Alacritty](https://github.com/alacritty/alacritty)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals
|
||||||
* [utils](https://github.com/Loupeznik/utils) or [UsefulLinuxShellScripts](https://github.com/jackrabbit335/UsefulLinuxShellScripts) - Linux Shell Tool Scripts
|
* [utils](https://github.com/Loupeznik/utils) or [UsefulLinuxShellScripts](https://github.com/jackrabbit335/UsefulLinuxShellScripts) - Linux Shell Tool Scripts
|
||||||
* [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator
|
* [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator
|
||||||
* [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check
|
* [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check
|
||||||
@ -461,50 +388,45 @@ Linux Gaming Guide
|
|||||||
* [Bash Crawl](https://gitlab.com/slackermedia/bashcrawl) - Linux Command Learning Game
|
* [Bash Crawl](https://gitlab.com/slackermedia/bashcrawl) - Linux Command Learning Game
|
||||||
* [bash_loading_animations](https://github.com/Silejonu/bash_loading_animations) - Bash Loading Animations
|
* [bash_loading_animations](https://github.com/Silejonu/bash_loading_animations) - Bash Loading Animations
|
||||||
* [bash-it](https://github.com/Bash-it/bash-it) or [Bashly](https://bashly.dannyb.co/) - Bash Frameworks
|
* [bash-it](https://github.com/Bash-it/bash-it) or [Bashly](https://bashly.dannyb.co/) - Bash Frameworks
|
||||||
* [zx](https://google.github.io/zx/) or [dax](https://github.com/dsherret/dax) - Write Complex Scripts
|
* [zx](https://github.com/google/zx) - Javascript Bash
|
||||||
* [Basher](https://www.basher.it/) or [bpkg](https://bpkg.sh/) - Bash Package Manager
|
* [Basher](https://www.basher.it/) - Bash Script Package Manager
|
||||||
* [yakuake](https://apps.kde.org/yakuake/) - Terminal Emulator
|
|
||||||
* [XTerm](https://invisible-island.net/xterm/) - X Window System Terminal Emulator
|
|
||||||
* [hush](https://github.com/hush-shell/hush) - Unix Shell
|
* [hush](https://github.com/hush-shell/hush) - Unix Shell
|
||||||
* [Extension Manager](https://mattjakeman.com/apps/extension-manager) - GNOME Shell Extensions
|
* [Extension Manager](https://github.com/mjakeman/extension-manager) - GNOME Shell Extensions
|
||||||
* [Distrobox](https://distrobox.it/) - Use Distros via Terminal
|
* [Distrobox](https://github.com/89luca89/distrobox) - Use Distros via Terminal
|
||||||
* [htop](https://htop.dev/) or [Zenith](https://github.com/bvaisvil/zenith) - Interactive Process Viewers
|
* [htop](https://htop.dev/) - Interactive Process Viewer / [GitHub](https://github.com/htop-dev/htop)
|
||||||
* [eza](https://eza.rocks/) - Modern ls replacement
|
* [eza](https://github.com/eza-community/eza) - Modern ls replacement
|
||||||
* [explainshell.com](https://explainshell.com/) - Match Command-Line Arguments to Help Text
|
* [explainshell.com](https://explainshell.com/) - Match Command-Line Arguments to Help Text
|
||||||
* [PowerShell](https://github.com/powershell/powershell) - PowerShell
|
* [PowerShell](https://github.com/powershell/powershell) - PowerShell
|
||||||
* [Tmux](https://github.com/tmux/tmux) - Terminal Multiplexer / [Cheatsheet](https://tmuxcheatsheet.com/)
|
* [Tmux](https://github.com/tmux/tmux) - Terminal Multiplexer / [Cheatsheet](https://tmuxcheatsheet.com/)
|
||||||
* [Zellij](https://zellij.dev/) - Terminal Workspace
|
|
||||||
* [asciinema](https://asciinema.org/) - Terminal Recorder
|
* [asciinema](https://asciinema.org/) - Terminal Recorder
|
||||||
* [Electerm](https://electerm.github.io/electerm) - Terminal / SSH / STP Client
|
* [Electerm](https://electerm.github.io/electerm) - Terminal / SSH / STP Client
|
||||||
* [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/lotabout/skim) - Fuzzy Finders
|
* [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/lotabout/skim) - Fuzzy Finders
|
||||||
* [atuin](https://atuin.sh/) - Shell History Management / [GitHub](https://github.com/atuinsh/atuin)
|
* [atuin](https://github.com/ellie/atuin) - Shell History Management
|
||||||
* [cbonsai](https://gitlab.com/jallbrit/cbonsai) - Generate Bonsai Trees in Terminal
|
* [cbonsai](https://gitlab.com/jallbrit/cbonsai) - Generate Bonsai Trees in Terminal
|
||||||
* [pipes.sh](https://pipeseroni.github.io/) or [pipes-rs](https://github.com/lhvy/pipes-rs) - Animated Pipes in Terminal
|
* [pipes.sh](https://github.com/pipeseroni/pipes.sh) or [pipes-rs](https://github.com/lhvy/pipes-rs) - Animated Pipes in Terminal
|
||||||
* [Terminal Locomotive Train](https://pastebin.com/ayrFjrh6) - Train Terminal Easter Egg
|
* [Terminal Locomotive Train](https://pastebin.com/ayrFjrh6) - Train Terminal Easter Egg
|
||||||
* [ASCIIQuarium](https://robobunny.com/projects/asciiquarium/html/) - Fish in Terminal
|
* [ASCIIQuarium](https://robobunny.com/projects/asciiquarium/html/) - Fish in Terminal
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Ricing / Customization
|
## ▷ Customization
|
||||||
|
|
||||||
* 🌐 **[Ricepedia](https://rizonrice.club/Main_Page)** - Linux Ricing Tools
|
* 🌐 **[Ricepedia](https://rizonrice.club/Main_Page)** - Linux Ricing Tools
|
||||||
* ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux
|
* ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux
|
||||||
* ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)** or **[Aylur's GTK Shell](https://github.com/Aylur/ags)** - Widgeting Systems
|
|
||||||
* [Nam's Ricing Guide](https://nam.is-a.dev/blog/ricing/) - Ricing Guide
|
|
||||||
* [Gradience](https://github.com/GradienceTeam/Gradience) - Customize GNOME's Adwaita
|
|
||||||
* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer
|
* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer
|
||||||
* [Akira](https://github.com/akiraux/Akira) - UI/UX Customization
|
* [Akira](https://github.com/akiraux/Akira) - UI/UX Customization
|
||||||
* [Kvantum](https://github.com/tsujan/Kvantum) - Linux QT / KDE Theme Engine
|
* [Kvantum](https://github.com/tsujan/Kvantum) - Linux QT / KDE Theme Engine
|
||||||
* [Polybar (X11)](https://github.com/polybar/polybar), [Iron Bar](https://github.com/JakeStanger/ironbar) (Wayland) or [Waybar](https://github.com/Alexays/Waybar) (Wayland) - Customizable Status Bars
|
* [Polybar](https://github.com/polybar/polybar) or [lemonbar](https://github.com/LemonBoy/bar) - Customizable Status Bar
|
||||||
* [MacBuntu Transformation Pack](https://www.noobslab.com/2018/08/macbuntu-1804-transformation-pack-ready.html), [2](https://www.noobslab.com/2017/06/macbuntu-transformation-pack-ready-for.html) - Mac Theme
|
* [MacBuntu Transformation Pack](https://www.noobslab.com/2018/08/macbuntu-1804-transformation-pack-ready.html), [2](https://www.noobslab.com/2017/06/macbuntu-transformation-pack-ready-for.html) - Mac Theme
|
||||||
* [Windows-10](https://b00merang.weebly.com/windows-10.html) - Windows 10 Theme
|
* [Windows-10](https://github.com/B00merang-Project/Windows-10) - Windows 10 Theme
|
||||||
|
* [La Capitaine](https://github.com/keeferrourke/la-capitaine-icon-theme), [Moka](https://snwh.org/moka), [Numix](https://github.com/numixproject/numix-icon-theme) or [Papirus](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme) - Linux Icon Themes
|
||||||
* [xScreensaver](https://www.jwz.org/xscreensaver/) - Linux Screensavers
|
* [xScreensaver](https://www.jwz.org/xscreensaver/) - Linux Screensavers
|
||||||
* [Fondo](https://github.com/calo001/fondo), [varietywalls](https://github.com/varietywalls/variety), [HydraPaper](https://hydrapaper.gabmus.org/), [styli.sh](https://github.com/thevinter/styli.sh) or [Komorebi](https://github.com/cheesecakeufo/komorebi) - Wallpaper Managers
|
* [Fondo](https://github.com/calo001/fondo), [varietywalls](https://github.com/varietywalls/variety), [HydraPaper](https://hydrapaper.gabmus.org/), [styli.sh](https://github.com/thevinter/styli.sh) or [Komorebi](https://github.com/cheesecakeufo/komorebi) - Wallpaper Managers
|
||||||
* [Video Wallpaper](https://github.com/ghostlexly/gpu-video-wallpaper) - Use Videos as Animated Wallpaper
|
* [Video Wallpaper](https://github.com/ghostlexly/gpu-video-wallpaper) - Use Videos as Animated Wallpaper
|
||||||
* [wallpaper-engine-kde-plugin](https://github.com/catsout/wallpaper-engine-kde-plugin) - Wallpaper Engine KDE Plugin
|
* [wallpaper-engine-kde-plugin](https://github.com/catsout/wallpaper-engine-kde-plugin) - Wallpaper Engine KDE Plugin
|
||||||
* [Polychromatic](https://polychromatic.app/) or [OpenRazer](https://openrazer.github.io/) - Linux System Light Control
|
* [Polychromatic](https://polychromatic.app/) - Linux System Light Control
|
||||||
* [Burn My Windows](https://github.com/Schneegans/Burn-My-Windows) - Window Closing Effects
|
* [Burn My Windows](https://github.com/Schneegans/Burn-My-Windows) - Window Closing Effects
|
||||||
* [theme.sh](https://github.com/lemnos/theme.sh), [NotCurses](https://github.com/dankamongmen/notcurses) / [Wiki](https://nick-black.com/dankwiki/index.php/Notcurses) or [Shell Color Scripts](https://gitlab.com/dwt1/shell-color-scripts) / [2](https://github.com/stark/Color-Scripts) - Custom Terminal Themes
|
* [theme.sh](https://github.com/lemnos/theme.sh) or [Shell Color Scripts](https://gitlab.com/dwt1/shell-color-scripts) / [2](https://github.com/stark/Color-Scripts) - Custom Terminal Themes
|
||||||
* [font-manager](https://github.com/FontManager/font-manager) - Font Manager
|
* [font-manager](https://github.com/FontManager/font-manager) - Font Manager
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -518,60 +440,61 @@ Linux Gaming Guide
|
|||||||
* ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps
|
* ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps
|
||||||
* ⭐ **[shottr](https://shottr.cc/)** or [MagicCap](https://magiccap.me/) - Screenshot Tool
|
* ⭐ **[shottr](https://shottr.cc/)** or [MagicCap](https://magiccap.me/) - Screenshot Tool
|
||||||
* ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App
|
* ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App
|
||||||
* ⭐ **[Alfred](https://www.alfredapp.com/)**, [Quicksilver](https://qsapp.com/) or [Raycast](https://www.raycast.com/) - Keystroke Launchers
|
* ⭐ **[Alfred](https://www.alfredapp.com/)** or [Raycast](https://www.raycast.com/) - Keystroke Launchers
|
||||||
* ⭐ **[CustomShortcuts](https://www.houdah.com/customShortcuts/)**, [Karabiner-Elements](https://karabiner-elements.pqrs.org/) or [ShortcutKeeper](https://shortcutkeeper.com/) - Custom Keyboard Shortcuts
|
* ⭐ **[CustomShortcuts](https://www.houdah.com/customShortcuts/)**, [Karabiner-Elements](https://karabiner-elements.pqrs.org/) or [ShortcutKeeper](https://shortcutkeeper.com/) - Custom Keyboard Shortcuts
|
||||||
* ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac
|
* ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac
|
||||||
* ⭐ **[Fantastical](https://flexibits.com/fantastical)** - Calendar
|
* ⭐ **[Fantastical](https://flexibits.com/fantastical)** - Calendar
|
||||||
* [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools
|
* [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools
|
||||||
* [Novee](https://github.com/ZhichGaming/Novee) - Anime Streaming App
|
* [Novee](https://github.com/ZhichGaming/Novee) - Anime Streaming App
|
||||||
* [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader
|
* [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader
|
||||||
* [Swiftcord](https://swiftcordapp.github.io/Swiftcord/) or [Accord](https://github.com/evelyneee/accord) - Discord Clients
|
* [Swiftcord](https://github.com/SwiftcordApp/Swiftcord) or [Accord](https://github.com/evelyneee/accord) - Discord Clients
|
||||||
* [Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884) - Mastodon Client
|
* [Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884) - Mastodon Client
|
||||||
* [Beta Profiles](https://betaprofiles.com/) - Download Pre-Release Versions macOS
|
* [Beta Profiles](https://betaprofiles.com/) - Download Pre-Release Versions macOS
|
||||||
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
|
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
|
||||||
* [Boot Camp](https://support.apple.com/boot-camp) - Windows Bootloader / [DL Script](https://github.com/timsutton/brigadier)
|
* [Boot Camp](https://support.apple.com/boot-camp) - Windows Bootloader / [DL Script](https://github.com/timsutton/brigadier)
|
||||||
* [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker
|
* [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker
|
||||||
* [Whisky](https://getwhisky.app/) - Wine Wrapper
|
* [Whisky](https://getwhisky.app/) - Wine Wrapper
|
||||||
|
* [macos-virtualbox](https://github.com/myspaghetti/macos-virtualbox) - MacOS Virtualbox Installer
|
||||||
* [SwiftUI Win11](https://jinxiansen.github.io/Windows11/) - Windows 11 Desktop Client for macOS
|
* [SwiftUI Win11](https://jinxiansen.github.io/Windows11/) - Windows 11 Desktop Client for macOS
|
||||||
* [OrbStack](https://orbstack.dev/) - Docker Client
|
* [OrbStack](https://orbstack.dev/) - Docker Client
|
||||||
* [Cider](https://cider.sh/) / [GitHub](https://github.com/ciderapp/Cider) - Audio Players / Free Classic Version
|
* [Cog](https://cogx.org/) or [Cider](https://cider.sh/) / [GitHub](https://github.com/ciderapp/Cider) - Audio Players
|
||||||
|
* [Psst](https://github.com/jpochyla/psst) - Spotify Client
|
||||||
* [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player
|
* [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player
|
||||||
* [SoundSeer](https://github.com/jonathangarelick/SoundSeer) - Spotify in Menu Bar
|
|
||||||
* [Nuage](https://github.com/lbrndnr/nuage-macos) - Soundcloud Client
|
* [Nuage](https://github.com/lbrndnr/nuage-macos) - Soundcloud Client
|
||||||
* [Subsonic](https://github.com/twostraws/Subsonic) - SwiftUI Audio Player
|
* [Subsonic](https://github.com/twostraws/Subsonic) - SwiftUI Audio Player
|
||||||
* [Bookshelf](https://apps.apple.com/us/app/bookshelf-reading-tracker/id1469372414) - Book Tracker
|
* [Bookshelf](https://apps.apple.com/us/app/bookshelf-reading-tracker/id1469372414) - Book Tracker
|
||||||
* [LimaVM](https://lima-vm.io/) - Linux VM
|
* [LimaVM](https://github.com/lima-vm/lima) - Linux VM
|
||||||
* [PortingKit](https://www.portingkit.com/) or [PlayOnMac](https://www.playonmac.com/en/) - Run Windows Games / Programs on Mac
|
* [PortingKit](https://www.portingkit.com/) or [PlayOnMac](https://www.playonmac.com/en/) - Run Windows Games / Programs on Mac
|
||||||
* [OpenCore](https://github.com/acidanthera/OpenCorePkg) - Mac Bootloader / [Config](https://mackie100projects.altervista.org/opencore-configurator/) / [Guide](https://dortania.github.io/OpenCore-Install-Guide/)
|
* [OpenCore](https://github.com/acidanthera/OpenCorePkg) - Mac Bootloader / [Config](https://mackie100projects.altervista.org/opencore-configurator/) / [Guide](https://dortania.github.io/OpenCore-Install-Guide/)
|
||||||
* [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs
|
* [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs
|
||||||
* [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher/) - Install New macOS on Unsupported Devices
|
* [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher/) - Install New macOS on Unsupported Devices
|
||||||
* [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager
|
* [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager
|
||||||
* [Conky](https://conky.cc) / [Colors](https://github.com/helmuthdu/conky_colors), [eul](https://github.com/gao-sun/eul), [zfxtop](https://github.com/ssleert/zfxtop), [Stats](https://github.com/exelban/stats), [Mission Center](https://gitlab.com/mission-center-devs/mission-center) or [MacFetch](https://github.com/gantoreno/macfetch) - Hardware / System Monitors
|
* [Conky](https://github.com/brndnmtthws/conky) / [Colors](https://github.com/helmuthdu/conky_colors), [eul](https://github.com/gao-sun/eul), [zfxtop](https://github.com/ssleert/zfxtop), [Stats](https://github.com/exelban/stats) or [MacFetch](https://github.com/gantoreno/macfetch) - Hardware / System Monitors
|
||||||
* [Hot](https://github.com/macmade/) - CPU Monitor
|
* [Hot](https://github.com/macmade/) - CPU Monitor
|
||||||
* [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer
|
* [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer
|
||||||
* [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress
|
* [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress
|
||||||
* [Clean-Me](https://kevin-de-koninck.github.io/Clean-Me/) or [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers
|
* [Clean-Me](https://kevin-de-koninck.github.io/Clean-Me/) or [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers
|
||||||
* [What Route](https://whatroute.net/) - Network Diagnostic Tool
|
* [What Route](https://whatroute.net/) - Network Diagnostic Tool
|
||||||
* [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts
|
* [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts
|
||||||
* [File Find](https://gitlab.com/Pixel-Mqster/File-Find) or [Superfile](https://github.com/yorukot/superfile) - File Explorer / Managers
|
* [File Find](https://gitlab.com/Pixel-Mqster/File-Find) - File Explorer / Manager
|
||||||
* [Download Shuttle](https://apps.apple.com/in/app/download-shuttle-fast-file/id847809913) or [Progressive Downloader](https://macpsd.net/) - File Download Manager
|
* [Download Shuttle](https://apps.apple.com/in/app/download-shuttle-fast-file/id847809913) or [Progressive Downloader](https://macpsd.net/) - File Download Manager
|
||||||
* [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc)
|
* [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc)
|
||||||
* [Adobe Creative Cloud](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - Adobe CC Guides
|
* [Adobe Creative Cloud](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - Adobe CC Guides
|
||||||
* [Adobe Packager](https://github.com/Drovosek01/adobe-packager) - Adobe Portable Installer Script
|
* [Adobe Packager](https://github.com/Drovosek01/adobe-packager) - Adobe Portable Installer Script
|
||||||
* [ss64 OSX](https://ss64.com/osx/) - macOS Bash Commands
|
* [ss64 OSX](https://ss64.com/osx/) - macOS Bash Commands
|
||||||
* [Browserosaurus](https://browserosaurus.com/) - Browser Prompter
|
* [Browserosaurus](https://browserosaurus.com/) - Browser Prompter
|
||||||
* [Orion](https://kagi.com/orion/) - Browser w/ Chrome + Firefox Extension Support / [Discord](https://discord.com/invite/gKh5E6ys6D)
|
* [Orion](https://browser.kagi.com/) - Lightweight Browser w/ Chrome & Firefox Extensions / [Discord](https://discord.com/invite/gKh5E6ys6D)
|
||||||
* [Strongbox](https://strongboxsafe.com/) - Password Manager
|
* [Strongbox](https://strongboxsafe.com/) - Password Manager
|
||||||
* [Maccy](https://maccy.app/), [ClipBook](https://clipbook.app/) or [TRex](https://trex.ameba.co/) - Clipboard Managers
|
* [Maccy](https://maccy.app/) or [TRex](https://trex.ameba.co/) - Clipboard Managers
|
||||||
* [Left on Read](https://leftonread.me/) or [PyPush](https://github.com/JJTech0130/pypush) / [Discord](https://discord.gg/BVvNukmfTC) - iMessage Clients
|
* [Left on Read](https://leftonread.me/) or [PyPush](https://github.com/JJTech0130/pypush) /[Discord](https://discord.gg/BVvNukmfTC) - iMessage Clients
|
||||||
* [LlamaChat](https://www.llamachat.app/) - Llama AI Chat
|
* [LlamaChat](https://www.llamachat.app/) - Llama AI Chat
|
||||||
|
* [DiffusionBee](https://diffusionbee.com/) - Local AI Frontend / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
|
||||||
* [MacBing](https://goodsnooze.gumroad.com/l/macbing) - Bing Chat
|
* [MacBing](https://goodsnooze.gumroad.com/l/macbing) - Bing Chat
|
||||||
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
|
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
|
||||||
* [Dialect](https://github.com/dialect-app/dialect) - Translator
|
* [Dialect](https://github.com/dialect-app/dialect) - Translator
|
||||||
* [Link Unshortener](https://underpassapp.com/LinkUnshortener/) - Unshorten Links
|
* [Link Unshortener](https://underpassapp.com/LinkUnshortener/) - Unshorten Links
|
||||||
* [Aiko](https://sindresorhus.com/aiko) - Audio Transcription
|
* [Aiko](https://sindresorhus.com/aiko) - Audio Transcription
|
||||||
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Kyun](https://github.com/file-acomplaint/kyun), [FSNotes](https://fsnot.es/), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
|
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Kyun](https://github.com/file-acomplaint/kyun), [FSNotes](https://fsnot.es/), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
|
||||||
* [Agenda](https://agenda.com/) - Mac Notes Organizer / [Forum](https://agenda.community/)
|
|
||||||
* [Taskpaper](https://www.taskpaper.com/) - To-Do Apps
|
* [Taskpaper](https://www.taskpaper.com/) - To-Do Apps
|
||||||
* [Stroke](https://stroke.lllllllllllllllll.com/) - Text (You Can't Delete) Editor
|
* [Stroke](https://stroke.lllllllllllllllll.com/) - Text (You Can't Delete) Editor
|
||||||
* [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager
|
* [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager
|
||||||
@ -580,37 +503,32 @@ Linux Gaming Guide
|
|||||||
* [kbdlight](https://github.com/WhyNotHugo/kbdlight) - Change MacBook Keyboard Backlight Level
|
* [kbdlight](https://github.com/WhyNotHugo/kbdlight) - Change MacBook Keyboard Backlight Level
|
||||||
* [KeyPad](https://apps.apple.com/in/app/keypad-bluetooth-keyboard/id1491684442) - Connect Mac Keyboard to Mobile Devices
|
* [KeyPad](https://apps.apple.com/in/app/keypad-bluetooth-keyboard/id1491684442) - Connect Mac Keyboard to Mobile Devices
|
||||||
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
|
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
|
||||||
* [LinearMouse](https://linearmouse.app/) or [MacMouseFix](https://macmousefix.com/) - Mouse Remapping
|
* [LinearMouse](https://linearmouse.app/) - Custom Mouse / Trackpad Options
|
||||||
* [Scroll Reverser](https://pilotmoon.com/scrollreverser/) - Per-Device Scroll Settings
|
|
||||||
* [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application
|
* [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application
|
||||||
* [rcmd](https://lowtechguys.com/rcmd/) - App Switcher Command Key
|
|
||||||
* [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer
|
* [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer
|
||||||
* [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control
|
* [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control
|
||||||
* [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause
|
* [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause
|
||||||
* [BatFi](https://micropixels.gumroad.com/l/batfi) - Battery Manager
|
|
||||||
* [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator
|
* [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator
|
||||||
* [Bunch](https://bunchapp.co/) - Task Automation
|
* [Bunch](https://bunchapp.co/) - Task Automation
|
||||||
* [MacScripter](https://www.macscripter.net/) - Automation Forum
|
* [MacScripter](https://www.macscripter.net/) - Automation Forum
|
||||||
* [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices
|
* [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices
|
||||||
* [Touché](https://redsweater.com/touche/) - Touch Bar Simulator
|
* [Touché](https://redsweater.com/touche/) - Touch Bar Simulator
|
||||||
* [Actions](https://sindresorhus.com/actions) - Additional Shortcuts App Actions
|
|
||||||
* [pock](https://pock.app/) - Touch Bar Widget Manager / [GitHub](https://github.com/pock/pock)
|
* [pock](https://pock.app/) - Touch Bar Widget Manager / [GitHub](https://github.com/pock/pock)
|
||||||
* [Übersicht](https://tracesof.net/uebersicht/) - System Command Widgets
|
|
||||||
* [Itsycal](https://www.mowglii.com/itsycal/) - Menu Bar Calendar
|
* [Itsycal](https://www.mowglii.com/itsycal/) - Menu Bar Calendar
|
||||||
* [Clocker](https://abhishekbanthia.com/clocker/) or [MeetingBar](https://meetingbar.app/) - Menu Bar Meetings Calendars
|
* [Clocker](https://abhishekbanthia.com/clocker/) or [MeetingBar](https://meetingbar.app/) - Menu Bar Meetings Calendars
|
||||||
* [xbar](https://xbarapp.com/) - Manage Menu Bar Items / [GitHub](https://github.com/matryer/xbar)
|
* [xbar](https://xbarapp.com/) - Manage Menu Bar Items / [GitHub](https://github.com/matryer/xbar)
|
||||||
* [MacLaunch](https://github.com/hazcod/maclaunch) - Manage Startup Items
|
* [MacLaunch](https://github.com/hazcod/maclaunch) - Manage Startup Items
|
||||||
* [Ice](https://icemenubar.app/) - Menu Bar Manager
|
|
||||||
* [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches
|
* [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches
|
||||||
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
|
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
|
||||||
* [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor
|
* [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor
|
||||||
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/) / [GitHub](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Spaces](https://spacesformac.xyz/), [Loop](https://github.com/MrKai77/Loop), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers
|
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Spaces](https://spacesformac.xyz/), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://github.com/kasper/phoenix) or [Rectangle](https://rectangleapp.com/) - Window Managers
|
||||||
* [Later](https://getlater.app/) - Restore App Sessions
|
* [AlDente](https://github.com/davidwernhart/AlDente-Charge-Limiter) - Charging Manager
|
||||||
* [AlDente](https://apphousekitchen.com/) - Charging Manager
|
* [Unlocker](https://github.com/paolo-projects/unlocker) - VMware Unlocker
|
||||||
* [VMware](https://rentry.co/FMHYBase64#vmware) - Virtual Machine
|
|
||||||
* [USBMap](https://github.com/corpnewt/USBMap) - Map MacOS USB Ports
|
* [USBMap](https://github.com/corpnewt/USBMap) - Map MacOS USB Ports
|
||||||
* [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/) - Code Editors
|
* [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/)
|
||||||
|
* [PowerShell](https://github.com/powershell/powershell) - PowerShell
|
||||||
* [iTerm2](https://iterm2.com/) - Replacements for Terminal
|
* [iTerm2](https://iterm2.com/) - Replacements for Terminal
|
||||||
|
* [asciinema](https://asciinema.org/) - Terminal Recorder
|
||||||
* [Fig](https://fig.io/) - IDE-Style Autocomplete for Terminal
|
* [Fig](https://fig.io/) - IDE-Style Autocomplete for Terminal
|
||||||
* [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller
|
* [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller
|
||||||
* [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager
|
* [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager
|
||||||
@ -618,16 +536,15 @@ Linux Gaming Guide
|
|||||||
* [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom System Icons
|
* [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom System Icons
|
||||||
* [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
* [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
||||||
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
|
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
|
||||||
* [wallpapper](https://github.com/mczachurski/wallpapper) or [Equinox](https://equinoxmac.com/) - Dynamic Wallpaper Creators
|
* [wallpapper](https://github.com/mczachurski/wallpapper) - Dynamic Wallpaper Creator
|
||||||
* [Plash](https://sindresorhus.com/plash) - Use Website as Wallpaper
|
* [Plash](https://github.com/sindresorhus/Plash) - Use Website as Wallpaper
|
||||||
* [100 macOS Screensavers](https://github.com/bjdehang/100-macos-screensavers) - Minimalist Screensavers
|
* [100 macOS Screensavers](https://github.com/bjdehang/100-macos-screensavers) - Minimalist Screensavers
|
||||||
* [DarkModeBuddy](https://github.com/insidegui/DarkModeBuddy) or [ThemeKit](https://github.com/luckymarmot/ThemeKit) - System Dark Mode Apps
|
* [DarkModeBuddy](https://github.com/insidegui/DarkModeBuddy) or [ThemeKit](https://github.com/luckymarmot/ThemeKit) - System Dark Mode Apps
|
||||||
* [Bootcamp Drivers](https://bootcampdrivers.com/) - Mac Bootcamp AMD Drivers
|
* [Bootcamp Drivers](https://bootcampdrivers.com/) - Mac Bootcamp AMD Drivers
|
||||||
* [IINA](https://iina.io/) - Video Player
|
* [IINA](https://iina.io/) - Video Player
|
||||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
|
||||||
* [Gifski](https://sindresorhus.com/gifski) - Image to GIF Converter / [GitHub](https://github.com/sindresorhus/Gifski)
|
* [Gifski](https://sindresorhus.com/gifski) - Image to GIF Converter / [GitHub](https://github.com/sindresorhus/Gifski)
|
||||||
* [Darkroom](https://apps.apple.com/us/app/darkroom-photo-video-editor/id953286746) - Image / Video Editor
|
* [Darkroom](https://apps.apple.com/us/app/darkroom-photo-video-editor/id953286746) - Image / Video Editor
|
||||||
* [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders
|
* [Kap](https://github.com/wulkano/Kap) - Screen Recorder
|
||||||
* [Garageband](https://apps.apple.com/us/app/garageband/id682658836?mt=12) - Audio Editor
|
* [Garageband](https://apps.apple.com/us/app/garageband/id682658836?mt=12) - Audio Editor
|
||||||
* [Yoshimi](https://yoshimi.github.io/) - Audio Synthesizer
|
* [Yoshimi](https://yoshimi.github.io/) - Audio Synthesizer
|
||||||
* [EQMac](https://eqmac.app/) - Audio Equalizer
|
* [EQMac](https://eqmac.app/) - Audio Equalizer
|
||||||
@ -635,14 +552,14 @@ Linux Gaming Guide
|
|||||||
* [Guitarix](https://guitarix.org/) - Virtual Guitar Amplifier / [Plugins](https://github.com/brummer10/GxPlugins.lv2)
|
* [Guitarix](https://guitarix.org/) - Virtual Guitar Amplifier / [Plugins](https://github.com/brummer10/GxPlugins.lv2)
|
||||||
* [XLD](https://sourceforge.net/projects/xld/) - Lossless Audio Transcoder
|
* [XLD](https://sourceforge.net/projects/xld/) - Lossless Audio Transcoder
|
||||||
* [BlackHole](https://github.com/ExistentialAudio/BlackHole) - Pass Audio to Apps
|
* [BlackHole](https://github.com/ExistentialAudio/BlackHole) - Pass Audio to Apps
|
||||||
* [Donna](https://www.musicdonna.com/) - AI Music Generator
|
|
||||||
* [Mubert AI](https://apps.apple.com/us/app/mubert-ai-music-streaming/id1154429580) - AI Music Radio
|
* [Mubert AI](https://apps.apple.com/us/app/mubert-ai-music-streaming/id1154429580) - AI Music Radio
|
||||||
* [Playlisty](https://apps.apple.com/us/app/playlisty-the-playlist-tool/id1459275972) - Transfer Apple Music Playlists to Spotify
|
* [Playlisty](https://apps.apple.com/us/app/playlisty-the-playlist-tool/id1459275972) - Transfer Apple Music Playlists to Spotify
|
||||||
* [Image Tricks Lite](https://apps.apple.com/us/app/image-tricks-lite/id403735824?mt=12) or [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors
|
* [Image Tricks Lite](https://apps.apple.com/us/app/image-tricks-lite/id403735824?mt=12) or [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors
|
||||||
* [ImageOptim](https://imageoptim.com/mac) - Image Optimization
|
* [ImageOptim](https://imageoptim.com/mac) - Image Optimization
|
||||||
* [Perspec](https://github.com/feramhq/Perspec) - Correct Perspective of Images
|
* [Perspec](https://github.com/feramhq/Perspec) - Correct Perspective of Images
|
||||||
|
* [MochiDiffusion](https://github.com/godly-devotion/MochiDiffusion) - AI Image Generator
|
||||||
* [Draw Things](https://apps.apple.com/us/app/draw-things-ai-generation/id6444050820) - AI Image Drawing Tool
|
* [Draw Things](https://apps.apple.com/us/app/draw-things-ai-generation/id6444050820) - AI Image Drawing Tool
|
||||||
* [SD Buddy](https://github.com/breadthe/sd-buddy), [CHARL-E](https://www.charl-e.com/) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps
|
* [SD Buddy](https://github.com/breadthe/sd-buddy) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps
|
||||||
* [ColorSlurp](https://colorslurp.com/) or [Material-Colors-native](https://github.com/BafS/Material-Colors-native) - Color Picker
|
* [ColorSlurp](https://colorslurp.com/) or [Material-Colors-native](https://github.com/BafS/Material-Colors-native) - Color Picker
|
||||||
* [Use Contrast](https://usecontrast.com/) - Check Color Contrast Ratios
|
* [Use Contrast](https://usecontrast.com/) - Check Color Contrast Ratios
|
||||||
* [Sim Daltoinism](https://michelf.ca/projects/sim-daltonism/) - Color Blindness Simulator
|
* [Sim Daltoinism](https://michelf.ca/projects/sim-daltonism/) - Color Blindness Simulator
|
||||||
@ -671,7 +588,6 @@ Linux Gaming Guide
|
|||||||
* 🌐 **[Awesome MacOS](https://github.com/iCHAIT/awesome-macOS)**, [OpenSourceApple](https://opensource.apple.com/), [Awesome Mac](https://github.com/jaywcjlove/awesome-mac) or [Awesome OS Apps](https://github.com/serhii-londar/open-source-mac-os-apps) - FOSS App Indexes
|
* 🌐 **[Awesome MacOS](https://github.com/iCHAIT/awesome-macOS)**, [OpenSourceApple](https://opensource.apple.com/), [Awesome Mac](https://github.com/jaywcjlove/awesome-mac) or [Awesome OS Apps](https://github.com/serhii-londar/open-source-mac-os-apps) - FOSS App Indexes
|
||||||
* 🌐 **[Mac Menu Bar](https://macmenubar.com/)** - Menu Bar App Index
|
* 🌐 **[Mac Menu Bar](https://macmenubar.com/)** - Menu Bar App Index
|
||||||
* ⭐ **[Homebrew](https://brew.sh/)** / [GUI](https://corkmac.app/), [Munki](https://www.munki.org/munki/) or [AppLite](https://aerolite.dev/applite/index.html) - Package Managers
|
* ⭐ **[Homebrew](https://brew.sh/)** / [GUI](https://corkmac.app/), [Munki](https://www.munki.org/munki/) or [AppLite](https://aerolite.dev/applite/index.html) - Package Managers
|
||||||
* [AppsTorrent](https://appstorrent.ru/) / [Note](https://pastebin.com/dNirumnk)
|
|
||||||
* [Macintosh Garden](https://macintoshgarden.org/)
|
* [Macintosh Garden](https://macintoshgarden.org/)
|
||||||
* [MacBed](https://www.macbed.com/)
|
* [MacBed](https://www.macbed.com/)
|
||||||
* [Pure Mac](https://www.pure-mac.com/)
|
* [Pure Mac](https://www.pure-mac.com/)
|
||||||
@ -682,20 +598,17 @@ Linux Gaming Guide
|
|||||||
* [InsMac](https://insmac.org/)
|
* [InsMac](https://insmac.org/)
|
||||||
* [MacX](https://macx.ws/)
|
* [MacX](https://macx.ws/)
|
||||||
* [WebCatalog](https://webcatalog.io/)
|
* [WebCatalog](https://webcatalog.io/)
|
||||||
* [ThriftMac](https://thriftmac.com/) - Freeware
|
|
||||||
* [Latest](https://github.com/mangerlahn/latest) - Software Updater
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Mac Gaming
|
## ▷ Mac Gaming
|
||||||
|
|
||||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Mac Games
|
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)**
|
||||||
* ⭐ **[AppleGamingWiki](https://applegamingwiki.com/)** - Mac Game Fixes / Compatibility
|
* ⭐ **[AppleGamingWiki](https://applegamingwiki.com/)** - Mac Game Fixes / Compatibility
|
||||||
* ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator
|
* ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator
|
||||||
* [SCNLOG](https://scnlog.me/) - Mac Games
|
* [SCNLOG](https://scnlog.me/)
|
||||||
* [Mac Source Ports](https://www.macsourceports.com/) - Run Old Mac Games
|
* [Mac Source Ports](https://www.macsourceports.com/) - Run Old Mac Games
|
||||||
* [HeroicGamesLauncher](https://heroicgameslauncher.com/) or [Mythic](https://getmythic.app/) / [Discord](https://discord.gg/58NZ7fFqPy) - Epic Games Launchers
|
* [HeroicGamesLauncher](https://heroicgameslauncher.com/) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) - Epic Games Launcher
|
||||||
* [Prism43](https://github.com/DomHeadroom/Prism43) - Prism Launcher / Unlocker
|
|
||||||
* [NASOS](https://archive.org/download/nNASOS1.8/nNASOS1.8.zip) - Gamecube iso.dec to ISO Converter
|
* [NASOS](https://archive.org/download/nNASOS1.8/nNASOS1.8.zip) - Gamecube iso.dec to ISO Converter
|
||||||
* [rbxfpsunlocker-osx](https://github.com/lanylow/rbxfpsunlocker-osx) - Roblox FPS Unlocker
|
* [rbxfpsunlocker-osx](https://github.com/lanylow/rbxfpsunlocker-osx) - Roblox FPS Unlocker
|
||||||
* [cemu.emiyl](https://cemu.emiyl.com/) - CEMU Compatibility List
|
* [cemu.emiyl](https://cemu.emiyl.com/) - CEMU Compatibility List
|
||||||
@ -705,9 +618,9 @@ Linux Gaming Guide
|
|||||||
# ► Mac Adblock / Privacy
|
# ► Mac Adblock / Privacy
|
||||||
|
|
||||||
* 🌐 **[Awesome OSX Security](https://github.com/ashishb/osx-and-ios-security-awesome)** - Mac Security Resources
|
* 🌐 **[Awesome OSX Security](https://github.com/ashishb/osx-and-ios-security-awesome)** - Mac Security Resources
|
||||||
* ↪️ **[Mac 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
* ↪️ **[Mac 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_two-factor_authentication)**
|
||||||
* ⭐ **[Malwarebytes](https://www.malwarebytes.com/mac-download)**, [BlockBlock](https://objective-see.org/products/blockblock.html) or [KnockKnock](https://objective-see.org/products/knockknock.html) - Antivirus
|
* ⭐ **[Malwarebytes](https://www.malwarebytes.com/mac-download)**, [BlockBlock](https://objective-see.org/products/blockblock.html) or [KnockKnock](https://objective-see.org/products/knockknock.html) - Antivirus
|
||||||
* ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)** or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers
|
* ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)**, [Spotify Adblock Guide](https://redd.it/y2zt58) or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers
|
||||||
* [Ka-Block!](https://apps.apple.com/us/app/ka-block/id1037173557), [BlockBear](https://apps.apple.com/ca/app/blockbear/id1023924541) or [Adblock Plus for iOS](https://gitlab.com/eyeo/adblockplus/adblock-plus-for-safari) - Safari Adblockers
|
* [Ka-Block!](https://apps.apple.com/us/app/ka-block/id1037173557), [BlockBear](https://apps.apple.com/ca/app/blockbear/id1023924541) or [Adblock Plus for iOS](https://gitlab.com/eyeo/adblockplus/adblock-plus-for-safari) - Safari Adblockers
|
||||||
* [MacOS Privacy Guide](https://github.com/drduh/macOS-Security-and-Privacy-Guide) - Mac Privacy & Security Guides
|
* [MacOS Privacy Guide](https://github.com/drduh/macOS-Security-and-Privacy-Guide) - Mac Privacy & Security Guides
|
||||||
* [Gas Mask](https://github.com/2ndalpha/gasmask) - Block Ads via Host Files
|
* [Gas Mask](https://github.com/2ndalpha/gasmask) - Block Ads via Host Files
|
||||||
@ -715,7 +628,6 @@ Linux Gaming Guide
|
|||||||
* [1Blocker](https://1blocker.com/) - DNS Adlocker
|
* [1Blocker](https://1blocker.com/) - DNS Adlocker
|
||||||
* [Lockdown Privacy](https://lockdownprivacy.com/) - Block Trackers / Ads
|
* [Lockdown Privacy](https://lockdownprivacy.com/) - Block Trackers / Ads
|
||||||
* [LuLu](https://objective-see.org/products/lulu.html) - Mac Firewall
|
* [LuLu](https://objective-see.org/products/lulu.html) - Mac Firewall
|
||||||
* [Streisand](https://streisand.pages.dev/) - Mac Proxy Client
|
|
||||||
* [Mana](https://github.com/manasecurity/mana-security-app) - App Security Monitor
|
* [Mana](https://github.com/manasecurity/mana-security-app) - App Security Monitor
|
||||||
* [RansomWhere?](https://objective-see.org/products/ransomwhere.html) - Ransomware Blocker
|
* [RansomWhere?](https://objective-see.org/products/ransomwhere.html) - Ransomware Blocker
|
||||||
* [OverSight](https://objective-see.org/products/oversight.html) - Webcam / Mic Monitor
|
* [OverSight](https://objective-see.org/products/oversight.html) - Webcam / Mic Monitor
|
||||||
|
1064
MISCGuide.md
1064
MISCGuide.md
File diff suppressed because it is too large
Load Diff
247
NSFWPiracy.md
247
NSFWPiracy.md
@ -19,33 +19,25 @@
|
|||||||
|
|
||||||
# ► Streaming
|
# ► Streaming
|
||||||
|
|
||||||
* ⭐ **[HQPorner](https://hqporner.com/)**
|
* ⭐ **[SexyPorn](https://www.sxyprn.com/)**, [2](https://odd-queen-6608.rrsgjkrjsxy.workers.dev/)
|
||||||
* ⭐ **[SexyPorn](https://www.sxyprn.com/)**
|
* ⭐ **[XVideos](https://www.xvideos.com/)**
|
||||||
* ⭐ **[WatchPorn.to](https://watchporn.to)**
|
* ⭐ **[SpankBang](https://spankbang.com/)**
|
||||||
|
* ⭐ **[EPorner](https://www.eporner.com/)**
|
||||||
|
* ⭐ **[goodporn](https://goodporn.to/)**, [2](https://goodporn.se/)
|
||||||
|
* ⭐ **[neporn](https://neporn.com/)**
|
||||||
* ⭐ **[Noodlemagazine](https://noodlemagazine.com)**, [2](https://mat6tube.com/), [3](https://18.tyler-brown.com/), [4](https://waterdamagesandiego.org/), [5](https://hot.exporntoons.net/), [6](https://actionviewphotography.com/), [7](https://ukdevilz.com/) - Search Engine
|
* ⭐ **[Noodlemagazine](https://noodlemagazine.com)**, [2](https://mat6tube.com/), [3](https://18.tyler-brown.com/), [4](https://waterdamagesandiego.org/), [5](https://hot.exporntoons.net/), [6](https://actionviewphotography.com/), [7](https://ukdevilz.com/) - Search Engine
|
||||||
* ⭐ **[iXXX](https://www.ixxx.com/)** - Aggregator
|
* ⭐ **[iXXX](https://www.ixxx.com/)** - Aggregator
|
||||||
|
* ⭐ **[PornFreeX](https://pornfreex.app/)** / [Discord]( https://discord.gg/uNa76ncX), [Porn App](https://porn-app.com/) or [NsfwBox](https://github.com/Kisspeace/NsfwBox) - Android Porn Apps
|
||||||
|
* [Full Length Porn CSE](https://cse.google.com/cse?cx=6c02fb377e50d493c) - Aggregators CSE
|
||||||
* [FindTubes](https://www.findtubes.com/) - Aggregator
|
* [FindTubes](https://www.findtubes.com/) - Aggregator
|
||||||
* [Full Length Porn CSE](https://cse.google.com/cse?cx=6c02fb377e50d493c) - Search Engine
|
* [Porn Guide](https://fapbuddies.net/porn-guide/) - How-to Find Porn
|
||||||
* [EPorner](https://www.eporner.com/)
|
|
||||||
* [XVideos](https://www.xvideos.com/)
|
|
||||||
* [PlayHDPorn](https://www.playhdporn.com/)
|
|
||||||
* [SpankBang](https://spankbang.com/)
|
|
||||||
* [goodporn](https://goodporn.se/)
|
|
||||||
* [neporn](https://neporn.com/)
|
|
||||||
* [FreePornVideos](https://www.freepornvideos.xxx/)
|
|
||||||
* [BananaMovies](https://bananamovies.org/)
|
|
||||||
* [xHamster](https://xhamster.com/)
|
* [xHamster](https://xhamster.com/)
|
||||||
* [PornHub](https://www.pornhub.com/) / [Add Features](https://sleazyfork.org/en/scripts/380711), [2](https://codeberg.org/aolko/userscripts/wiki/PH-toolbox) / [DL Script](https://gist.github.com/Riboe/58acabe04abe74421e88b4269cbdf41e)
|
* [PornHub](https://www.pornhub.com/) / [Add Features](https://sleazyfork.org/en/scripts/380711), [2](https://codeberg.org/aolko/userscripts/wiki/PH-toolbox) / [DL Script](https://gist.github.com/Riboe/58acabe04abe74421e88b4269cbdf41e)
|
||||||
* [TNAFlix](https://www.tnaflix.com/)
|
* [TNAFlix](https://www.tnaflix.com/)
|
||||||
* [PornXP](https://pornxp.org/)
|
* [PornXP](https://pornxp.org/)
|
||||||
* [Youporn](https://www.youporn.com/)
|
* [Youporn](https://www.youporn.com/)
|
||||||
* [SomePorn](https://some.porn/)
|
* [HQPorner](https://hqporner.com/)
|
||||||
* [wapbold](https://wapbold.net/)
|
|
||||||
* [Youjizz](https://www.youjizz.com/)
|
* [Youjizz](https://www.youjizz.com/)
|
||||||
* [Jizzbunker](https://www.jizzbunker.com/)
|
|
||||||
* [pornken](https://pornken.com/)
|
|
||||||
* [Heavy-R](https://www.heavy-r.com/)
|
|
||||||
* [EroticMovies](https://eroticmoviesonline.me/)
|
|
||||||
* [XNXX](https://www.xnxx.com/) / [Forum](https://forum.xnxx.com/)
|
* [XNXX](https://www.xnxx.com/) / [Forum](https://forum.xnxx.com/)
|
||||||
* [Pornobae](https://pornobae.com/)
|
* [Pornobae](https://pornobae.com/)
|
||||||
* [ThePornArea](https://thepornarea.com/)
|
* [ThePornArea](https://thepornarea.com/)
|
||||||
@ -53,13 +45,10 @@
|
|||||||
* [Porndish](https://www.porndish.com/)
|
* [Porndish](https://www.porndish.com/)
|
||||||
* [Analdin](https://www.analdin.com/)
|
* [Analdin](https://www.analdin.com/)
|
||||||
* [Tube8](https://www.tube8.com/)
|
* [Tube8](https://www.tube8.com/)
|
||||||
* [xMegaDrive](https://video.xmegadrive.com/)
|
|
||||||
* [Porndoe](https://porndoe.com/)
|
* [Porndoe](https://porndoe.com/)
|
||||||
* [Porndig](https://www.porndig.com/)
|
* [Porndig](https://www.porndig.com/)
|
||||||
* [anysex.com](https://anysex.com/)
|
* [anysex.com](https://anysex.com/)
|
||||||
* [PreFap](https://prefap.com/)
|
* [PreFap](https://prefap.com/)
|
||||||
* [Sex-Empire](https://hd.sex-empire.org/en/)
|
|
||||||
* [ifuqyou](https://enwww.ifuqyou.com/)
|
|
||||||
* [PornXpert](https://www.pornxpert.com/)
|
* [PornXpert](https://www.pornxpert.com/)
|
||||||
* [PornHD3x](https://www.pornhd3x.tv/)
|
* [PornHD3x](https://www.pornhd3x.tv/)
|
||||||
* [FreeOnes](https://www.freeones.com/)
|
* [FreeOnes](https://www.freeones.com/)
|
||||||
@ -67,21 +56,18 @@
|
|||||||
* [Motherless](https://motherless.com/)
|
* [Motherless](https://motherless.com/)
|
||||||
* [ClipHunter](https://www.cliphunter.com/)
|
* [ClipHunter](https://www.cliphunter.com/)
|
||||||
* [Beeg](https://beeg.com/)
|
* [Beeg](https://beeg.com/)
|
||||||
* [ThisVid](https://thisvid.com/newest/)
|
|
||||||
* [FKBAE](https://fkbae.to/)
|
|
||||||
* [Redtube](https://www.redtube.com/)
|
* [Redtube](https://www.redtube.com/)
|
||||||
* [txxx](https://txxx.com/)
|
* [txxx](https://txxx.com/)
|
||||||
* [3movs](https://www.3movs.com/)
|
* [3movs](https://www.3movs.com/)
|
||||||
* [Pornktube](https://www.pornktube.club/) or [TubXPorn](https://tubxporn.xxx/)
|
* [Pornktube](https://www.pornktube.club/) or [TubXPorn](https://tubxporn.xxx/)
|
||||||
|
* [pornktube](https://www.pornktube.tv/)
|
||||||
* [Vid123](https://vid123.net/)
|
* [Vid123](https://vid123.net/)
|
||||||
* [PornHoarder](https://pornhoarder.tv/)
|
* [PornHoarder](https://pornhoarder.tv/)
|
||||||
* [Adultism](https://www.adultism.com/), [Erome](https://www.erome.com/), [YourAmateurPorn](https://www.youramateurporn.com/), [Terk](https://www.terk.nl/) or [HClips](https://hclips.com/) - Amateur Porn
|
* [Adultism](https://www.adultism.com/), [YourAmateurPorn](https://www.youramateurporn.com/), [Terk](https://www.terk.nl/) or [HClips](https://hclips.com/) - Amateur Porn
|
||||||
* [PornFreeX](https://pornfreex.app/), [Porn App](https://porn-app.com/) or [NsfwBox](https://github.com/Kisspeace/NsfwBox) - Android Porn Apps
|
|
||||||
* [Porn Guide](https://fapbuddies.net/porn-guide/) - How-to Find Porn
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Adult Movies / Grindhouse
|
## ▷ NSFW Movies
|
||||||
|
|
||||||
* ⭐ **[NSFW Movie Site Search](https://cse.google.com/cse?cx=006516753008110874046:3-svpblbro8)** / [2](https://cse.google.com/cse?cx=b5a63746fc84a456d)
|
* ⭐ **[NSFW Movie Site Search](https://cse.google.com/cse?cx=006516753008110874046:3-svpblbro8)** / [2](https://cse.google.com/cse?cx=b5a63746fc84a456d)
|
||||||
* ⭐ **[Film1k](https://www.film1k.com/)**
|
* ⭐ **[Film1k](https://www.film1k.com/)**
|
||||||
@ -91,13 +77,13 @@
|
|||||||
* ⭐ **[My Duck Is Dead](https://myduckisdead.org/)**
|
* ⭐ **[My Duck Is Dead](https://myduckisdead.org/)**
|
||||||
* [MangoPorn](https://mangoporn.net/)
|
* [MangoPorn](https://mangoporn.net/)
|
||||||
* [EroticMV](https://eroticmv.com/)
|
* [EroticMV](https://eroticmv.com/)
|
||||||
* [itseroma](https://t.me/itseroma)
|
* [EroticMV](https://eroticmv.com/)
|
||||||
* [UiiU Movies](https://uiiumovies.net/)
|
|
||||||
* [EroGarga](https://www.erogarga.com/)
|
* [EroGarga](https://www.erogarga.com/)
|
||||||
* [EroticAge](https://www.eroticage.net/)
|
* [EroticAge](https://www.eroticage.net/)
|
||||||
* [VintageClassix](http://www.vintageclassix.com/)
|
* [VintageClassix](http://www.vintageclassix.com/)
|
||||||
* [paradisehill](https://en.paradisehill.cc/)
|
* [paradisehill](https://en.paradisehill.cc/)
|
||||||
* [Cat3Movies](https://cat3movie.org/)
|
* [Cat3Movies](https://cat3movie.org/)
|
||||||
|
* [PornDune](https://porndune.com/)
|
||||||
* [pornxtheatre](https://pornxtheatre.com/)
|
* [pornxtheatre](https://pornxtheatre.com/)
|
||||||
* [AdultLoad](https://adultload.ws/)
|
* [AdultLoad](https://adultload.ws/)
|
||||||
* [WIPFilms](https://wipfilms.net/)
|
* [WIPFilms](https://wipfilms.net/)
|
||||||
@ -118,24 +104,18 @@
|
|||||||
* [nJAV](https://njav.tv/)
|
* [nJAV](https://njav.tv/)
|
||||||
* [Avgle](https://avgle.com/)
|
* [Avgle](https://avgle.com/)
|
||||||
* [Senzuri Tube](https://senzuri.tube/)
|
* [Senzuri Tube](https://senzuri.tube/)
|
||||||
* [JavFan](https://javfan.one/ )
|
|
||||||
* [rou.video](https://rou.video/)
|
* [rou.video](https://rou.video/)
|
||||||
* [javdoe](https://javdoe.sh/)
|
|
||||||
* [playav](https://playav.tv/)
|
* [playav](https://playav.tv/)
|
||||||
* [dnaav](https://www.dnaav.com/)
|
* [dnaav](https://www.dnaav.com/)
|
||||||
* [JAVMost](https://www5.javmost.com/)
|
* [JAVMost](https://www5.javmost.com/)
|
||||||
* [Javfinder](https://javfinder.sb/)
|
* [Javfinder](https://javfinder.sb/)
|
||||||
* [avjoy](https://avjoy.me/)
|
* [avjoy](https://avjoy.me/)
|
||||||
* [91Porna](https://91porna.com/)
|
|
||||||
* [OPJAV](https://opjav.com/)
|
* [OPJAV](https://opjav.com/)
|
||||||
* [91rb](https://91rb.net/)
|
|
||||||
* [JavFun](https://asian.javfun.me/)
|
|
||||||
* [JAV19](https://www.jav19.com/)
|
* [JAV19](https://www.jav19.com/)
|
||||||
* [WatchJAVonline](https://watchjavonline.com/)
|
* [WatchJAVonline](https://watchjavonline.com/)
|
||||||
* [JavBangers](https://www.javbangers.com/)
|
* [JavBangers](https://www.javbangers.com/)
|
||||||
* [JavEnglish](https://javenglish.cc/)
|
* [JavEnglish](https://javenglish.cc/)
|
||||||
* [7MMTV](https://7mmtv.sx/)
|
* [7MMTV](https://7mmtv.sx/)
|
||||||
* [Jav-angel](https://jav-angel.net/)
|
|
||||||
* [KoreanPornMovies](https://koreanpornmovie.com/) - Korean
|
* [KoreanPornMovies](https://koreanpornmovie.com/) - Korean
|
||||||
* [cosplay.jav](https://cosplay.jav.pw/) - Cosplay Porn
|
* [cosplay.jav](https://cosplay.jav.pw/) - Cosplay Porn
|
||||||
|
|
||||||
@ -146,6 +126,7 @@
|
|||||||
* ⭐ **[Archivebate](https://archivebate.com/)**
|
* ⭐ **[Archivebate](https://archivebate.com/)**
|
||||||
* ⭐ **[CamCaps](https://camcaps.ac/)**
|
* ⭐ **[CamCaps](https://camcaps.ac/)**
|
||||||
* ⭐ **[Peachurbate](https://peachurbate.com/en)**
|
* ⭐ **[Peachurbate](https://peachurbate.com/en)**
|
||||||
|
* [OnCam](https://oncam.me/)
|
||||||
* [Cam Show Download](https://camshowdownload.com/)
|
* [Cam Show Download](https://camshowdownload.com/)
|
||||||
* [Curbate](https://curbate.tv/)
|
* [Curbate](https://curbate.tv/)
|
||||||
* [Mobile Porn](https://www.mobilepornmovies.com/)
|
* [Mobile Porn](https://www.mobilepornmovies.com/)
|
||||||
@ -163,7 +144,6 @@
|
|||||||
* [SiteRips](https://www.siterips.org/)
|
* [SiteRips](https://www.siterips.org/)
|
||||||
* [PornFactors](https://pornfactors.com/)
|
* [PornFactors](https://pornfactors.com/)
|
||||||
* [PornoRips](https://pornorips.to/)
|
* [PornoRips](https://pornorips.to/)
|
||||||
* [XXXCollections](https://xxxcollections.net/)
|
|
||||||
* [BestPornstars](https://www.bestpornstars.org/)
|
* [BestPornstars](https://www.bestpornstars.org/)
|
||||||
* [Best-MovieZ](https://www.best-moviez.ws/category/porn-18/)
|
* [Best-MovieZ](https://www.best-moviez.ws/category/porn-18/)
|
||||||
* [xdcc2.jav](https://xdcc2.jav.pw/) - IRC Asian Porn
|
* [xdcc2.jav](https://xdcc2.jav.pw/) - IRC Asian Porn
|
||||||
@ -176,14 +156,13 @@
|
|||||||
* [PornBBS](https://pornbbs.org/)
|
* [PornBBS](https://pornbbs.org/)
|
||||||
* [PornBB](https://www.pornbb.org/forum)
|
* [PornBB](https://www.pornbb.org/forum)
|
||||||
* [Eroticity](https://eroticity.net/forum.php)
|
* [Eroticity](https://eroticity.net/forum.php)
|
||||||
|
* [CyberLeaks](https://cyberleaks.org/)
|
||||||
* [PlanetSuzy](http://www.planetsuzy.org/)
|
* [PlanetSuzy](http://www.planetsuzy.org/)
|
||||||
* [xFobo](https://xfobo.com/index.php)
|
* [xFobo](https://xfobo.com/index.php)
|
||||||
* [xBunker](https://xbunker.nu/)
|
* [xBunker](https://xbunker.nu/)
|
||||||
* [AdultDVDTalk](https://www.adultdvdtalk.com/)
|
* [AdultDVDTalk](https://www.adultdvdtalk.com/)
|
||||||
* [Akiba](https://www.akiba-online.com/)
|
|
||||||
* [jdc](https://discord.gg/jdc) - Asian Porn Discord
|
* [jdc](https://discord.gg/jdc) - Asian Porn Discord
|
||||||
* [SEGNECK](https://discord.gg/jP5BHAUbeu) - Asian Porn Discord
|
* [SEGNECK](https://discord.gg/jP5BHAUbeu) - Asian Porn Discord
|
||||||
* [bdsmlr](https://bdsmlr.com/) - NSFW Tumblr Alternative
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -197,12 +176,9 @@
|
|||||||
* ⭐ **[OneJAV](https://onejav.com/)** - JAV
|
* ⭐ **[OneJAV](https://onejav.com/)** - JAV
|
||||||
* ⭐ **[141Jav](https://www.141jav.com/)** / **[141PPV](https://www.141ppv.com/)** - JAV
|
* ⭐ **[141Jav](https://www.141jav.com/)** / **[141PPV](https://www.141ppv.com/)** - JAV
|
||||||
* ⭐ **[Next JAV](https://nextjav.com/)** - JAV
|
* ⭐ **[Next JAV](https://nextjav.com/)** - JAV
|
||||||
* ⭐ **[Xchina](https://en.xchina.co/)** / [Note](https://pastebin.com/u4jcUYVq) / [Warning](https://pastebin.com/8DuageSv)
|
|
||||||
* [Sexy-Pics](https://www.sexy-pics.us/)
|
* [Sexy-Pics](https://www.sexy-pics.us/)
|
||||||
* [色花堂-98堂](https://www.sehuatang.net/)
|
* [色花堂-98堂](https://www.sehuatang.net/)
|
||||||
* [pussytorrents](https://pussytorrents.org/)
|
|
||||||
* [18Mag](https://18mag.net/)
|
* [18Mag](https://18mag.net/)
|
||||||
* [bootytape](https://ssl.bootytape.com/)
|
|
||||||
* [PornoLab](https://pornolab.net/forum/index.php)
|
* [PornoLab](https://pornolab.net/forum/index.php)
|
||||||
* [LoveTorrent](https://lovetorrent.net/), [2](https://5pornotorrent.net/)
|
* [LoveTorrent](https://lovetorrent.net/), [2](https://5pornotorrent.net/)
|
||||||
* [PornRips](https://pornrips.to/) - HEVC Porn Rips
|
* [PornRips](https://pornrips.to/) - HEVC Porn Rips
|
||||||
@ -219,67 +195,37 @@
|
|||||||
# ► Images / Reels
|
# ► Images / Reels
|
||||||
|
|
||||||
* ⭐ **[ImageFap](https://www.imagefap.com/)**
|
* ⭐ **[ImageFap](https://www.imagefap.com/)**
|
||||||
* ⭐ **[NSFWMonster](https://nsfwmonster.com/)**
|
* ⭐ **[NSFWMonster](https://nsfwmonster.com/)** - NSFW Images / GIFs
|
||||||
* ⭐ **[FikFap](https://fikfap.com/)**
|
|
||||||
* ⭐ **[fyptt](https://fyptt.to/)**
|
|
||||||
* [Sex.com](https://www.sex.com/)
|
* [Sex.com](https://www.sex.com/)
|
||||||
* [PornPics](https://www.pornpics.com/)
|
* [PornPics](https://www.pornpics.com/)
|
||||||
* [Realbooru](https://realbooru.com/)
|
* [Realbooru](https://realbooru.com/)
|
||||||
* [PimpAndHost](https://pimpandhost.com/site/trending)
|
* [PimpAndHost](https://pimpandhost.com/site/trending)
|
||||||
* [PornedUp](https://pornedup.com/)
|
* [PornedUp](https://pornedup.com/)
|
||||||
* [V2PH](https://www.v2ph.com/?hl=en)
|
|
||||||
* [Sexy Girls Pics](https://sexygirlspics.com/)
|
* [Sexy Girls Pics](https://sexygirlspics.com/)
|
||||||
* [HotPornPhotos](https://www.hotpornphotos.com/)
|
* [HotPornPhotos](https://www.hotpornphotos.com/)
|
||||||
* [PornPaw](https://www.pornpaw.com/)
|
* [PornPaw](https://www.pornpaw.com/)
|
||||||
* [xxxtik](https://xxxtik.com/)
|
* [EliteBabes](https://www.elitebabes.com/) - NSFW Images / GIFs
|
||||||
* [Tik.porn](https://tik.porn/)
|
* [GifHQ](https://gifhq.com/) - NSFW Images / GIFs
|
||||||
* [TikPorn.tube](https://tikporn.tube/)
|
* [GifSauce](https://gifsauce.com/) - NSFW Images / GIFs
|
||||||
* [tiktits](https://tiktits.com/)
|
* [HardGIF](https://hardgif.com/) - NSFW GIFs
|
||||||
* [OnlyTik](https://onlytik.com/)
|
* [xfree](https://www.xfree.com/) - NSFW Reels
|
||||||
* [Xfollow](https://www.xfollow.com/)
|
* [fap.bar](https://fap.bar/) - NSFW Reels
|
||||||
* [Tik.pm](https://tik.pm/)
|
* [FIQFUQ](https://fiqfuq.com/) - NSFW Reddit Posts
|
||||||
* [r/tiktokporn](https://www.reddit.com/r/tiktokporn/)
|
* [Reddxxx](https://reddxxx.com/) - NSFW Reddit Posts
|
||||||
* [r/Tiktokthots](https://www.reddit.com/r/tiktokthots/)
|
* [Reddit Gone Wild](https://gonewildbrowser.com/) - NSFW Reddit Posts
|
||||||
* [EliteBabes](https://www.elitebabes.com/)
|
* [ViralPorn](https://viralporn.com/) - NSFW Reddit Posts
|
||||||
* [GifHQ](https://gifhq.com/)
|
* [nsfw.xxx](https://nsfw.xxx/) - NSFW Reddit Images
|
||||||
* [GifSauce](https://gifsauce.com/)
|
* [Scroller](https://scrolller.com/) - NSFW Reddit Images
|
||||||
* [HardGIF](https://hardgif.com/)
|
|
||||||
* [redgifs](https://www.redgifs.com/)
|
|
||||||
* [xfree](https://www.xfree.com/)
|
|
||||||
* [fap.bar](https://fap.bar/)
|
|
||||||
* [FIQFUQ](https://fiqfuq.com/)
|
|
||||||
* [Reddxxx](https://reddxxx.com/)
|
|
||||||
* [Reddit Gone Wild](https://gonewildbrowser.com/)
|
|
||||||
* [ViralPorn](https://viralporn.com/)
|
|
||||||
* [nsfw.xxx](https://nsfw.xxx/)
|
|
||||||
* [Scroller](https://scrolller.com/)
|
|
||||||
* [NSFWSwipe](https://nsfwswipe.com/v/6716209)
|
|
||||||
* [NSFW Monster](https://nsfwmonster.com/)
|
|
||||||
* [PornAMinute](https://porninaminute.org/)
|
|
||||||
* [Simple-Costplay](https://www.simply-cosplay.com/), [Mitaku](https://mitaku.net/), [Hentai Costplays](https://hentai-cosplays.com) or [NudeCosplayGirls](https://nudecosplaygirls.com/) - Cosplay Images
|
|
||||||
* [ArchiveOfSins](https://archiveofsins.com/hc/) - NSFW 4Chan Archive
|
* [ArchiveOfSins](https://archiveofsins.com/hc/) - NSFW 4Chan Archive
|
||||||
* [Fap Roulette](https://www.faproulette.co/) - Random Roulette Images
|
* [NSFWSwipe](https://nsfwswipe.com/v/6716209) - NSFW GIFs
|
||||||
|
* [NSFW Monster](https://nsfwmonster.com/) - NSFW GIFs
|
||||||
|
* [PornAMinute](https://porninaminute.org/) - NSFW GIFs
|
||||||
|
* [EroMe](https://www.erome.com/explore) - Amateur NSFW
|
||||||
|
* [r/snapleaks](https://www.reddit.com/r/snapleaks/), [r/NSFW_Snapchat](https://www.reddit.com/r/NSFW_Snapchat/) or [r/DirtySnapchat](https://www.reddit.com/r/DirtySnapchat/) - NSFW Snapchat Subreddits
|
||||||
|
* [Fapeza](https://fapeza.com/) - Instagram Models
|
||||||
|
* [Simple-Costplay](https://www.simply-cosplay.com/), [Mitaku](https://mitaku.net/), [Hentai Costplays](https://hentai-cosplays.com) or [NudeCosplayGirls](https://nudecosplaygirls.com/) - Cosplay Images
|
||||||
* [Boobpedia](https://www.boobpedia.com/) - Boob Encyclopedia
|
* [Boobpedia](https://www.boobpedia.com/) - Boob Encyclopedia
|
||||||
|
* [ChatPic](https://chatpic.org/) - Create Chat Rooms and share images
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Leak Sites
|
|
||||||
|
|
||||||
* ⭐ **[Leak CSE](https://cse.google.com/cse?cx=d638aa7da557546d5)**, [2](https://cse.google.com/cse?cx=230603009f774dff1) - Leak Custom Search Engines
|
|
||||||
* ⭐ **[Fapello](https://fapello.com/)** - OnlyFans / Patreon
|
|
||||||
* ⭐ **[Hotleak](https://hotleak.vip/)** - OnlyFans / Patreon
|
|
||||||
* ⭐ **[Kemono](https://kemono.su/)** - Patreon / [Downloader](https://github.com/notFaad/coom-dl)
|
|
||||||
* ⭐ **[Coomer](https://coomer.su/)** - OnlyFans
|
|
||||||
* ⭐ **[SimpCity](https://simpcity.su/)** - OnlyFans / Patreon
|
|
||||||
* [Reddit Plug](https://redditplug.com/) - OnlyFans
|
|
||||||
* [Epic Leaks](https://t.me/+ajc9iF2hjWU3Mjgx) - OnlyFans
|
|
||||||
* [PornLeaks](https://pornleaks.in/) or [Vixenleaks](https://vixenleaks.com/) - OnlyFans / Patreon
|
|
||||||
* [NobodyHome](https://nobodyhome.tv/index.php) - OnlyFans
|
|
||||||
* [Vlixa](https://vlixa.com/) - OnlyFans
|
|
||||||
* [OnlyFans421](https://rentry.org/OnlyFans421) - OnlyFans
|
|
||||||
* [Channel Free Pack](https://t.me/channelfreepack) - OnlyFans
|
|
||||||
* [Thothub](https://thothub.to/), [2](https://thothub.is/) - OnlyFans
|
|
||||||
* [OF-Scraper](https://github.com/datawhores/OF-Scraper) or [OF-DL](https://github.com/sim0n00ps/OF-DL) - OnlyFans Scrapers
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -291,9 +237,9 @@
|
|||||||
* [Pornstars.ai](https://www.pornstars.ai/)
|
* [Pornstars.ai](https://www.pornstars.ai/)
|
||||||
* [PornLabs](https://editor.imagelabs.net/) / [Discord](https://discord.com/invite/RJX9FWWAsn)
|
* [PornLabs](https://editor.imagelabs.net/) / [Discord](https://discord.com/invite/RJX9FWWAsn)
|
||||||
* [Nonolo.ai](https://no.nolo.ai/)
|
* [Nonolo.ai](https://no.nolo.ai/)
|
||||||
* [MetArtHunter](https://www.metarthunter.com/)
|
|
||||||
* [AIPorn](https://www.aiporn.net/)
|
* [AIPorn](https://www.aiporn.net/)
|
||||||
* [pornpen.ai](https://pornpen.ai/feed)
|
* [pornpen.ai](https://pornpen.ai/feed)
|
||||||
|
* [Pornshow](https://app.pornshow.ai/)
|
||||||
* [Pornify](https://pornify.cc/)
|
* [Pornify](https://pornify.cc/)
|
||||||
* [AIHentai.co](https://aihentai.co/)
|
* [AIHentai.co](https://aihentai.co/)
|
||||||
* [Spicy Porn](https://spicy.porn/)
|
* [Spicy Porn](https://spicy.porn/)
|
||||||
@ -305,15 +251,47 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ Social Media Leaks
|
||||||
|
|
||||||
|
* ⭐ **[Leak CSE](https://cse.google.com/cse?cx=d638aa7da557546d5)**, [2](https://cse.google.com/cse?cx=230603009f774dff1) - Leak Custom Search Engines
|
||||||
|
* ⭐ **[Fapello](https://fapello.com/)** - OnlyFans / Patreon
|
||||||
|
* ⭐ **[Hotleak](https://hotleak.vip/)** - OnlyFans / Patreon
|
||||||
|
* ⭐ **[kemono.party](https://kemono.su/)** - Patreon
|
||||||
|
* ⭐ **[Coomer.Party](https://coomer.su/)** - OnlyFans
|
||||||
|
* ⭐ **[SimpCity](https://simpcity.su/)** - OnlyFans / Patreon
|
||||||
|
* [Bunkr Albums](https://bunkr-albums.io/) - OnlyFans
|
||||||
|
* [PornLeaks](https://pornleaks.in/) or [Vixenleaks](https://vixenleaks.com/) - OnlyFans / Patreon
|
||||||
|
* [NobodyHome](https://nobodyhome.tv/index.php) - OnlyFans
|
||||||
|
* [Vlixa](https://vlixa.com/) - OnlyFans
|
||||||
|
* [OnlyFans420](https://rentry.co/OnlyFans420) / [2](https://rentry.org/OnlyFans421) - OnlyFans
|
||||||
|
* [Thothub](https://thothub.to/), [2](https://thothub.is/) - OnlyFans
|
||||||
|
* [OF-Scraper](https://github.com/datawhores/OF-Scraper) or [OF-DL](https://github.com/sim0n00ps/OF-DL) - OnlyFans Scrapers
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ TikTok
|
||||||
|
|
||||||
|
* ⭐ **[FikFap](https://fikfap.com/)** - NSFW TikTok
|
||||||
|
* ⭐ **[fyptt](https://fyptt.to/)** - NSFW TikTok
|
||||||
|
* [xxxtik](https://xxxtik.com/) - NSFW TikTok
|
||||||
|
* [Tik.porn](https://tik.porn/) - NSFW TikTok
|
||||||
|
* [TikPorn.tube](https://tikporn.tube/)- NSFW TikTok
|
||||||
|
* [tiktits](https://tiktits.com/) - NSFW TikTok
|
||||||
|
* [OnlyTik](https://onlytik.com/) - NSFW TikTok
|
||||||
|
* [Xfollow](https://www.xfollow.com/) - NSFW TikTok
|
||||||
|
* [Tik.pm](https://tik.pm/) - NSFW TikTok
|
||||||
|
* [r/tiktokporn](https://www.reddit.com/r/tiktokporn/) - NSFW TikTok Subreddit
|
||||||
|
* [r/Tiktokthots](https://www.reddit.com/r/tiktokthots/) - NSFW TikTok Subreddit
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# ► Fictional
|
# ► Fictional
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Hentai Anime
|
## ▷ Hentai Anime
|
||||||
|
|
||||||
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#anime)** - Hentai Anime Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
|
||||||
* 🌐 **[The Index](https://theindex.moe/library/hentai)** or [Best Hentai Sites](https://besthentaisites.github.io/) - Hentai Site Lists
|
* 🌐 **[The Index](https://theindex.moe/library/hentai)** or [Best Hentai Sites](https://besthentaisites.github.io/) - Hentai Site Lists
|
||||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-hentai)** - Hentai Sites Index
|
|
||||||
* 🌐 **[/cumg/](https://rentry.co/coom)** - Hentai Resources
|
* 🌐 **[/cumg/](https://rentry.co/coom)** - Hentai Resources
|
||||||
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Torrents
|
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Torrents
|
||||||
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai DDL
|
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai DDL
|
||||||
@ -334,7 +312,6 @@
|
|||||||
* [HentaiPlay](https://hentaiplay.net/) - Hentai Streaming
|
* [HentaiPlay](https://hentaiplay.net/) - Hentai Streaming
|
||||||
* [HentaiSea](https://hentaisea.com/) - Hentai Streaming
|
* [HentaiSea](https://hentaisea.com/) - Hentai Streaming
|
||||||
* [AniPorn](https://aniporn.com/) - Hentai Streaming
|
* [AniPorn](https://aniporn.com/) - Hentai Streaming
|
||||||
* [Hentaini](https://hentaini.com/) - Hentai Streaming
|
|
||||||
* [MioHentai](https://miohentai.com/) - Hentai Streaming
|
* [MioHentai](https://miohentai.com/) - Hentai Streaming
|
||||||
* [999Hentai](https://999hentai.net/) - Hentai Streaming
|
* [999Hentai](https://999hentai.net/) - Hentai Streaming
|
||||||
* [HentaiStream](https://hentaistream.xxx/) - Hentai Streaming
|
* [HentaiStream](https://hentaistream.xxx/) - Hentai Streaming
|
||||||
@ -356,7 +333,9 @@
|
|||||||
* [HentaiCloud](https://www.hentaicloud.com/) - Hentai Streaming
|
* [HentaiCloud](https://www.hentaicloud.com/) - Hentai Streaming
|
||||||
* [HentaisTube](https://www.hentais.tube/) - Hentai Streaming
|
* [HentaisTube](https://www.hentais.tube/) - Hentai Streaming
|
||||||
* [Watch Hentai](https://watchhentai.net/) - Hentai Streaming
|
* [Watch Hentai](https://watchhentai.net/) - Hentai Streaming
|
||||||
* [HentaiDude](https://hentaidude.com/) - Hentai Streaming* [LatestHentai](https://latesthentai.com/) - Hentai Streaming
|
* [HentaiDude](https://hentaidude.com/) - Hentai Streaming
|
||||||
|
* [HentaiPulse](https://hentaipulse.com/) - Hentai Streaming
|
||||||
|
* [LatestHentai](https://latesthentai.com/) - Hentai Streaming
|
||||||
* [CartoonPornVideos](https://www.cartoonpornvideos.com/) - Hentai Streaming
|
* [CartoonPornVideos](https://www.cartoonpornvideos.com/) - Hentai Streaming
|
||||||
* [Hentai2w](https://hentai2w.com/) - Hentai Streaming
|
* [Hentai2w](https://hentai2w.com/) - Hentai Streaming
|
||||||
* [sakuracircle](https://sakuracircle.com/) - Hentai DDL
|
* [sakuracircle](https://sakuracircle.com/) - Hentai DDL
|
||||||
@ -380,35 +359,32 @@
|
|||||||
|
|
||||||
## ▷ Hentai Manga / Comics
|
## ▷ Hentai Manga / Comics
|
||||||
|
|
||||||
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#manga)** - Hentai Manga Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
* ⭐ **[E-Hentai](https://e-hentai.org/)** or [ExHentai](https://exhentai.org/) - Hentai Manga / Comics
|
||||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-hentairead)** - Hentai Manga / Comics Index
|
|
||||||
* ⭐ **[E-Hentai](https://e-hentai.org/)** or [ExHentai](https://exhentai.org/) - Hentai Manga / Comics
|
|
||||||
* ⭐ **E-Hentai Tools** - [Android Client](https://github.com/honjow/FEhViewer) / [Deleted Galleries](https://panda.chaika.moe/) / [Downloader](https://gitlab.com/squishydreams/pandaforever), [2](https://github.com/ccloli/E-Hentai-Downloader)
|
* ⭐ **E-Hentai Tools** - [Android Client](https://github.com/honjow/FEhViewer) / [Deleted Galleries](https://panda.chaika.moe/) / [Downloader](https://gitlab.com/squishydreams/pandaforever), [2](https://github.com/ccloli/E-Hentai-Downloader)
|
||||||
* ⭐ **[IMHentai](https://imhentai.xxx/)** - Hentai Manga / Comics
|
* ⭐ **[IMHentai](https://imhentai.xxx/)** - Hentai Manga / Comics
|
||||||
* ⭐ **[Hitomi](https://hitomi.la/)** - Hentai Manga
|
* ⭐ **[Hitomi](https://hitomi.la/)** - Hentai Manga
|
||||||
* ⭐ **[3Hentai](https://3hentai.net/)** - Hentai Manga
|
* ⭐ **[3Hentai](https://3hentai.net/)** - Hentai Manga
|
||||||
* ⭐ **[NHentai](https://nhentai.net/)** - Hentai Manga
|
* ⭐ **[NHentai](https://nhentai.net/)** - Hentai Manga
|
||||||
* ⭐ **NHentai Tools** - [Android Client](https://github.com/Dar9586/NClientV2), [2](https://ttdyce.com/apps/nhviewer/) / [Downloader](https://github.com/RicterZ/nhentai), [2](https://nhentaidownloader.zirk.eu/)
|
* ⭐ **[Anchira](https://anchira.to/)** - Official Fakku/Irodori Rips
|
||||||
|
* ⭐ **NHentai Tools** - [Android Client](https://github.com/Dar9586/NClientV2), [2](https://ttdyce.com/apps/nhviewer/) / [Downloader](https://github.com/RicterZ/nhentai), [2](https://github.com/Xwilarg/NHentaiDownloader)
|
||||||
* ⭐ **[Mihon](https://mihon.app/)** - Manga Reader
|
* ⭐ **[Mihon](https://mihon.app/)** - Manga Reader
|
||||||
* ⭐ **Mihon Tools** - [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.moe/guides/tech/repo) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko)
|
* ⭐ **Mihon Tools** - [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko)
|
||||||
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Manga DDL
|
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Manga DDL
|
||||||
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Manga Torrents
|
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Manga Torrents
|
||||||
* ⭐ **[Wholesome Hentai](https://wholesomelist.com/)** - Wholesome Manga Index
|
* ⭐ **[Wholesome Hentai](https://wholesomelist.com/)** - Wholesome Manga Index / [Discord](https://discord.com/invite/cqAm6XWw)
|
||||||
* ⭐ **[Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader)**, **[Hakuneko](https://hakuneko.download/)** or [NN Downloader](https://github.com/Official-Husko/NN-Downloader) - Multi-Site Manga Downloaders
|
* ⭐ **[Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader)**, **[Hakuneko](https://hakuneko.download/)** or [NN Downloader](https://github.com/Official-Husko/NN-Downloader) - Multi-Site Manga Downloaders
|
||||||
* [/r/Pornwha](https://www.reddit.com/r/Pornwha/) or [/r/Pornhwa](https://www.reddit.com/r/pornhwa/) - Pornwha / Pornhwa Subreddits
|
|
||||||
* [Hentai2Read](https://hentai2read.com/) or [HentaiHere](https://hentaihere.com/) - Hentai Manga
|
* [Hentai2Read](https://hentai2read.com/) or [HentaiHere](https://hentaihere.com/) - Hentai Manga
|
||||||
* [Doujins.com](https://doujins.com/) - Hentai Manga / [Discord](https://discord.com/invite/EPnJqPf7xh)
|
* [Doujins.com](https://doujins.com/) - Hentai Manga / [Discord](https://discord.com/invite/EPnJqPf7xh)
|
||||||
* [Luscious](https://www.luscious.net/) - Hentai Manga / Comics
|
* [Luscious](https://www.luscious.net/) - Hentai Manga / Comics
|
||||||
* [Simply Hentai](https://www.simply-hentai.com/web) - Hentai Manga
|
* [Simply Hentai](https://www.simply-hentai.com/web) - Hentai Manga
|
||||||
* [HentaiEnvy](https://hentaienvy.com/) - Hentai Manga / Comics
|
* [HentaiEnvy](https://hentaienvy.com/) - Hentai Manga / Comics
|
||||||
* [HentaiEra](https://hentaiera.com/) - Hentai Manga
|
* [HentaiEra](https://hentaiera.com/) - Hentai Manga
|
||||||
* [Yabai](https://yabai.si/) - Hentai Manga
|
|
||||||
* [HentaiRead](https://hentairead.com/) - Hentai Manga
|
* [HentaiRead](https://hentairead.com/) - Hentai Manga
|
||||||
* [HentaiHand](https://hentaihand.com/en/) - Hentai Manga
|
* [HentaiHand](https://hentaihand.com/en/) - Hentai Manga
|
||||||
* [HentaiZap](https://hentaizap.com/) - Hentai Manga
|
* [HentaiZap](https://hentaizap.com/) - Hentai Manga
|
||||||
* [akuma](https://akuma.moe/) - Hentai Manga
|
* [Doujin.sexy](https://doujin.sexy/) - Hentai Manga
|
||||||
* [MangaHentai](https://mangahentai.me/) - Hentai Manga
|
* [MangaHentai](https://mangahentai.me/) - Hentai Manga
|
||||||
* [Toonily](https://toonily.me/) - Pornhwa
|
* [Toonily](https://toonily.me/) - Pornwha
|
||||||
* [Manhwa18](https://manhwa18.net/) / [2](https://manhwa18.com/) / [3](https://pornwa.club/) - Pornhwa
|
* [Manhwa18](https://manhwa18.net/) / [2](https://manhwa18.com/) / [3](https://pornwa.club/) - Pornhwa
|
||||||
* [Multporn](https://multporn.net/) - Hentai Manga / Comics
|
* [Multporn](https://multporn.net/) - Hentai Manga / Comics
|
||||||
* [HentaiFox](https://hentaifox.com/) - Hentai Manga
|
* [HentaiFox](https://hentaifox.com/) - Hentai Manga
|
||||||
@ -440,15 +416,19 @@
|
|||||||
* [SVSComics](https://svscomics.com/) - Comics
|
* [SVSComics](https://svscomics.com/) - Comics
|
||||||
* [BestPornComix](https://bestporncomix.com/) - Comics
|
* [BestPornComix](https://bestporncomix.com/) - Comics
|
||||||
* [NXTComics](https://nxt-comics.net/) - Comics
|
* [NXTComics](https://nxt-comics.net/) - Comics
|
||||||
|
* [KingComicX](https://kingcomix.com/) - Comics
|
||||||
* [GoldenComics](https://goldencomics.art/) - Comics
|
* [GoldenComics](https://goldencomics.art/) - Comics
|
||||||
* [Porn Comics](https://porncomics.to/) - Comics
|
* [Porn Comics](https://porncomics.to/) - Comics
|
||||||
* [BondageComixxx](https://bondagecomixxx.net/) - Comics
|
* [BondageComixxx](https://bondagecomixxx.net/) - Comics
|
||||||
* [Xcomics](https://xcomics.se/) - Comics
|
* [Xcomics](https://xcomics.se/) - Comics
|
||||||
|
* [Porn Comics](https://porncomics.to/) - Comics
|
||||||
* [XYZ Porn Comics](https://xyzcomics.com/) - Comics
|
* [XYZ Porn Comics](https://xyzcomics.com/) - Comics
|
||||||
* [Manhwa18.cc](https://manhwa18.cc/) - Hentai Manga
|
* [Manhwa18.cc](https://manhwa18.cc/) - Hentai Manga
|
||||||
|
* [manhwas.men](https://manhwas.men/) - Hentai Manga / [Discord](https://discord.com/invite/7t4DfpG)
|
||||||
* [Mangadass](https://mangadass.com/) - Hentai Manga
|
* [Mangadass](https://mangadass.com/) - Hentai Manga
|
||||||
* [Hentaidexy](https://hentaidexy.net/) - Hentai Manga
|
* [Hentaidexy](https://hentaidexy.net/) - Hentai Manga
|
||||||
* [Hentaiwebtoon](https://hentaiwebtoon.com/) - Hentai Manga
|
* [Hentaiwebtoon](https://hentaiwebtoon.com/) - Hentai Manga
|
||||||
|
* [MangaGenki](https://mangagenki.com/) - Hentai Manga
|
||||||
* [OmegaScans](https://omegascans.org/) - Hentai Manga / [Discord](https://discord.com/invite/BrkUm8jeng)
|
* [OmegaScans](https://omegascans.org/) - Hentai Manga / [Discord](https://discord.com/invite/BrkUm8jeng)
|
||||||
* [MadaraDex](https://madaradex.org/) - Hentai Manga / [Discord](https://discord.com/invite/mubnYvjFEY)
|
* [MadaraDex](https://madaradex.org/) - Hentai Manga / [Discord](https://discord.com/invite/mubnYvjFEY)
|
||||||
* [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46) - Hentai Manga
|
* [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46) - Hentai Manga
|
||||||
@ -470,36 +450,25 @@
|
|||||||
|
|
||||||
## ▷ Games
|
## ▷ Games
|
||||||
|
|
||||||
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#games)** - Eroge Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
|
||||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-games)** - Hentai Games Index
|
|
||||||
* ⭐ **[F95Zone](https://f95zone.to/)**
|
* ⭐ **[F95Zone](https://f95zone.to/)**
|
||||||
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)**
|
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)**
|
||||||
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Games DDL
|
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Games DDL
|
||||||
* [Ryuugames](https://ryuugames.com/)
|
* [Ryuugames](https://ryuugames.com/)
|
||||||
* [VNPocket](https://vnpocket.com)
|
* [CPG Repacks](https://cpgrepacks.site/) - [Discord](https://discord.gg/dtBSZ9N)
|
||||||
* [CPG Repacks](https://cpgrepacks.site) - [Discord](https://discord.gg/dtBSZ9N)
|
|
||||||
* [PornDude Games](https://theporndude.com/best-porn-games), [2](https://theporndude.com/free-sex-games)
|
* [PornDude Games](https://theporndude.com/best-porn-games), [2](https://theporndude.com/free-sex-games)
|
||||||
* [The Asenheim Project](https://www.asenheim.org) / [Play Online](https://tss.asenheim.org/)
|
* [The Asenheim Project](https://www.asenheim.org) / [Play Online](https://tss.asenheim.org/)
|
||||||
* [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46)
|
* [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46)
|
||||||
* [GGBases](https://www.ggbases.com/)
|
* [GGBases](https://www.ggbases.com/)
|
||||||
* [BetterRepack](https://dl.betterrepack.com/public/) - [Discord](https://discord.gg/pSGZ4uz)
|
* [BetterRepack](https://dl.betterrepack.com/public/) - [Discord](https://discord.gg/pSGZ4uz)
|
||||||
* [69 Games](https://forum.69games.xxx/)
|
* [69 Games](https://forum.69games.xxx/)
|
||||||
* [LewdCorner](https://lewdcorner.com/)
|
|
||||||
* [The Asenheim Project](https://www.asenheim.org/)
|
* [The Asenheim Project](https://www.asenheim.org/)
|
||||||
* [GamCore](https://gamcore.com/) - NSFW Browser Games
|
|
||||||
* [LewdList](http://web.archive.org/web/20190515205509/https://www.lewdlist.com/) - Game Index
|
* [LewdList](http://web.archive.org/web/20190515205509/https://www.lewdlist.com/) - Game Index
|
||||||
* [Lewdzone](https://lewdzone.com/) - Games / Animations
|
* [Lewdzone](https://lewdzone.com/) - Games / Animations
|
||||||
* [Lewd Patcher](https://lewdpatcher.com/) - Adult Game Patches
|
* [Lewd Patcher](https://lewdpatcher.com/) - Adult Game Patches
|
||||||
* [Lovers Lab](https://www.loverslab.com/) - Adult Game Mods
|
|
||||||
* [NakedSkins](https://www.nakedskins.com/) - Naked Skins for Games
|
* [NakedSkins](https://www.nakedskins.com/) - Naked Skins for Games
|
||||||
* [WickedWhims](https://wickedwhimsmod.com/index) - NSFW Sims Mod
|
* [WickedWhims](https://wickedwhimsmod.com/index) - NSFW Sims Mod
|
||||||
* [HDoomGuy](https://hdoomguy.newgrounds.com/) - NSFW Doom Mod
|
* [HDoomGuy](https://hdoomguy.newgrounds.com/) - NSFW Doom Mod
|
||||||
* [Sagaoz](https://sagaoz.net/savedata/) - Japanese Visual Novel Save Files
|
* [minegasm](https://www.minegasm.net/) - Connect Minecraft to Sex Toys
|
||||||
* [FapCraft](https://fapcraft.org/) - NSFW Minecraft Mod
|
|
||||||
* [Minegasm](https://www.minegasm.net/) - Connect Minecraft to Sex Toys
|
|
||||||
* [AdultOyunÇeviri](https://adultoyunceviri.com) - Turkish Game Localizations
|
|
||||||
* [G-Point Adult](https://www.gpadult.com) - Turkish Game Localizations
|
|
||||||
* [YetişkinÇeviri](https://www.ademyurt.com/kategori/android/) - Turkish Game Localizations / [Discord](https://discord.com/invite/GQeQRzAKCR)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -510,7 +479,7 @@
|
|||||||
* ⭐ **[Rule 34](https://rule34.xxx/)**
|
* ⭐ **[Rule 34](https://rule34.xxx/)**
|
||||||
* ⭐ **[Rule34.dev](https://rule34.dev/)** - Multi-Booru Aggregator
|
* ⭐ **[Rule34.dev](https://rule34.dev/)** - Multi-Booru Aggregator
|
||||||
* ⭐ **[Hentai Foundry](https://www.hentai-foundry.com/)** / [Discord](https://discord.com/invite/gMtgEcZuk4)
|
* ⭐ **[Hentai Foundry](https://www.hentai-foundry.com/)** / [Discord](https://discord.com/invite/gMtgEcZuk4)
|
||||||
* [kemono.party](https://kemono.su/) / [Downloader](https://github.com/notFaad/coom-dl)
|
* [kemono.party](https://kemono.party/)
|
||||||
* [Gelbooru](https://gelbooru.com/)
|
* [Gelbooru](https://gelbooru.com/)
|
||||||
* [yande.re](https://yande.re/)
|
* [yande.re](https://yande.re/)
|
||||||
* [Konachan](https://konachan.com/)
|
* [Konachan](https://konachan.com/)
|
||||||
@ -545,8 +514,7 @@
|
|||||||
* [Bellesa](https://www.bellesa.co/story/all) - Fictional
|
* [Bellesa](https://www.bellesa.co/story/all) - Fictional
|
||||||
* [SexualStories](https://sexualstories.club/) - Fictional
|
* [SexualStories](https://sexualstories.club/) - Fictional
|
||||||
* [TheFetLibrary](https://www.thefetlibrary.com/) - Fictional
|
* [TheFetLibrary](https://www.thefetlibrary.com/) - Fictional
|
||||||
* [QuestionableQuestingQ](https://forum.questionablequesting.com/) - Fictional / Signup Required
|
* [Adult-Fanfiction](https://www.adult-fanfiction.org/) - Fanfiction
|
||||||
* [Adult-Fanfiction](https://www.adult-fanfiction.org/) - Fictional
|
|
||||||
* [HyperDreams](https://www.hyperdreams.com/) - Fictional / Interactive
|
* [HyperDreams](https://www.hyperdreams.com/) - Fictional / Interactive
|
||||||
* [Infaera](https://infaera.neocities.org/) - Fictional / Interactive
|
* [Infaera](https://infaera.neocities.org/) - Fictional / Interactive
|
||||||
* [EroFights](https://erofights.com/) - Fictional / Chat-Based
|
* [EroFights](https://erofights.com/) - Fictional / Chat-Based
|
||||||
@ -559,7 +527,6 @@
|
|||||||
|
|
||||||
# ► Magazines
|
# ► Magazines
|
||||||
|
|
||||||
* ⭐ **[Mens Magazines](https://archive.org/details/mensmagazines_post70s)** - NSFW Magazine Archives (1970s-modern)
|
|
||||||
* [SpicyMags](https://spicymags.xyz/)
|
* [SpicyMags](https://spicymags.xyz/)
|
||||||
* [downmagaz](https://downmagaz.net/adult_magazine/)
|
* [downmagaz](https://downmagaz.net/adult_magazine/)
|
||||||
* [PDF Dude](https://pdfdude.com/category/adult/)
|
* [PDF Dude](https://pdfdude.com/category/adult/)
|
||||||
@ -577,14 +544,13 @@
|
|||||||
# ► LGBTQ+
|
# ► LGBTQ+
|
||||||
|
|
||||||
* 🌐 **[MyGaySites](https://mygaysites.com/)** - Gay Porn Site Index
|
* 🌐 **[MyGaySites](https://mygaysites.com/)** - Gay Porn Site Index
|
||||||
* [PlayHDPorn Gay](https://www.playhdporn.com/categories/gay/)
|
* [Gay-Hotfile](https://gay-hotfile.errio.net/) - Downloads
|
||||||
* [Yupdates](https://yupdates.neocities.org/) - Gay Porn Artwork / [Drives](https://cat.yupdates.art/) / [Discord](https://discord.com/invite/ECFKuBawQg)
|
* [Yupdates](https://yupdates.neocities.org/) - Gay Porn Artwork / [Drives](https://cat.yupdates.art/) / [Discord](https://discord.com/invite/ECFKuBawQg)
|
||||||
* [PBC](https://pbc.xxx/) - Gay Porn Encyclopedia
|
* [PBC](https://pbc.xxx/) - Gay Porn Encyclopedia
|
||||||
* [MyReadingManga](https://myreadingmanga.info/) - LGBTQ+ Hentai
|
* [MyReadingManga](https://myreadingmanga.info/) - LGBTQ+ Hentai
|
||||||
* [BLCollection](https://blcollection.co/) - Boys Love Manga
|
* [BLCollection](https://blcollection.co/) - Boys Love Manga
|
||||||
* [Nifty](https://www.nifty.org/nifty/) - LGBT / Fictional
|
* [Nifty](https://www.nifty.org/nifty/) - LGBT / Fictional
|
||||||
* [FictionMania](https://fictionmania.tv/) - Transgender / Fictional
|
* [FictionMania](https://fictionmania.tv/) - Transgender / Fictional
|
||||||
* [MrDickName](https://t.me/MrDickName) - Telegram Channel
|
|
||||||
* [TransVids](https://transvids.wtf/) - OnlyFans / Patreon
|
* [TransVids](https://transvids.wtf/) - OnlyFans / Patreon
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -594,23 +560,21 @@
|
|||||||
* ⭐ **[Stash](https://stashapp.cc/)**, [Fapel System](https://github.com/pronopython/fapel-system), [Porn Vault](https://gitlab.com/porn-vault/porn-vault) or [AdultMediaManager](https://github.com/adultmm/AdultMediaManager) - Porn File Managers
|
* ⭐ **[Stash](https://stashapp.cc/)**, [Fapel System](https://github.com/pronopython/fapel-system), [Porn Vault](https://gitlab.com/porn-vault/porn-vault) or [AdultMediaManager](https://github.com/adultmm/AdultMediaManager) - Porn File Managers
|
||||||
* ⭐ **[PornStarByFace](https://pornstarbyface.com/)** - NSFW Image Reverse Search
|
* ⭐ **[PornStarByFace](https://pornstarbyface.com/)** - NSFW Image Reverse Search
|
||||||
* ⭐ **[SauceNao](https://saucenao.com/)** - Fictional NSFW Reverse Image Search / [Extension](https://saucenao.com/tools/)
|
* ⭐ **[SauceNao](https://saucenao.com/)** - Fictional NSFW Reverse Image Search / [Extension](https://saucenao.com/tools/)
|
||||||
* ⭐ **[Internet Adult Film Database](https://www.iafd.com/)**, [Data18](https://www.data18.com/), [MyPornStarBook](https://www.mypornstarbook.net/), [Warashi](http://warashi-asian-pornstars.fr/) or [AVSOX](https://avsox.click/en) - Adult Film Databases / Reviews
|
* ⭐ **[Internet Adult Film Database](https://www.iafd.com/)** or [MyPornStarBook](https://www.mypornstarbook.net/) - Adult Film Databases / Reviews
|
||||||
* ⭐ **[NameThatPorn](https://namethatporn.com/)**, [NameThatPornstar](https://namethatpornstar.com/), [r/pornID](https://www.reddit.com/r/pornID/) or [r/tipofmypenis](https://www.reddit.com/r/tipofmypenis/) - Porn Identification Communities
|
* ⭐ **[NameThatPorn](https://namethatporn.com/)**, [NameThatPornstar](https://namethatpornstar.com/), [r/pornID](https://www.reddit.com/r/pornID/) or [r/tipofmypenis](https://www.reddit.com/r/tipofmypenis/) - Porn Identification Communities
|
||||||
* ⭐ **[Vibemate PC](https://vibemate.com/)** - Feature-Rich Porn Browser
|
* ⭐ **[Vibemate PC](https://vibemate.com/)** - Feature-Rich Porn Browser
|
||||||
* ⭐ **[Bypass Subreddit Blocks](https://pastebin.com/gAAEQnqn)**
|
* ⭐ **[Bypass Subreddit Blocks](https://pastebin.com/gAAEQnqn)**
|
||||||
* [Panic Button](https://aecreations.io/panicbutton/index.php) - Quickly Close All Tabs
|
* [Panic Button](https://pastebin.com/mDWBZ7fQ) - Quickly Close All Tabs
|
||||||
* [Javinizer](https://github.com/javinizer/Javinizer) - JAV File Organizer
|
* [Javinizer](https://github.com/javinizer/Javinizer) - JAV File Organizer
|
||||||
* [DeepMosaics](https://github.com/HypoX64/DeepMosaics) - Remove Mosaics from Porn
|
* [DeepMosaics](https://github.com/HypoX64/DeepMosaics) - Remove Mosaics from Porn
|
||||||
* [ThePornDB](https://metadataapi.net/) - Porn Metadata
|
* [ThePornDB](https://metadataapi.net/) - Porn Metadata
|
||||||
* [Sleazy Fork](https://sleazyfork.org/en/scripts) - Adult User Scripts / [Add to Greasyfork](https://greasyfork.org/en/scripts/23840)
|
* [Bypass Age Verification](https://greasyfork.org/en/scripts/393525-bypass-age-verification-deviantart-com) - Bypass Deviantart Age Restriction
|
||||||
|
* [Sleazy Fork](https://sleazyfork.org/en/scripts) - Adult User Scripts
|
||||||
* [Anal Sex Guide](https://github.com/regdude/anal) - Anal Sex Guide / Safety
|
* [Anal Sex Guide](https://github.com/regdude/anal) - Anal Sex Guide / Safety
|
||||||
* [FapInstructor](https://fapinstructor.com/) or [Joi.how](https://joi.how/) - Fap Instructor Tools
|
* [FapInstructor](https://fapinstructor.com/) or [Joi.how](https://joi.how/) - Fap Instructor Tools
|
||||||
* [BDSM Tools](https://www.bdsmtools.org/) - BDSM Tools
|
* [BDSM Tools](https://www.bdsmtools.org/) - BDSM Tools
|
||||||
* [BDSM Test](https://bdsmtest.org/) - BDSM Test
|
|
||||||
* [KinxList](https://kinxlist.com/) - BDSM Checklist
|
|
||||||
* [Chaster](https://chaster.app/) - Chastity Tools
|
|
||||||
* [WallTalker](https://walltaker.joi.how/) - Control Wallpapers
|
* [WallTalker](https://walltaker.joi.how/) - Control Wallpapers
|
||||||
* [Awesome Buttplug](https://github.com/buttplugio/awesome-buttplug) - Buttplug Project Index
|
* [Awesome-Buttplug](https://github.com/buttplugio/awesome-buttplug) - Buttplug Project Index
|
||||||
* [Buttplug.io](https://buttplug.io/) - Sex Toy Control Software
|
* [Buttplug.io](https://buttplug.io/) - Sex Toy Control Software
|
||||||
* [Thunder's Place](https://thunders.place/) - Penis Enlargement Discussion & Safety
|
* [Thunder's Place](https://thunders.place/) - Penis Enlargement Discussion & Safety
|
||||||
* [MoanMyIP](https://www.moanmyip.com/) - Sexy Girls Moaning Your IP
|
* [MoanMyIP](https://www.moanmyip.com/) - Sexy Girls Moaning Your IP
|
||||||
@ -618,4 +582,19 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► [Porn Quitting](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_porn_quitting)
|
# ► Porn Quitting
|
||||||
|
|
||||||
|
* 🌐 **[Awesome-Adult-Content-Filtering](https://github.com/wesinator/awesome-Adult-Content-Filtering)** - Porn Quitting Tools Index
|
||||||
|
* ↪️ **[Site Blocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_productivity_tools)**
|
||||||
|
* ⭐ **[EasyPeasy](https://easypeasymethod.org/)**, [2](https://gitlab.com/snuggy/easypeasy) - Painlessly Quit Pornography
|
||||||
|
* ⭐ **[NoFap Forums](https://forum.nofap.com/index.php)** or [Your Brain Rebalanced](https://yourbrainrebalanced.com/) - Forums
|
||||||
|
* [beta-censoring](https://github.com/silveredgold/beta-censoring), [beta-protection](https://github.com/silveredgold/beta-protection) or [Wingman](https://github.com/wingman-jr-addon/wingman_jr) - Porn Blocking Extensions
|
||||||
|
* [Plucky](https://pluckyfilter.com/) - Content Filter
|
||||||
|
* [Brainbuddy](https://www.brainbuddyapp.com/) - Porn Blocker / Android / iOS
|
||||||
|
* [SelfControlApp](https://selfcontrolapp.com/) - Mac Site Blocker
|
||||||
|
* [CleanBrowsing](https://cleanbrowsing.org/filters/) - Family DNS Filters
|
||||||
|
* [cringeMDb](https://cringemdb.com/), [Age Rating JuJu](https://www.ageratingjuju.com/), [CommonSenseMedia](https://www.commonsensemedia.org/) or [unconsenting media](https://www.unconsentingmedia.org) - Find SFW Movies
|
||||||
|
* [Movie Parser](https://raskie.com/post/practical-ai-autodetecting-nsfw) - Detect NSFW Scenes in Movies / [GitHub](https://github.com/dynamite-ready/movie-parser)
|
||||||
|
* [Puri.fy](https://pury.fi/) or [NSFW-Filter](https://nsfw-filter.com/) - Block NSFW Images
|
||||||
|
* [Fortify](https://www.joinfortify.com/) - Porn Quitting Community
|
||||||
|
* [SAA Recovery](https://saa-recovery.org/), [Cosa Recovery](https://cosa-recovery.org/) or [Smart Recovery](https://www.smartrecovery.org/) - Find Sex Addition Meetings
|
||||||
|
807
Non-English.md
807
Non-English.md
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
1043
STORAGE.md
1043
STORAGE.md
File diff suppressed because it is too large
Load Diff
@ -6,12 +6,16 @@
|
|||||||
|
|
||||||
# ► Social Media Tools
|
# ► Social Media Tools
|
||||||
|
|
||||||
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats
|
* [Social-Searcher](https://www.social-searcher.com/), [WeVerify](https://cse.google.com/cse?cx=006976128084956795641:ad1xj14zfap), [Social Media CSE](https://cse.google.com/cse?cx=73dda67fd05b4405f#gsc.tab=1&gsc.sort=) or [Social Mention](https://www.socialmention.com/) - Social Media Search Engine
|
||||||
* ⭐ **[LiveCounts](https://livecounts.io/)** - Live Social Media Stats
|
|
||||||
* [Social-Searcher](https://www.social-searcher.com/), [WeVerify](https://cse.google.com/cse?cx=006976128084956795641:ad1xj14zfap) or [Social Media CSE](https://cse.google.com/cse?cx=73dda67fd05b4405f#gsc.tab=1&gsc.sort=) - Social Media Search Engine
|
|
||||||
* [Social Media Hacker List](https://github.com/MobileFirstLLC/social-media-hacker-list) - Social Media Apps / Tools
|
* [Social Media Hacker List](https://github.com/MobileFirstLLC/social-media-hacker-list) - Social Media Apps / Tools
|
||||||
|
* [SocialBlade](https://socialblade.com/) - Social Media Stats
|
||||||
|
* [LiveCounts](https://livecounts.io/) - Live Social Media Stats
|
||||||
* [ExportComments](https://exportcomments.com/) - Export Social Media Comments
|
* [ExportComments](https://exportcomments.com/) - Export Social Media Comments
|
||||||
|
* [EagleEye](https://github.com/ThoughtfulDev/EagleEye) - Find Social Media Profiles From Image
|
||||||
* [socid_extractor](https://github.com/soxoj/socid-extractor) - Extract Social Media User Info from Pages
|
* [socid_extractor](https://github.com/soxoj/socid-extractor) - Extract Social Media User Info from Pages
|
||||||
|
* [Snapchat Memories](https://downloadmysnapchatmemories.com/) - Download Snapchat Photos
|
||||||
|
* [tumblr-utils](https://github.com/bbolli/tumblr-utils) - Tumblr Utilities
|
||||||
|
* [Tumblr Savior](https://bjornstar.com/tumblr-savior) - Tumblr Dashboard Filter
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -21,17 +25,19 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* 🌐 **[Awesome Discord](https://github.com/jacc/awesome-discord)** - Discord Tool Index
|
* 🌐 **[DiscordTools](https://discordtools.io/)** or [awesome-discord](https://github.com/jacc/awesome-discord) - Discord Tools Indexes
|
||||||
* ⭐ **[x266.mov](https://x266.mov/discord-embed)**, [embeds.video](https://embeds.video/), [Stolen Shoes](https://stolen.shoes/), [autocompressor](https://autocompressor.net/), [noury](https://dc.noury.li/) or [Discord Embedder](https://discord.nfp.is/) - Embed Videos on Discord
|
* ⭐ **[x266.mov](https://x266.mov/discord-embed)**, [embeds.video](https://embeds.video/), [Stolen Shoes](https://stolen.shoes/), [autocompressor](https://autocompressor.net/) or [Discord Embedder](https://discord.nfp.is/) - Embed Videos on Discord
|
||||||
* ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/insertish/awesome-revolt) / [Divolt Resources](https://github.com/ggtylerr/awesome-divolt) or **[Guilded](https://www.guilded.gg/)** - Discord Alternatives
|
* ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/insertish/awesome-revolt) / [Divolt Resources](https://github.com/ggtylerr/awesome-divolt) or **[Guilded](https://www.guilded.gg/)** / [Mod](https://github.com/ReGuilded/ReGuilded/) - Discord Alternatives
|
||||||
* [Multi-Accounts 1 Email](https://generator.email/blog/gmail-generator) - Create Multi Accounts with One Email / [Guide](https://rentry.co/altmethod)
|
* [Multi-Accounts 1 Email](https://generator.email/blog/gmail-generator) - Create Multi Accounts with One Email / [Guide](https://rentry.co/altmethod)
|
||||||
* [AnswersOverflow](https://www.answeroverflow.com/) - Discord Search Engine
|
* [AnswersOverflow](https://www.answeroverflow.com/) - Discord Search Engine
|
||||||
* [DiscordFS](https://github.com/dhrumilp15/haystackfs) - Discord File Search
|
* [DiscordFS](https://github.com/dhrumilp15/haystackfs) - Discord File Search
|
||||||
* [Discord Downloader Go](https://github.com/get-got/discord-downloader-go) - Discord File Downloader
|
* [Discord Downloader Go](https://github.com/get-got/discord-downloader-go) - Discord File Downloader
|
||||||
* [Toolscord](https://toolscord.com/) or [Discord Avatar](https://discord-avatar.com/) - Download Discord Avatars
|
* [Discord-Avatar](https://discord-avatar.com/) or [Toolscord](https://toolscord.com/) - Download Discord Avatars
|
||||||
* [Disbox](https://disboxapp.github.io/web/) - Discord Cloud Storage
|
* [Disbox](https://disboxapp.github.io/web/) - Discord Cloud Storage
|
||||||
|
* [CloneCord](https://github.com/Rekulous/CloneCord-bot) - GClone Cloud Storage File Manager in Discord
|
||||||
* [Discord Chat Exporter](https://github.com/Tyrrrz/DiscordChatExporter) / [Python](https://github.com/mahtoid/DiscordChatExporterPy) or [Discord History Tracker](https://dht.chylex.com/) / [GitHub](https://github.com/chylex/Discord-History-Tracker) - Archive / Export Discord Chats
|
* [Discord Chat Exporter](https://github.com/Tyrrrz/DiscordChatExporter) / [Python](https://github.com/mahtoid/DiscordChatExporterPy) or [Discord History Tracker](https://dht.chylex.com/) / [GitHub](https://github.com/chylex/Discord-History-Tracker) - Archive / Export Discord Chats
|
||||||
* [Dumpus](https://dumpus.app/) - Discord Data Package Explorer
|
* [Dumpus](https://dumpus.app/) - Discord Data Package Explorer
|
||||||
|
* [Discord Backup](https://github.com/itschasa/Discord-Backup) - Backup / Restore Discord Accounts
|
||||||
* [Wumpus Central](https://discord.gg/wumpus-central-1087801778365546556) - Discord Experimental Server Hub
|
* [Wumpus Central](https://discord.gg/wumpus-central-1087801778365546556) - Discord Experimental Server Hub
|
||||||
* [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption
|
* [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption
|
||||||
* [Undiscord](https://victornpb.github.io/undiscord/) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
|
* [Undiscord](https://victornpb.github.io/undiscord/) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
|
||||||
@ -39,17 +45,16 @@
|
|||||||
* [dsc.gg](https://dsc.gg/) - Create Custom Discord Invites
|
* [dsc.gg](https://dsc.gg/) - Create Custom Discord Invites
|
||||||
* [Discord Previews](https://discord.gg/QMw7gQGMHj) - New Discord Builds / Changes
|
* [Discord Previews](https://discord.gg/QMw7gQGMHj) - New Discord Builds / Changes
|
||||||
* [instaparty](https://instaparty.gg/) - Temporary Discord Servers
|
* [instaparty](https://instaparty.gg/) - Temporary Discord Servers
|
||||||
* [Discord Templates](https://discordtemplates.me/) - Discord Server Templates
|
|
||||||
* [Discord UI Mockup](https://www.figma.com/community/file/994323951589690341/Discord-Desktop-UI) - Discord UI Mockups
|
* [Discord UI Mockup](https://www.figma.com/community/file/994323951589690341/Discord-Desktop-UI) - Discord UI Mockups
|
||||||
* [discord-badges](https://github.com/mezotv/discord-badges) - Discord Badges Image Files
|
* [discord-badges](https://github.com/mezotv/discord-badges) - Discord Badges Image Files
|
||||||
* [DisblockOrigin](https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Upsells
|
* [SunnyDiscord](https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Upsells
|
||||||
* [Discord Creation Date Check](https://github.com/hugonun/discordid2date) - Check Creation Date of User / Channel / Server
|
* [Discord Creation Date Check](https://hugo.moe/discord/discord-id-creation-date.html) / [GitHub](https://github.com/hugonun/discordid2date) - Check Creation Date of User / Channel / Server
|
||||||
* [Discord Lookup](https://discord.id/) - Look up a Discord User or Bot ID
|
* [Discord Lookup](https://discord.id/) - Look up a Discord User or Bot ID
|
||||||
* [Guild Counter](https://rauf.wtf/guildcount) - Check How Many Servers You're In
|
* [Guild Counter](https://rauf.wtf/guildcount) - Check How Many Servers You're In
|
||||||
* [Discord Dev Badges](https://pastebin.com/JzrckCix), [active-developer-badge](https://github.com/hackermondev/discord-active-developer-badge) or [GiveMeBadge](https://github.com/AlexFlipnote/GiveMeBadge) - Unlock Discord Dev Badges / [Script](https://gist.github.com/Raraph84/cff3ff908a1f2692b9a8452d2f49c2bf)
|
* [Discord Dev Badges](https://pastebin.com/JzrckCix), [active-developer-badge](https://github.com/hackermondev/discord-active-developer-badge) or [GiveMeBadge](https://github.com/AlexFlipnote/GiveMeBadge) - Unlock Discord Dev Badges / [Script](https://gist.github.com/Raraph84/cff3ff908a1f2692b9a8452d2f49c2bf)
|
||||||
* [Discord-Api](https://discord.gg/discord-api) - Discord API Chat
|
* [Discord-Api](https://discord.gg/discord-api) - Discord API Chat
|
||||||
* [Discord-Datamining](https://github.com/Discord-Datamining/Discord-Datamining) - Discord Datamining via JS Files
|
* [Discord-Datamining](https://github.com/Discord-Datamining/Discord-Datamining) - Discord Datamining via JS Files
|
||||||
* [Discord TTS Bot](https://docs.moonstar-x.dev/discord-tts-bot/) - Text to Speech for Discord
|
* [Discord TTS Bot](https://github.com/moonstar-x/discord-tts-bot) - Text to Speech for Discord
|
||||||
* [Discord Webhooks Guide](https://birdie0.github.io/discord-webhooks-guide/) - Webhooks Guide
|
* [Discord Webhooks Guide](https://birdie0.github.io/discord-webhooks-guide/) - Webhooks Guide
|
||||||
* [Webhooker](https://xdfnleaks.github.io/webhooker/) - Simple Webhooks App
|
* [Webhooker](https://xdfnleaks.github.io/webhooker/) - Simple Webhooks App
|
||||||
* [Embed Visualizer](https://embed.discord.website/) - Preview Embeds
|
* [Embed Visualizer](https://embed.discord.website/) - Preview Embeds
|
||||||
@ -66,18 +71,15 @@
|
|||||||
* 🌐 **[Discord3rdParties](https://github.com/Discord-Client-Encyclopedia-Management/Discord3rdparties)** - Discord Clients Index
|
* 🌐 **[Discord3rdParties](https://github.com/Discord-Client-Encyclopedia-Management/Discord3rdparties)** - Discord Clients Index
|
||||||
* ⭐ **[Vencord](https://vencord.dev/)** - Discord Client Mod / [Github](https://github.com/Vendicated/Vencord) / [Desktop Client](https://github.com/Vencord/Vesktop)
|
* ⭐ **[Vencord](https://vencord.dev/)** - Discord Client Mod / [Github](https://github.com/Vendicated/Vencord) / [Desktop Client](https://github.com/Vencord/Vesktop)
|
||||||
* ⭐ **[BetterDiscord](https://betterdiscord.app/)** - Discord Client Mod / [GitHub](https://github.com/BetterDiscord/BetterDiscord)
|
* ⭐ **[BetterDiscord](https://betterdiscord.app/)** - Discord Client Mod / [GitHub](https://github.com/BetterDiscord/BetterDiscord)
|
||||||
* ⭐ **BetterDiscord Tools** - [Plugins](https://betterdiscord.app/plugins) / [Banned Plugins](https://rentry.co/BDBannedPlugins), [2](https://github.com/mov-ebx/BannedBetterDiscordPlugins) / [Support](https://discord.gg/0Tmfo5ZbORCRqbAd) / [Nitro](https://github.com/riolubruh/YABDP4Nitro) / [Re-install Guide](https://gist.github.com/Knewest/ee59d3960e18e6d813c9221b54b36ab1)
|
* ⭐ **BetterDiscord Tools** - [Plugins](https://betterdiscord.app/plugins) / [Themes](https://betterdiscord.app/themes) / [Theme Editor](https://bdeditor.dev/) / [Support](https://discord.gg/0Tmfo5ZbORCRqbAd) / [Nitro](https://github.com/riolubruh/YABDP4Nitro) / [Message Panel](https://github.com/SanjaySunil/BetterDiscordPanel) / [Re-install Guide](https://gist.github.com/Knewest/ee59d3960e18e6d813c9221b54b36ab1)
|
||||||
* ⭐ **[OpenAsar](https://openasar.dev/)** - Improved Discord Desktop's app.asar / [GitHub](https://github.com/GooseMod/OpenAsar)
|
|
||||||
* ⭐ **[WebCord](https://github.com/SpacingBat3/WebCord)** - Privacy-Hardened Client / [Discord](https://discord.gg/Vm4CwZx)
|
* ⭐ **[WebCord](https://github.com/SpacingBat3/WebCord)** - Privacy-Hardened Client / [Discord](https://discord.gg/Vm4CwZx)
|
||||||
* [Replugged](https://replugged.dev/) - Discord Client Mod / Lightweight
|
* [OpenAsar](https://openasar.dev/) - Improved Discord Desktop's app.asar / [GitHub](https://github.com/GooseMod/OpenAsar)
|
||||||
* [ArmCord](https://github.com/ArmCord/ArmCord) - Discord Client Mod / Lightweight
|
* [ArmCord](https://github.com/ArmCord/ArmCord), [abaddon](https://github.com/uowuo/abaddon) or [Replugged](https://replugged.dev/) - Lightweight Discord Clients
|
||||||
* [abaddon](https://github.com/uowuo/abaddon) - Discord Client Mod / Lightweight
|
|
||||||
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
|
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
|
||||||
* [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client
|
|
||||||
* [Unicord](https://github.com/UnicordDev/Unicord) - Discord Client for Windows / [Discord](https://discord.gg/64g7M5Y)
|
* [Unicord](https://github.com/UnicordDev/Unicord) - Discord Client for Windows / [Discord](https://discord.gg/64g7M5Y)
|
||||||
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Client
|
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Client
|
||||||
* [Dorion](https://github.com/SpikeHD/Dorion) - Lightweight Discord Client
|
* [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client
|
||||||
* [Dissent](https://github.com/diamondburned/dissent) - GTK4 Discord Client
|
* [GTKCord4](https://github.com/diamondburned/gtkcord4) - GTK4 Discord Client
|
||||||
* [Discord Portable](https://portapps.io/app/discord-portable/) / [PTB PortApps](https://portapps.io/app/discord-ptb-portable/) - Portable Discord Stable
|
* [Discord Portable](https://portapps.io/app/discord-portable/) / [PTB PortApps](https://portapps.io/app/discord-ptb-portable/) - Portable Discord Stable
|
||||||
* [litecord](https://gitlab.com/litecord/litecord) - Reimplementation of Discord's Backend / [Clients](https://gitlab.com/litecord/litecord/-/blob/master/docs/clients.md)
|
* [litecord](https://gitlab.com/litecord/litecord) - Reimplementation of Discord's Backend / [Clients](https://gitlab.com/litecord/litecord/-/blob/master/docs/clients.md)
|
||||||
|
|
||||||
@ -85,12 +87,17 @@
|
|||||||
|
|
||||||
## ▷ Client Customization
|
## ▷ Client Customization
|
||||||
|
|
||||||
* 🌐 **[Client Themes](https://betterdiscord.app/themes)** or [Discord Themes](https://github.com/topics/discord-theme) - Client Theme Index
|
* ⭐ **[Discohook](https://discohook.org/)** / [Discohook Utils](https://dutils.shay.cat/) or [Embed Generator](https://message.style/) - Embed Generators
|
||||||
* ⭐ **[Discohook](https://discohook.org/)** / [Discohook Utils](https://dutils.shay.cat/), [Embed Creator](https://embed.dan.onl/) or [Embed Generator](https://message.style/) - Embed Generators
|
|
||||||
* ⭐ **[CustomRP](https://www.customrp.xyz/)** - Customizable Rich Presence
|
* ⭐ **[CustomRP](https://www.customrp.xyz/)** - Customizable Rich Presence
|
||||||
* [BD Editor](https://bdeditor.dev/) - Client Theme Editor
|
* [AMWin-RP](https://github.com/PKBeam/AMWin-RP) - Apple Music Rich Presence
|
||||||
|
* [Adobe Discord RPC](https://github.com/teeteeteeteetee/adobe-discord-rpc) - Adobe Rich Presence
|
||||||
|
* [discord-vscode](https://marketplace.visualstudio.com/items?itemName=icrawl.discord-vscode) - VSCode Rich Presence / [GitHub](https://github.com/iCrawl/discord-vscode)
|
||||||
|
* [Old Layout](https://gist.github.com/aamiaa/fbf6e51dbb8875a781a3d8d76fc3f3e7) - Revert New Discord Layout
|
||||||
* [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Chroma Light for Discord
|
* [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Chroma Light for Discord
|
||||||
* [Overlayed](https://overlayed.dev/) - Alternative Discord VC Overlay / [GitHub](https://github.com/Hacksore/overlayed)
|
* [Overlayed](https://overlayed.dev/) - Alternative Discord VC Overlay / [GitHub](https://github.com/Hacksore/overlayed)
|
||||||
|
* [Acrylic](https://github.com/uwu/Acrylic) - Glass Theme
|
||||||
|
* [WinClassic](https://github.com/SlippingGittys-Discord-Themes/WinClassic) - Classic Windows Theme
|
||||||
|
* [PreMiD](https://premid.app/) - Display Web Activity in Discord Status / [GitHub](https://github.com/PreMiD/PreMiD) / [Discord](https://discord.premid.app/)
|
||||||
* [BeautifulDiscord](https://github.com/leovoel/BeautifulDiscord) - Custom CSS Support
|
* [BeautifulDiscord](https://github.com/leovoel/BeautifulDiscord) - Custom CSS Support
|
||||||
* [ansi-colors-discord.md](https://gist.github.com/kkrypt0nn/a02506f3712ff2d1c8ca7c9e0aed7c06) - Discord ANSI Text Guide
|
* [ansi-colors-discord.md](https://gist.github.com/kkrypt0nn/a02506f3712ff2d1c8ca7c9e0aed7c06) - Discord ANSI Text Guide
|
||||||
* [Coloured-Text-Generator](https://rebane2001.com/discord-colored-text-generator/) - Discord ANSI Text Generator
|
* [Coloured-Text-Generator](https://rebane2001.com/discord-colored-text-generator/) - Discord ANSI Text Generator
|
||||||
@ -100,33 +107,24 @@
|
|||||||
* [Pfps.gg](https://pfps.gg/) - Find Discord Avatars
|
* [Pfps.gg](https://pfps.gg/) - Find Discord Avatars
|
||||||
* [usrbg](https://github.com/Discord-Custom-Covers/usrbg) - Custom Discord Profile Backgrounds
|
* [usrbg](https://github.com/Discord-Custom-Covers/usrbg) - Custom Discord Profile Backgrounds
|
||||||
* [Disgradient](https://disgradient.netlify.app/) - Discord Folder / Role Color Gradients
|
* [Disgradient](https://disgradient.netlify.app/) - Discord Folder / Role Color Gradients
|
||||||
|
* [NotQuiteNitro](https://nqn.blue/) - Discord Nitro Alternative
|
||||||
* [ImageClipboard](https://imageclipboard.com/), [Slackmoji](https://github.com/seanprashad/slackmoji) or [emoji.gg](https://emoji.gg/)- Free Discord Nitro Emojis
|
* [ImageClipboard](https://imageclipboard.com/), [Slackmoji](https://github.com/seanprashad/slackmoji) or [emoji.gg](https://emoji.gg/)- Free Discord Nitro Emojis
|
||||||
* [Snowsgiving Icons & Emotes](https://web.archive.org/web/20230729100139/https://cdn.discordapp.com/attachments/689605845058715801/862281806820278292/Snow.zip) - Snowsgiving Event Icons / Emojis
|
* [Snowsgiving Icons & Emotes](https://web.archive.org/web/20230729100139/https://cdn.discordapp.com/attachments/689605845058715801/862281806820278292/Snow.zip) - Snowsgiving Event Icons / Emojis
|
||||||
* [6gk Turtles](https://github.com/6gk/turtles) - Discord Turtle Emojis
|
* [6gk Turtles](https://github.com/6gk/turtles) - Discord Turtle Emojis
|
||||||
* [Discord Text to Emoji](https://jtprince.com/discord/) - Convert Text to Discord Emojis
|
* [Discord Text to Emoji](https://jtprince.com/discord/) - Convert Text to Discord Emojis
|
||||||
* [Stickers.gg](https://stickers.gg) - Free Discord Stickers
|
* [Stickers.gg](https://stickers.gg) - Free Discord Stickers
|
||||||
* [PreMiD](https://premid.app/) - Display Web Activity in Discord Status / [GitHub](https://github.com/PreMiD/PreMiD) / [Discord](https://discord.premid.app/)
|
|
||||||
* [Jellyfin RPC](https://github.com/Radiicall/jellyfin-rpc) - Jellyfin Rich Presence
|
|
||||||
* [AMWin-RP](https://github.com/PKBeam/AMWin-RP) - Apple Music Rich Presence
|
|
||||||
* [Foo Discord](https://github.com/s0hv/foo_discord_rich) - Foobar Rich Presence
|
|
||||||
* [Adobe Discord RPC](https://github.com/teeteeteeteetee/adobe-discord-rpc) - Adobe Rich Presence
|
|
||||||
* [PS3 Rich](https://github.com/zorua98741/PS3-Rich-Presence-for-Discord) - PS3 Rich Presence
|
|
||||||
* [discord-vscode](https://marketplace.visualstudio.com/items?itemName=icrawl.discord-vscode) - VSCode Rich Presence / [GitHub](https://github.com/iCrawl/discord-vscode)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Discord Bots
|
## ▷ Discord Bots
|
||||||
|
|
||||||
* ⭐ **[FreeStuff Bot](https://freestuffbot.xyz/)** - Free Games Alert Bot
|
* ⭐ **[FreeStuff Bot](https://freestuffbot.xyz/)** - Free Games Alert Bot
|
||||||
* [FixEmbed](https://github.com/kenhendricks00/FixEmbed) - Fix Embeds on Discord Bot
|
|
||||||
* [esmBot](https://github.com/esmBot/esmBot) - Image / Music Bot
|
|
||||||
* [NotQuiteNitro](https://nqn.blue/) - Discord Nitro Alternative
|
|
||||||
* [fmbot](https://fmbot.xyz/) - Discord Voice Chat Scrobbling
|
* [fmbot](https://fmbot.xyz/) - Discord Voice Chat Scrobbling
|
||||||
* [Chuu](https://github.com/ishwi/Chuu) - Last.fm Discord Bot
|
* [Chuu](https://github.com/ishwi/Chuu) - Last.fm Discord Bot
|
||||||
* [Craig](https://craig.chat/) - Voice Channel Recorder Bot / [Backup](https://craig.chat/giarc/)
|
* [Craig](https://craig.chat/) - Voice Channel Recorder Bot / [Backup](https://craig.chat/giarc/)
|
||||||
* [MonitoRSS](https://monitorss.xyz/) - RSS Discord Bot
|
* [MonitoRSS](https://monitorss.xyz/) - RSS Discord Bot
|
||||||
* [Wallabot](https://github.com/FahadBinHussain/wallabot) - Wallabag Discord Bot
|
* [Wallabot](https://github.com/FahadBinHussain/wallabot) - Wallabag Discord Bot
|
||||||
* [Discord Music Bot](https://github.com/SudhanPlayz/Discord-MusicBot), [Music-bot](https://github.com/ZerioDev/Music-bot) / [Discord](https://discord.gg/Kqdn8CHacP), [Chip](https://chipbot.gg/), [MusicBot](https://github.com/jagrosh/MusicBot) or [EvoBot](https://github.com/eritislami/evobot) - Music Bots
|
* [Discord Music Bot](https://github.com/SudhanPlayz/Discord-MusicBot), [Music-bot](https://github.com/ZerioDev/Music-bot), [Chip](https://chipbot.gg/), [MusicBot](https://github.com/jagrosh/MusicBot), [EvoBot](https://github.com/eritislami/evobot) or [EarTensifier](https://eartensifier.net/) - Music Bots
|
||||||
* [Red Discordbot](https://github.com/Cog-Creators/Red-DiscordBot), [Discord-Bot](https://github.com/CorwinDev/Discord-Bot) or [Loritta](https://github.com/LorittaBot/Loritta) - Self-hostable Discord Moderation Bots
|
* [Red Discordbot](https://github.com/Cog-Creators/Red-DiscordBot), [Discord-Bot](https://github.com/CorwinDev/Discord-Bot) or [Loritta](https://github.com/LorittaBot/Loritta) - Self-hostable Discord Moderation Bots
|
||||||
* [Wickbot](https://wickbot.com/) - Discord Security Bot
|
* [Wickbot](https://wickbot.com/) - Discord Security Bot
|
||||||
* [anti-phishing-bot](https://github.com/Benricheson101/anti-phishing-bot) - Discord Anti Phishing Bot
|
* [anti-phishing-bot](https://github.com/Benricheson101/anti-phishing-bot) - Discord Anti Phishing Bot
|
||||||
@ -139,6 +137,7 @@
|
|||||||
## ▷ Server / Bot Indexes
|
## ▷ Server / Bot Indexes
|
||||||
|
|
||||||
* 🌐 **[Alternatives to MEE6](https://alternativestomee6.com/)** - MEE6 Alternatives / [Discord](https://discord.gg/WrbMdWHfNd)
|
* 🌐 **[Alternatives to MEE6](https://alternativestomee6.com/)** - MEE6 Alternatives / [Discord](https://discord.gg/WrbMdWHfNd)
|
||||||
|
* ↪️ **[Discord ChatGPT Bots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_chatgpt_tools)**
|
||||||
* [DISBOARD](https://disboard.org/) - Server / Bot Index
|
* [DISBOARD](https://disboard.org/) - Server / Bot Index
|
||||||
* [Discord Servers](https://discordservers.com/) - Server / Bot Index
|
* [Discord Servers](https://discordservers.com/) - Server / Bot Index
|
||||||
* [Discadia](https://discadia.com/) - Server / Bot Index
|
* [Discadia](https://discadia.com/) - Server / Bot Index
|
||||||
@ -146,7 +145,6 @@
|
|||||||
* [Discord Me](https://discord.me/) - Server / Bot Index
|
* [Discord Me](https://discord.me/) - Server / Bot Index
|
||||||
* [Disforge](https://disforge.com/) - Server / Bot Index
|
* [Disforge](https://disforge.com/) - Server / Bot Index
|
||||||
* [Find a Discord](https://findadiscord.com/) - Server / Bot Index
|
* [Find a Discord](https://findadiscord.com/) - Server / Bot Index
|
||||||
* [Discord Extreme List](https://discordextremelist.xyz/) - Server / Bot Index
|
|
||||||
* [Open Source Projects](https://discord.com/open-source) - Server / Bot Index
|
* [Open Source Projects](https://discord.com/open-source) - Server / Bot Index
|
||||||
* [BotBlock](https://botblock.org/) - Bot Index
|
* [BotBlock](https://botblock.org/) - Bot Index
|
||||||
* [Top.gg](https://top.gg/) - Bot Index
|
* [Top.gg](https://top.gg/) - Bot Index
|
||||||
@ -168,25 +166,26 @@
|
|||||||
|
|
||||||
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit Fix](https://greasyfork.org/en/scripts/404497-reddit-fix), [Reddit Extension](https://lawrenzo.com/p/reddit-extension), [RedditEnhancer](https://github.com/joelacus/RedditEnhancer) or [RedditMod2](https://greasyfork.org/en/scripts/29724-redditmod2) - Reddit Enhancement Extensions / Scripts
|
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit Fix](https://greasyfork.org/en/scripts/404497-reddit-fix), [Reddit Extension](https://lawrenzo.com/p/reddit-extension), [RedditEnhancer](https://github.com/joelacus/RedditEnhancer) or [RedditMod2](https://greasyfork.org/en/scripts/29724-redditmod2) - Reddit Enhancement Extensions / Scripts
|
||||||
* ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old
|
* ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old
|
||||||
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
|
* [Photon](https://photon-reddit.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||||
* [Reddit Login Bypass Script](https://pastebin.com/raw/sU5tqwep) - Bypass Reddit Login
|
* [Reddit Login Bypass Script](https://pastebin.com/raw/sU5tqwep) - Bypass Reddit Login
|
||||||
* [Beleave](https://beleave.virock.org/) - Bulk Subreddit Unsub Tool
|
|
||||||
* [Reddit Comber](https://redditcomber.com/) or [Sub Notification](https://redd.it/5mz9z5) - Reddit Keyword Notifications
|
* [Reddit Comber](https://redditcomber.com/) or [Sub Notification](https://redd.it/5mz9z5) - Reddit Keyword Notifications
|
||||||
* [Unreadit](https://app.mailbrew.com/unreadit) - Reddit Newsletters
|
* [Unreadit](https://app.mailbrew.com/unreadit) - Reddit Newsletters
|
||||||
* [Reddit Shadow Ban Info](https://redd.it/1btuwel) - Check if You've been Shadowbanned
|
* [Reddit Shadow Ban Info](https://redd.it/ptrm7u) - Check if You've been Shadowbanned
|
||||||
* [Reddit Markdown Guide](https://www.reddit.com/wiki/markdown) - Learn Reddit Markdown
|
* [Reddit Markdown Guide](https://www.reddit.com/wiki/markdown) - Learn Reddit Markdown
|
||||||
* [Redbar](https://chromewebstore.google.com/detail/redbar-sidebar-for-reddit/gkclfabkdcgimggblodknofgkigbfcid) - Sidebar for Reddit
|
|
||||||
* [Reddit Preview](https://redditpreview.com/) - Preview Reddit Posts
|
* [Reddit Preview](https://redditpreview.com/) - Preview Reddit Posts
|
||||||
* [Redirect Privated](https://greasyfork.org/en/scripts/468945) - Redirect Private Pages to Cached Versions
|
* [Redirect Privated](https://greasyfork.org/en/scripts/468945) - Redirect Private Pages to Cached Versions
|
||||||
* [redditpx](https://www.redditpx.com/) or [Redditp](https://redditp.com/) - Reddit Image / Video Slideshows
|
* [Redinfinite](https://redinfinite.com/), [redditpx](https://www.redditpx.com/) or [Redditp](https://redditp.com/) - Reddit Image / Video Slideshows
|
||||||
* [RedditRaffler](https://www.redditraffler.com/) - Reddit Raffle System
|
* [RedditRaffler](https://www.redditraffler.com/) - Reddit Raffle System
|
||||||
* [RedditManager](https://redditmanager.com/) or [Saved for Reddit](https://pvik.github.io/saved-for-reddit/) - Reddit Content Managers
|
|
||||||
* [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
|
* [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
|
||||||
|
* [SubredditLog](https://gitlab.com/scallaway/SubredditLog) - Reddit Moderation Log
|
||||||
* [Reddit Emojis](https://greasyfork.org/en/scripts/443011) - Emojis for Old Reddit
|
* [Reddit Emojis](https://greasyfork.org/en/scripts/443011) - Emojis for Old Reddit
|
||||||
* [Subreddit Tabs](https://greasyfork.org/en/scripts/460086) - Subreddit Icon Tabs
|
* [Subreddit Tabs](https://greasyfork.org/en/scripts/460086) - Subreddit Icon Tabs
|
||||||
* [Reddit Comment Highlights](https://github.com/aesy/reddit-comment-highlights) - Highlight New Comments
|
* [Reddit Comment Highlights](https://github.com/aesy/reddit-comment-highlights) - Highlight New Comments
|
||||||
|
* [Reddit Spoiler Blur Remover](https://greasyfork.org/en/scripts/416091-reddit-spoiler-blur-remover) - Remove Reddit Spoiler Blur
|
||||||
|
* [3D for Reddit](https://3dforreddit.com/) - 3D Reddit Browser
|
||||||
|
* [SO Reddit](https://dutzi.github.io/so-reddit/) - Stack Overflow Style Viewer
|
||||||
* [Pholder](https://pholder.com/) - Article Style Viewer
|
* [Pholder](https://pholder.com/) - Article Style Viewer
|
||||||
* [Load Reddit Images Directly](https://github.com/nopperl/load-reddit-images-directly) - Direct Image Viewer
|
* [Load Reddit Images Directly](https://github.com/nopperl/load-reddit-images-directly) / [Chrome](https://github.com/MonsterMannen/reddit-load-images-directly-chrome) - Direct Image Viewer
|
||||||
* [SocialGrep](https://socialgrep.com/) - Reddit Statistics
|
* [SocialGrep](https://socialgrep.com/) - Reddit Statistics
|
||||||
* [When to Post](https://andreasbm.github.io/when-to-post-on-reddit/) - Best Reddit Posting Times
|
* [When to Post](https://andreasbm.github.io/when-to-post-on-reddit/) - Best Reddit Posting Times
|
||||||
* [UniversalScammerList](https://www.universalscammerlist.com/) - List of Reddit Scammers
|
* [UniversalScammerList](https://www.universalscammerlist.com/) - List of Reddit Scammers
|
||||||
@ -212,15 +211,15 @@
|
|||||||
|
|
||||||
## ▷ Reddit Alternatives
|
## ▷ Reddit Alternatives
|
||||||
|
|
||||||
* ↪️ **[Lemmy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_lemmy_tools)**
|
* ⭐ **[Lemmy](https://join-lemmy.org/)** / [Stats](https://the-federation.info/), [2](https://fedidb.org/) - Federated Reddit Alternative
|
||||||
|
* ⭐ **[Lemmy Explorer](https://lemmyverse.net/)**, [Community-Browser](https://browse.feddit.de/) or [Awesome Instances](https://github.com/maltfield/awesome-lemmy-instances) - Lemmy Instances
|
||||||
* ⭐ **[Raddle](https://raddle.me/)** / [.onion](http://c32zjeghcp5tj3kb72pltz56piei66drc63vkhn5yixiyk4cmerrjtid.onion/) - Reddit Alt
|
* ⭐ **[Raddle](https://raddle.me/)** / [.onion](http://c32zjeghcp5tj3kb72pltz56piei66drc63vkhn5yixiyk4cmerrjtid.onion/) - Reddit Alt
|
||||||
* ⭐ **[Saidit](https://saidit.net/)** - Reddit Alt
|
* ⭐ **[Saidit](https://saidit.net/)** - Reddit Alt
|
||||||
* [/r/RedditAlternatives](https://reddit.com/r/RedditAlternatives) - Find Reddit Alternatives
|
* [/r/RedditAlternatives](https://reddit.com/r/RedditAlternatives) - Find Reddit Alternatives
|
||||||
* [sub.rehab](https://sub.rehab/) - Reddit Communities on Alternative Platforms
|
* [Sqwok](https://sqwok.im/) - Reddit Alt
|
||||||
* [tildes](https://tildes.net/) - Reddit Alt
|
* [tildes](https://tildes.net/) - Reddit Alt
|
||||||
* [Upgoat](https://www.upgoat.net/) - Reddit Alt
|
* [Upgoat](https://www.upgoat.net/) - Reddit Alt
|
||||||
* [Scored](https://communities.win/) - Reddit Alt
|
* [Scored](https://communities.win/) - Reddit Alt
|
||||||
* [Ramble](https://ramble.pw/) - Reddit Alt
|
|
||||||
* [Squabblr](https://squabblr.co/) - Reddit Alt
|
* [Squabblr](https://squabblr.co/) - Reddit Alt
|
||||||
* [Discuit](https://discuit.net/) - Reddit Alt
|
* [Discuit](https://discuit.net/) - Reddit Alt
|
||||||
|
|
||||||
@ -228,19 +227,17 @@
|
|||||||
|
|
||||||
## ▷ Reddit Search
|
## ▷ Reddit Search
|
||||||
|
|
||||||
* ⭐ **[TheGigaBrain](https://thegigabrain.com/)**, [New PullPush](https://search-new.pullpush.io/) / [2](https://search.pullpush.io/), [Redditle](https://redditle.com/), [Reddit CSE](https://cse.google.com/cse?cx=016649841759798530173:rk2ezolwnw0) / [2](https://cse.google.com/cse?cx=007749065626525752968:qh5bqebwi30), [Samac](https://samac.io/), [ihsoyct](https://ihsoyct.github.io/index.html) or [Better Reddit Search](https://betterredditsearch.web.app/) - Reddit Search Engines
|
* ⭐ **[TheGigaBrain](https://thegigabrain.com/)**, [Redditle](https://redditle.com/), [Reddit CSE](https://cse.google.com/cse?cx=016649841759798530173:rk2ezolwnw0) / [2](https://cse.google.com/cse?cx=007749065626525752968:qh5bqebwi30) or [Better Reddit Search](https://betterredditsearch.web.app/) - Reddit Search Engines
|
||||||
* ⭐ **[RedditRepostSleuth](https://www.repostsleuth.com/)** - Reverse Post / Image Search
|
* ⭐ **[RedditRepostSleuth](https://www.repostsleuth.com/)** - Reverse Post / Image Search
|
||||||
* ⭐ **[Undelete](https://undelete.pullpush.io/)** - View Deleted Reddit Posts
|
* ⭐ **[Reveddit](https://www.reveddit.com/)**, [Unedit & Undelete for Reddit](https://greasyfork.org/en/scripts/407466), [Unedit](https://github.com/DenverCoder1/Unedit-for-Reddit) - View Deleted Reddit Posts
|
||||||
* [ReSavr](https://www.resavr.com/) or [Comment History](https://academictorrents.com/details/89d24ff9d5fbc1efcdaf9d7689d72b7548f699fc) - Reddit Comment Archives
|
* [ReSavr](https://www.resavr.com/) or [Comment History](https://academictorrents.com/details/89d24ff9d5fbc1efcdaf9d7689d72b7548f699fc) - Reddit Comment Archives
|
||||||
* [RSOG](https://www.rsog.org/) - Reddit Search on Google / [Userscript](https://greasyfork.org/en/scripts/462356)
|
* [Expanse](https://github.com/jc9108/expanse), [redarcs](https://the-eye.eu/redarcs/) or [Reddit Archive](https://www.redditarchive.com/) - Reddit Post Archive Tools / [Note](https://ibb.co/R9jC5bk)
|
||||||
* [Expanse](https://github.com/jc9108/expanse), [redarcs](https://the-eye.eu/redarcs/), [Rareddit](https://www.rareddit.com/) or [Reddit Archive](https://www.redditarchive.com/) - Reddit Post Archive Tools / [Note](https://ibb.co/R9jC5bk)
|
|
||||||
* [RedditMetis](https://redditmetis.com/), [Reddit-User-Analyser](https://reddit-user-analyser.netlify.app/) or [Redective](https://www.redective.com/) - Reddit Profile Information
|
* [RedditMetis](https://redditmetis.com/), [Reddit-User-Analyser](https://reddit-user-analyser.netlify.app/) or [Redective](https://www.redective.com/) - Reddit Profile Information
|
||||||
* [Reddit Comment Search](https://www.redditcommentsearch.com/) - Search Reddit Comments
|
* [Reddit Comment Search](https://www.redditcommentsearch.com/) - Search Reddit Comments
|
||||||
* [rComments](https://github.com/iampueroo/rComments) - Explore Comments / Replies without Clicking a Post
|
* [rComments](https://github.com/iampueroo/rComments) - Explore Comments / Replies without Clicking a Post
|
||||||
* [ScrollDrop](https://scrolldrop.com/) - Reddit Media Crawler
|
* [ScrollDrop](https://scrolldrop.com/) - Reddit Media Crawler
|
||||||
* [Wiki Downloader](https://github.com/michealespinola/reddit.wikidownloader) - Reddit Wiki Page Scraper
|
* [Wiki Downloader](https://github.com/michealespinola/reddit.wikidownloader) - Reddit Wiki Page Scraper
|
||||||
* [Find on Reddit](https://chromewebstore.google.com/detail/find-on-reddit/jbcdpeekakanklckgooknpbonojhjncm) - Find Discussions of the Current URL
|
* [Find on Reddit](https://chromewebstore.google.com/detail/find-on-reddit/jbcdpeekakanklckgooknpbonojhjncm) - Find Discussions of the Current URL
|
||||||
* [PullPush](https://pullpush.io/) - Reddit Content API / [Discord](https://discord.com/invite/8hw88WMHFw)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -248,7 +245,7 @@
|
|||||||
|
|
||||||
* 🌐 **[/r/ListOfSubreddits](https://www.reddit.com/r/ListOfSubreddits/)** - Subreddits Index
|
* 🌐 **[/r/ListOfSubreddits](https://www.reddit.com/r/ListOfSubreddits/)** - Subreddits Index
|
||||||
* ↪️ **[Multireddit Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multireddits)** or [/r/multihub](https://www.reddit.com/r/multihub/top/?sort=top&t=all)
|
* ↪️ **[Multireddit Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multireddits)** or [/r/multihub](https://www.reddit.com/r/multihub/top/?sort=top&t=all)
|
||||||
* [FindAReddit](https://www.findareddit.com/) - Get Subreddit Suggestions / [Subreddit](https://www.reddit.com/r/findareddit/)
|
* [/r/findareddit](https://www.reddit.com/r/findareddit/) - Get Subreddit Suggestions
|
||||||
* [Subreddit Calculator](https://trevor.shinyapps.io/subalgebra/) or [redsim](https://anvaka.github.io/redsim/) - Find Similar Subreddits
|
* [Subreddit Calculator](https://trevor.shinyapps.io/subalgebra/) or [redsim](https://anvaka.github.io/redsim/) - Find Similar Subreddits
|
||||||
* [sayit](https://anvaka.github.io/sayit/), [Vizit](https://redditstuff.github.io/sna/vizit/), [subreddit_map](https://www.jacobsilterra.com/subreddit_map/network/index.html) or [SubredditMentionsGraph](https://dmarx.github.io/SubredditMentionsGraph/network/) - Visualize Related Subreddits
|
* [sayit](https://anvaka.github.io/sayit/), [Vizit](https://redditstuff.github.io/sna/vizit/), [subreddit_map](https://www.jacobsilterra.com/subreddit_map/network/index.html) or [SubredditMentionsGraph](https://dmarx.github.io/SubredditMentionsGraph/network/) - Visualize Related Subreddits
|
||||||
* [Map of Reddit](https://anvaka.github.io/map-of-reddit) or [Reddit Map](https://redditmap.social/) - Subreddit Maps
|
* [Map of Reddit](https://anvaka.github.io/map-of-reddit) or [Reddit Map](https://redditmap.social/) - Subreddit Maps
|
||||||
@ -261,9 +258,11 @@
|
|||||||
|
|
||||||
# ► Telegram Tools
|
# ► Telegram Tools
|
||||||
|
|
||||||
* 🌐 **[TDirectory](https://tdirectory.me/)**, [Telemetr](https://telemetr.io/en), [Telegram Channels](https://telegramchannels.me/), [Awesome Telegram](https://github.com/ebertti/awesome-telegram) - Telegram Channel Indexes
|
* 🌐 **[TDirectory](https://tdirectory.me/)**, [Telemetr](https://telemetr.io/en), [Telegram Channels](https://telegramchannels.me/), [Awesome-Telegram](https://github.com/ebertti/awesome-telegram) or [Telegramic](https://telegramic.org/) - Telegram Channel Indexes
|
||||||
* 🌐 **[ComBot Groups](https://combot.org/top/telegram/groups)** - Top Telegram Groups Index
|
* 🌐 **[ComBot Groups](https://combot.org/top/telegram/groups)** - Top Telegram Groups Index
|
||||||
* [Telegago](https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0), [2](https://cse.google.com/cse?cx=006249643689853114236:a3iibfpwexa), [Lyzem](https://lyzem.com/), [xTea](https://xtea.io/ts_en.html) or [TG-ME](https://www.tg-me.com/) - Telegram CSE's
|
* [Telegago](https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0), [2](https://cse.google.com/cse?cx=006249643689853114236:a3iibfpwexa), [Lyzem](https://lyzem.com/), [xTea](https://xtea.io/ts_en.html) or [TG-ME](https://www.tg-me.com/) - Telegram CSE's
|
||||||
|
* [GetMediaBot](https://t.me/getmediabot) - Media Download Bot
|
||||||
|
* [MediaDownBot](https://t.me/mediadownbot) or [DownloadsMasterBot](https://t.me/DownloadsMasterBot) - Social Media Downloader
|
||||||
* [SaveRestrictedContentBot](https://github.com/vasusen-code/SaveRestrictedContentBot) - Save Restricted Content
|
* [SaveRestrictedContentBot](https://github.com/vasusen-code/SaveRestrictedContentBot) - Save Restricted Content
|
||||||
* [Telesco.pe](https://telesco.pe/) - Telegram Round Video Recorder
|
* [Telesco.pe](https://telesco.pe/) - Telegram Round Video Recorder
|
||||||
* [Video Stream](https://github.com/lntechnical2/videostream) - Telegram Video Player
|
* [Video Stream](https://github.com/lntechnical2/videostream) - Telegram Video Player
|
||||||
@ -273,18 +272,15 @@
|
|||||||
* [CloneChat](https://github.com/apenasrr/clonechat) - Clone Telegram Chats
|
* [CloneChat](https://github.com/apenasrr/clonechat) - Clone Telegram Chats
|
||||||
* [tasra](https://the-eye.eu/tasra/) - Telegram Channel Archive
|
* [tasra](https://the-eye.eu/tasra/) - Telegram Channel Archive
|
||||||
* [Telegram Email](https://t.me/etlgr_bot) - Send / Receive Emails via Telegram
|
* [Telegram Email](https://t.me/etlgr_bot) - Send / Receive Emails via Telegram
|
||||||
* [CHPic](https://chpic.su/),, [Stickers Cloud](https://stickers.cloud/en), [ComBot Stickers](https://combot.org/telegram/stickers) or [moe_sticker_bot](https://t.me/moe_sticker_bot) - Telegram Sticker / Emojis
|
* [Stickers Cloud](https://stickers.cloud/en), [ComBot Stickers](https://combot.org/telegram/stickers) or [moe_sticker_bot](https://t.me/moe_sticker_bot) - Sticker Packs
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Telegram Clients
|
## ▷ Telegram Clients
|
||||||
|
|
||||||
* ⭐ **[web.telegram](https://web.telegram.org/)** / [2](https://webk.telegram.org/) / [3](https://weba.telegram.org/) - Web Client
|
* ⭐ **[web.telegram](https://web.telegram.org/)** / [2](https://webk.telegram.org/) / [3](https://weba.telegram.org/)
|
||||||
* ⭐ **[Unigram](https://github.com/UnigramDev/Unigram)** - Desktop Client
|
* ⭐ **[Unigram](https://github.com/UnigramDev/Unigram)**, [VideoGram](https://vidogram.org/) or [TDesktop](https://github.com/Forkgram/tdesktop) / [x64](https://github.com/TDesktop-x64/tdesktop) - Desktop Clients
|
||||||
* [TDesktop](https://github.com/Forkgram/tdesktop) - Desktop Client / [x64](https://github.com/TDesktop-x64/tdesktop) / [Telegram](https://t.me/tg_x64)
|
* ⭐ **[tg](https://github.com/paul-nameless/tg)** - Terminal Client
|
||||||
* [VideoGram](https://vidogram.org/) - Desktop Client
|
|
||||||
* [AyuGram](https://github.com/AyuGram/AyuGramDesktop) - Desktop Client
|
|
||||||
* [Materialgram](https://github.com/kukuruzka165/materialgram) - Desktop Client
|
|
||||||
* [Pyrogram](https://docs.pyrogram.org/) / [Session Strings](https://t.me/SessionStringGeneratorZBot) - Telegram API Client
|
* [Pyrogram](https://docs.pyrogram.org/) / [Session Strings](https://t.me/SessionStringGeneratorZBot) - Telegram API Client
|
||||||
* [Telega.el](https://github.com/zevlg/telega.el) - Telegram Emacs Client
|
* [Telega.el](https://github.com/zevlg/telega.el) - Telegram Emacs Client
|
||||||
|
|
||||||
@ -292,24 +288,23 @@
|
|||||||
|
|
||||||
## ▷ Telegram File Tools
|
## ▷ Telegram File Tools
|
||||||
|
|
||||||
* [MediaDownBot](https://t.me/mediadownbot), [WZML-X](https://github.com/SilentDemonSD/WZML-X), [Telegram Media Downloader](https://greasyfork.org/en/scripts/446342) or [DownloadsMasterBot](https://t.me/DownloadsMasterBot) - Media Downloaders
|
* [teldrive](https://github.com/divyam234/teldrive), [File-Sharing-Bot](https://github.com/CodeXBotz/File-Sharing-Bot), [TelegramCloud](https://github.com/iw4p/telegram-cloud), [easy_share_bot](https://t.me/easy_share_bot) or [UploadBot](https://t.me/uploadbot) - Upload Files to Telegram
|
||||||
* [teldrive](https://github.com/divyam234/teldrive), [File-Sharing-Bot](https://github.com/CodeXBotz/File-Sharing-Bot) / [Telegram](https://t.me/CodeXBotz), [TelegramCloud](https://github.com/iw4p/telegram-cloud), [easy_share_bot](https://t.me/easy_share_bot) or [UploadBot](https://t.me/uploadbot) - Upload Files to Telegram
|
* [GdriveXbot](https://t.me/TheGdriveXBot), [google-drive-telegram-bot](https://github.com/viperadnan-git/) or [Python Aria Mirror Bot](https://github.com/lzzy12/python-aria-mirror-bot) - GDrive Upload Bots
|
||||||
* [GdriveXbot](https://t.me/TheGdriveXBot), [google-drive-telegram-bot](https://github.com/viperadnan-git/) or [Python Aria Mirror Bot](https://github.com/lzzy12/python-aria-mirror-bot) / [Telegram](https://t.me/pythonmirrorsupport) - GDrive Upload Bots
|
|
||||||
* [DrClonerBot](https://t.me/DrClonerBot) - GDrive Clone Bot
|
* [DrClonerBot](https://t.me/DrClonerBot) - GDrive Clone Bot
|
||||||
* [SearchX](https://github.com/iamLiquidX/SearchX) - GDrive Search Bot
|
* [SearchX](https://github.com/iamLiquidX/SearchX) - GDrive Search Bot
|
||||||
* [MEGA Uploader X](https://t.me/MegaUploadXbot) or [Mega.nz-Bot](https://github.com/Itz-fork/Mega.nz-Bot) - Remote Mega File Upload Bot
|
* [MEGA Uploader X](https://t.me/MegaUploadXbot) or [Mega.nz-Bot](https://github.com/Itz-fork/Mega.nz-Bot) - Remote Mega File Upload Bot
|
||||||
* [OneDrive X](https://t.me/onedrivexbot) - Remote OneDrive File Upload Bot
|
* [OneDrive X](https://t.me/onedrivexbot) - Remote OneDrive File Upload Bot
|
||||||
* [AIO Uploader](https://t.me/aiouploaderbot), [LinkForFilebot](https://t.me/LinkForFilebot) or [MultiUpload-Bot](https://github.com/oVoIndia/MultiUpload-Bot) - Telegram to File Host Upload Bot
|
* [AIO Uploader](https://t.me/aiouploaderbot), [LinkForFilebot](https://t.me/LinkForFilebot) or [MultiUpload-Bot](https://github.com/oVoIndia/MultiUpload-Bot) - Telegram to File Host Upload Bot
|
||||||
* [telegram-download-daemon](https://github.com/alfem/telegram-download-daemon/) - Download Large Telegram Files
|
|
||||||
* [convrt_bot](https://t.me/convrt_bot), [FileConvertBot](https://t.me/FileConvertBot), [newfileconverterbot](https://t.me/newfileconverterbot), [SmartConverter_bot](https://t.me/SmartConverter_bot), [cloud_convert_bot](https://t.me/cloud_convert_bot), [wololopdfbot](https://t.me/wololopdfbot), [pdfbot](https://t.me/pdfbot) or [Gpdfbot](https://t.me/Gpdfbot) - File Converters
|
* [convrt_bot](https://t.me/convrt_bot), [FileConvertBot](https://t.me/FileConvertBot), [newfileconverterbot](https://t.me/newfileconverterbot), [SmartConverter_bot](https://t.me/SmartConverter_bot), [cloud_convert_bot](https://t.me/cloud_convert_bot), [wololopdfbot](https://t.me/wololopdfbot), [pdfbot](https://t.me/pdfbot) or [Gpdfbot](https://t.me/Gpdfbot) - File Converters
|
||||||
* [ILovePDF](https://github.com/nabilanavab/ilovepdf) - Telegram File to PDF Converter
|
* [ILovePDF](https://github.com/nabilanavab/ilovepdf) - Telegram File to PDF Converter
|
||||||
* [Unzip Bot](https://t.me/unzip_edm115bot) / [Github](https://github.com/EDM115/unzip-bot) - File Extractor / Unzipper
|
* [Unzip Bot](https://github.com/EDM115/unzip-bot) - File Extractor / Unzipper
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Telegram Bots
|
## ▷ Telegram Bots
|
||||||
|
|
||||||
* 🌐 **[BotsArchive](https://t.me/BotsArchive)**, [botlist](https://t.me/botlist), [TelegramBotsList](https://danyspin97.github.io/TelegramBotsList/), [botostore](https://botostore.com/) or [borodutch.eth](https://borodutch.com/)- Telegram Bots Indexes
|
* 🌐 **[BotsArchive](https://t.me/BotsArchive), [botlist](https://t.me/botlist), [TelegramBotsList](https://danyspin97.github.io/TelegramBotsList/), [botostore](https://botostore.com/) or [borodutch.eth](https://borodutch.com/)** - Telegram Bots Indexes
|
||||||
|
* ⭐ **[ChatGPT Telegram Bot](https://github.com/karfly/chatgpt_telegram_bot)** / [2](https://github.com/n3d1117/chatgpt-telegram-bot) / [3](https://github.com/watscho/chat-gpt-telegram-bot) or [chatgpt-serverless](https://github.com/franalgaba/chatgpt-telegram-bot-serverless) - ChatGPT Telegram Bots
|
||||||
* [TG Bot](https://t.me/drlinkbot) - Ad Link Bypass Bot / [GitHub](https://github.com/TheCaduceus/Link-Bypasser-Bot)
|
* [TG Bot](https://t.me/drlinkbot) - Ad Link Bypass Bot / [GitHub](https://github.com/TheCaduceus/Link-Bypasser-Bot)
|
||||||
* [Now Playing](https://t.me/nowplaybot) - Now Playing Audio Bot
|
* [Now Playing](https://t.me/nowplaybot) - Now Playing Audio Bot
|
||||||
* [ongaku](https://github.com/likeadragonmaid/Ongaku) - Display Playing Android Audio in Status
|
* [ongaku](https://github.com/likeadragonmaid/Ongaku) - Display Playing Android Audio in Status
|
||||||
@ -334,147 +329,113 @@
|
|||||||
|
|
||||||
# ► YouTube Tools
|
# ► YouTube Tools
|
||||||
|
|
||||||
* 🌐 **[YT Large](https://ytlarge.com/)** - YouTube Tools
|
|
||||||
* ⭐ **[PocketTube](https://pockettube.io/)** or [Kadium](https://kadium.kasper.space/) - Subscription Managers
|
* ⭐ **[PocketTube](https://pockettube.io/)** or [Kadium](https://kadium.kasper.space/) - Subscription Managers
|
||||||
* [shorts-deflector](https://github.com/attituding/shorts-deflector), [Remove YouTube Shorts](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-shorts/), [ublock-hide-yt-shorts](https://github.com/gijsdev/ublock-hide-yt-shorts) or [youtube-shorts-block](https://github.com/doma-itachi/Youtube-shorts-block) - Hide YouTube Shorts
|
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
||||||
* [YouTube_Subs_Bot](https://t.me/youtube_subs_bot) - Sub to Channels without Account
|
* ⭐ **[Fast Forward YouTube Shorts](https://greasyfork.org/en/scripts/466438)** - Add Skip Keys to Shorts
|
||||||
* [YouTube-Subscriptions-RS](https://github.com/jeb5/YouTube-Subscriptions-RSS) - Export Subscriptions to RSS Feed
|
* [youtube-shorts](https://letsblock.it/filters/youtube-shorts), [shorts-deflector](https://github.com/attituding/shorts-deflector), [Remove YouTube Shorts](https://github.com/raven0230/Remove-Youtube-Shorts), [ublock-hide-yt-shorts](https://github.com/gijsdev/ublock-hide-yt-shorts) or [youtube-shorts-block](https://github.com/doma-itachi/Youtube-shorts-block) - Hide YouTube Shorts
|
||||||
* [YouTube Subscription History](https://xxluke.de/subscription-history/) - Subscription History Tracker
|
* [uBO-bypass-yt](https://drhyperion451.github.io/does-uBO-bypass-yt/) - Check if uBlock Filters are Bypassing YouTube Anti-Adblock
|
||||||
* [FreshTube](https://porjo.github.io/freshtube/) - Display Latest Videos from Subscriptions
|
* [YouTube_Subs_Bot](https://t.me/youtube_subs_bot) - Sub to Channels Without Account
|
||||||
* [YouTube Spammer Purge](https://github.com/ThioJoe/YT-Spammer-Purge) - Delete All YouTube Spam Comments / [Domain List](https://github.com/ThioJoe/YT-Spam-Lists)
|
* [YouTube Spammer Purge](https://github.com/ThioJoe/YT-Spammer-Purge) - Delete All YouTube Spam Comments / [Domain List](https://github.com/ThioJoe/YT-Spam-Lists)
|
||||||
* [Age Restriction Bypass](https://github.com/zerodytrash/Simple-YouTube-Age-Restriction-Bypass) / [2](https://greasyfork.org/en/scripts/423851-simple-youtube-age-restriction-bypass) - Bypass YouTube Age Restrictions
|
* [Age Restriction Bypass](https://github.com/zerodytrash/Simple-YouTube-Age-Restriction-Bypass) / [2](https://greasyfork.org/en/scripts/423851-simple-youtube-age-restriction-bypass) - Bypass YouTube Age Restrictions
|
||||||
* [BlockTube](https://github.com/amitbl/blocktube) - YouTube Content Blocker
|
* [BlockTube](https://github.com/amitbl/blocktube) - YouTube Content Blocker
|
||||||
* [Playboard](https://playboard.co) or [ViewStats](https://www.viewstats.com/) - YouTube Channel Stats
|
* [TubeBuddy](https://www.tubebuddy.com/) - YouTube Channel Tools
|
||||||
|
* [Playboard](https://playboard.co) - YouTube Channel Stats
|
||||||
* [YouTube Watchmarker](https://github.com/sniklaus/youtube-watchmarker) - Fade Thumbnails of Watched Videos
|
* [YouTube Watchmarker](https://github.com/sniklaus/youtube-watchmarker) - Fade Thumbnails of Watched Videos
|
||||||
|
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://pastebin.com/Jd1DJW8w)
|
||||||
* [vidIQ](https://chromewebstore.google.com/detail/vidiq-vision-for-youtube/pachckjkecffpdphbpmfolblodfkgbhl) - YouTube Viewership Data
|
* [vidIQ](https://chromewebstore.google.com/detail/vidiq-vision-for-youtube/pachckjkecffpdphbpmfolblodfkgbhl) - YouTube Viewership Data
|
||||||
* [Video Recap](https://videorecap.viewodyssey.com/) - YouTube Year in Review Stats
|
* [Video Recap](https://videorecap.viewodyssey.com/) - YouTube Year in Review Stats
|
||||||
|
* [Campfire](https://campfire.gg), [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties
|
||||||
* [yt2pod](https://github.com/frou/yt2pod) - Create Podcasts from YouTube Channels
|
* [yt2pod](https://github.com/frou/yt2pod) - Create Podcasts from YouTube Channels
|
||||||
|
* [YouTube-Subscriptions-RS](https://github.com/jeb5/YouTube-Subscriptions-RSS) - Export Subscriptions to RSS Feed
|
||||||
|
* [Channel RSS](https://pastebin.com/hqkNuMSx) - Add Individual Channels to RSS Feed
|
||||||
* [SpeechChat](https://speechchat.com/) - Text to Speech Client
|
* [SpeechChat](https://speechchat.com/) - Text to Speech Client
|
||||||
* [AnnotationsRestored](https://github.com/isaackd/AnnotationsRestored) or [YouTube Annotations](https://archive.org/details/youtubeannotations) - Restore YouTube Annotations
|
* [AnnotationsRestored](https://github.com/isaackd/AnnotationsRestored) or [YouTube Annotations](https://archive.org/details/youtubeannotations) - Restore YouTube Annotations
|
||||||
* [YouTube Metadata](https://mattw.io/youtube-metadata/) - YouTube Video Metadata Viewer
|
* [YouTube Metadata](https://mattw.io/youtube-metadata/) - YouTube Video Metadata Viewer
|
||||||
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check YouTube Upload Date
|
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check YouTube Upload Date
|
||||||
* [TubeSync](https://github.com/meeb/tubesync) - Sync YouTube Channels / Playlists to a Media Server
|
* [TubeSync](https://github.com/meeb/tubesync) - Sync YouTube Channels / Playlists to a Media Server
|
||||||
* [Playlist Creator for YouTube](https://chromewebstore.google.com/detail/drag-drop-playlist-creato/aklnkkbopjjemjlkffhamaepagbmblbg) or [Playlists at YouTube](https://playlists.at/youtube/) - Playlists Creators
|
* [Playlist Creator for YouTube](https://chromewebstore.google.com/detail/drag-drop-playlist-creato/aklnkkbopjjemjlkffhamaepagbmblbg) or [Playlists at YouTube](https://playlists.at/youtube/) - Playlists Creators
|
||||||
* [Anon Playlists](https://neverducky.github.io/anonymous-youtube-playlists/) - Create Anon Playlists
|
|
||||||
* [ytcc](https://github.com/woefe/ytcc) or [Multiselect](https://addons.mozilla.org/en-US/firefox/addon/multiselect-for-youtube/), [2](https://chromewebstore.google.com/detail/gpgbiinpmelaihndlegbgfkmnpofgfei) - Playlist Managers
|
* [ytcc](https://github.com/woefe/ytcc) or [Multiselect](https://addons.mozilla.org/en-US/firefox/addon/multiselect-for-youtube/), [2](https://chromewebstore.google.com/detail/gpgbiinpmelaihndlegbgfkmnpofgfei) - Playlist Managers
|
||||||
* [YTPlaylistSorter](https://ytplaylistsorter.carterrj.co.uk/index.php) - Sorts YT Playlists
|
|
||||||
* [playlist.tools](https://playlist.tools/) - YouTube Playlist Reverser
|
* [playlist.tools](https://playlist.tools/) - YouTube Playlist Reverser
|
||||||
* [Playlist Randomizer](https://playlist-randomizer.com/) - YouTube Playlist Randomizer
|
* [Playlist Randomizer](https://playlist-randomizer.com/) - YouTube Playlist Randomizer
|
||||||
* [YT Playlist Length](https://ytplaylist-len.sharats.dev/) - Playlist Length Checker
|
* [YT Playlist Length](https://ytplaylist-len.sharats.dev/) - Playlist Length Checker
|
||||||
* [YouTube Region Checker](https://polsy.org.uk/stuff/ytrestrict.cgi) - YouTube Region Restrictions Check
|
* [YouTube Region Checker](https://polsy.org.uk/stuff/ytrestrict.cgi) - YouTube Region Restrictions Check
|
||||||
|
* [YouTube Web Tweaks](https://greasyfork.org/en/scripts/447802) - Speed Up YouTube
|
||||||
|
* [YouTube CPU Tamer](https://greasyfork.org/en/scripts/431573) or [Unhold YouTube](https://greasyfork.org/en/scripts/457205) - YouTube CPU Optimization
|
||||||
* [FREEZE](https://chromewebstore.google.com/detail/freeze/bejbbhcoefpmeejcnknjfepoocehopii) - Control YouTube via Webcam
|
* [FREEZE](https://chromewebstore.google.com/detail/freeze/bejbbhcoefpmeejcnknjfepoocehopii) - Control YouTube via Webcam
|
||||||
* [RapidTags](https://www.rapidtags.io/) - YouTube Tag Generators
|
* [RapidTags](https://www.rapidtags.io/) - YouTube Tag Generators
|
||||||
* [songs-to-youtube](https://github.com/7x11x13/songs-to-youtube) - Upload Audio to YouTube Automatically
|
* [songs-to-youtube](https://github.com/7x11x13/songs-to-youtube) - Upload Audio to YouTube Automatically
|
||||||
* [YouBit](https://github.com/MeViMo/youbit) - Use YouTube as File Host
|
* [YouBit](https://github.com/MeViMo/youbit) - Use YouTube as File Host
|
||||||
* [ytcropper](https://ytcropper.com/), [yt_clipper](https://github.com/exwm/yt_clipper), [Apps Golem](https://appsgolem.com/en/cut-youtube-video) or [YTCutter.com](https://ytcutter.com/) - Crop YouTube Videos / Create Clips
|
* [Video Speed Controller](https://github.com/igrigorik/videospeed) or [TimerHooker](https://timer.palerock.cn/en/) - Control Speed of YouTube Videos
|
||||||
|
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
||||||
|
* [ytcropper](https://ytcropper.com/), [yt_clipper](https://github.com/exwm/yt_clipper) or [YTCutter.com](https://ytcutter.com/) - Crop YouTube Videos / Create Clips
|
||||||
|
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate YouTube Videos
|
||||||
|
* [Vid Repeat](https://vidrepeat.com/) - Loop YouTube Videos
|
||||||
|
* [TwitchTheater](https://twitchtheater.tv/), [VidGrid](https://vidgrid.tk.gg/), [YouTube Multiplier](https://www.youtubemultiplier.com/) or [ViewSync](https://viewsync.net/) - Watch Multiple YouTube Videos
|
||||||
|
* [Anilyzer](https://anilyzer.com/) - Watch YouTube Videos in Slow Motion / Frame by Frame
|
||||||
* [YTStamps](https://ytstamps.netlify.app/) - Create Custom Start / End Times
|
* [YTStamps](https://ytstamps.netlify.app/) - Create Custom Start / End Times
|
||||||
* [Solidpoint](https://solidpoint.ai/), [Glasp](https://glasp.co/youtube-summary), [Glarity](https://glarity.app/), [Quickvid](https://quickvid.vercel.app/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/)[VideoHighlight](https://videohighlight.com/), [Clipnote](https://clipnote.ai/) or [Summarize](https://summarize.tech/)- Summarize YouTube Videos
|
* [Solidpoint](https://solidpoint.ai/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/) or [VideoHighlight](https://videohighlight.com/) - Summarize YouTube Videos
|
||||||
* [Stepify](https://stepify.tech/) - Get Step-By-Step Tutorial of YT Video
|
|
||||||
* [Recover My Video](https://www.recovermy.video/) - Recover Titles of Deleted / Private YouTube Videos
|
* [Recover My Video](https://www.recovermy.video/) - Recover Titles of Deleted / Private YouTube Videos
|
||||||
* [Filmot Title Restorer](https://greasyfork.org/en/scripts/430202-filmot-title-restorer) - Restore Deleted YouTube Video Titles in Playlists
|
* [Filmot Title Restorer](https://greasyfork.org/en/scripts/430202-filmot-title-restorer) - Restore Deleted YouTube Video Titles in Playlists
|
||||||
* [Kament](https://kament.io/) - Add Comments on Comment Disabled Videos
|
* [Kament](https://kament.io/) - Add Comments on Comment Disabled Videos
|
||||||
* [Loadtup](https://loadtup.com/), [FrogBase](https://github.com/hayabhay/frogbase) or [Whisper](https://huggingface.co/spaces/BatuhanYilmaz/Whisper-Auto-Subtitled-Video-Generator) - YouTube Video Transcribers
|
|
||||||
* [YT Sub Downloader](https://greasyfork.org/en/scripts/5368) or [YouTube_subtitle_downloader](https://t.me/youtube_subtitle_downloader_bot) - Download Subs from YouTube Videos
|
|
||||||
* [amara](https://amara.org/en/) or [SubtitlesForYoutube](https://github.com/yashagarwal1411/SubtitlesForYoutube) - Add Subs to YouTube Videos / [Edge](https://microsoftedge.microsoft.com/addons/detail/subtitles-for-youtube/gfjcoflghpdkddjnpegonjhnbngeocfi)
|
|
||||||
* [YouTube Subtitle Position](https://addons.mozilla.org/en-US/firefox/addon/youtube-subtitle-position/) - Change Position of YouTube Subtitles
|
|
||||||
* [YTSubConverter](https://github.com/arcusmaximus/YTSubConverter) - Styled YouTube Subtitles
|
|
||||||
* [ChatReplay](https://chatreplay.stream/) - YouTube Live Stream Chat Replay
|
* [ChatReplay](https://chatreplay.stream/) - YouTube Live Stream Chat Replay
|
||||||
* [LiveTL](https://kentonishi.com/LiveTL/) - YouTube Live Stream Translator
|
* [LiveTL](https://kentonishi.com/LiveTL/) - YouTube Live Stream Translator
|
||||||
* [YouTubeLiveChatFlusher](https://github.com/ys-j/YoutubeLiveChatFlusher) - YouTube Live Bullet Chatting (Danmaku)
|
* [YouTubeLiveChatFlusher](https://github.com/ys-j/YoutubeLiveChatFlusher) - YouTube Live Bullet Chatting (Danmaku)
|
||||||
* [Fast Chat](https://greasyfork.org/en/scripts/469878) - Chat Optimization Extension
|
|
||||||
* [YTArchive](https://github.com/Kethsar/ytarchive) - YouTube Livestream Recorder
|
* [YTArchive](https://github.com/Kethsar/ytarchive) - YouTube Livestream Recorder
|
||||||
* [YouTube Livestream Theatre](https://gitlab.com/-/snippets/2099898) - Twitch-style Theater Mode for YouTube Live
|
* [YouTube Livestream Theatre](https://gitlab.com/-/snippets/2099898) - Twitch-style Theater Mode for YouTube Live
|
||||||
* [fadblock](https://github.com/0x48piraj/fadblock) or [Disable YT Video Ads](https://greasyfork.org/en/scripts/32626) - YouTube Adblockers
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Players / Frontends
|
|
||||||
|
|
||||||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
|
||||||
* ⭐ **[Poke](https://poketube.fun/)** - YouTube Frontend / [Discord](https://discord.gg/Kqdn8CHacP)
|
|
||||||
* ⭐ **[FreeTube](https://freetubeapp.io/)** - YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
|
||||||
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends
|
|
||||||
* ⭐ **Invidious Tools** - [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
|
||||||
* ⭐ **[PKGA](https://greasyfork.org/en/scripts/442089)** or [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Cinema Mode
|
|
||||||
* ⭐ **[Fast Forward YouTube Shorts](https://greasyfork.org/en/scripts/466438)** - Add Skip Keys to Shorts
|
|
||||||
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
|
|
||||||
* [Campfire](https://campfire.gg), [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties
|
|
||||||
* [TwitchTheater](https://twitchtheater.tv/), [VidGrid](https://vidgrid.tk.gg/), [YouTube Multiplier](https://www.youtubemultiplier.com/) or [ViewSync](https://viewsync.net/) - Watch Multiple YouTube Videos
|
|
||||||
* [CloudTube](https://tube.cadence.moe/) - YouTube Frontend
|
|
||||||
* [Youtube-Clone-KMP](https://github.com/KhubaibKhan4/Youtube-Clone-KMP) - YouTube Frontend
|
|
||||||
* [ViewTube](https://viewtube.wiki/) - YouTube Frontend
|
|
||||||
* [Piped](https://github.com/TeamPiped/Piped) / [2](https://piped.kavin.rocks/) / [3](https://piped-material.১.net/) - YouTube Frontend
|
|
||||||
* [PSTube](https://github.com/prateekmedia/pstube) - YouTube Frontend
|
|
||||||
* [Youtube-local](https://github.com/user234683/youtube-local) or [yt-local](https://git.sr.ht/~heckyel/yt-local) - YouTube Frontend
|
|
||||||
* [YouT-ube](https://www.yout-ube.com/) - YouTube Frontend
|
|
||||||
* [yt.d0.cx](https://yt.d0.cx/) - YouTube Frontend
|
|
||||||
* [Ytfzf](https://github.com/pystardust/ytfzf) or [YewTube](https://github.com/mps-youtube/yewtube) - Terminal YouTube Players
|
|
||||||
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://pastebin.com/Jd1DJW8w)
|
|
||||||
* [Looptube](https://www.looptube.xyz/) - Loop YouTube Videos / Segments
|
|
||||||
* [Video Speed Controller](https://github.com/igrigorik/videospeed), [YouTube Web Tweaks](https://greasyfork.org/en/scripts/447802) or [TimerHooker](https://timer.palerock.cn/en/) - Control Speed of YouTube Videos
|
|
||||||
* [Anilyzer](https://anilyzer.com/) - Watch YouTube Videos in Slow Motion / Frame by Frame
|
|
||||||
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
|
||||||
* [YourCodecs](https://github.com/undecV/YourCodecs) - Enable / Disable Player Codecs
|
|
||||||
* [YT CPU Tamer](https://greasyfork.org/en/scripts/431573), [YT JS Tamer](https://greasyfork.org/en/scripts/473972) or [Unhold YouTube](https://greasyfork.org/en/scripts/457205) - YouTube CPU Optimization
|
|
||||||
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate YouTube Videos
|
|
||||||
* [StretchSite](https://www.stretch.site/) or [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Custom YouTube Aspect Ratio
|
|
||||||
* [YouTube: Audio Only](https://greasyfork.org/en/scripts/484611) or [Audio Only YouTube](https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog) - Audio Only YouTube
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ YouTube Downloaders
|
## ▷ YouTube Downloaders
|
||||||
|
|
||||||
* 🌐 **[YT-DL GUI Index](https://www.reddit.com/r/youtubedl/wiki/info-guis)** - List of YT-DL GUIs
|
* 🌐 **[YouTube-DL Scripts](https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection)** - YouTube Download Scripts Index
|
||||||
* ↪️ **[Multi-Site Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
* ↪️ **[Multi-Site Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
||||||
* ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** - YouTube Downloader / [Discord](https://discord.gg/H5MNcFW63r) / [Commands](https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection)
|
* ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** or [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - YouTube Downloader / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [2](https://github.com/StefanLobbenmeier/youtube-dl-gui) / [GUI Index](https://www.reddit.com/r/youtubedl/wiki/info-guis)
|
||||||
* ⭐ **[Stacher](https://stacher.io/)** - YT-DL GUI
|
* [YouTube Qualities Size](https://greasyfork.org/en/scripts/404953-youtube-qualities-size) - Show YouTube File Sizes
|
||||||
* ⭐ **[Y232](https://y232.live/)** - YT-DL WebUI
|
* [totalsize](https://pypi.org/project/totalsize/) - Calculate Size of All Videos in a Playlist
|
||||||
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) - YT-DL GUI / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer)
|
|
||||||
* [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - YT-DL GUI
|
|
||||||
* [Parabolic](https://github.com/NickvisionApps/Parabolic) - YT-DL GUI
|
|
||||||
* [Gropple](https://github.com/tardisx/gropple) - YT-DL GUI
|
|
||||||
* [Tartube](https://tartube.sourceforge.io/) - YT-DL GUI
|
|
||||||
* [media-downloader](https://github.com/mhogomchungu/media-downloader) - YT-DL GUI
|
|
||||||
* [ezytdl](https://github.com/sylviiu/ezytdl) - YT-DL GUI
|
|
||||||
* [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface) - YT-DL GUI
|
|
||||||
* [Vividl](https://github.com/Bluegrams/Vividl) - YT-DL GUI
|
|
||||||
* [youtube-dl-gui](https://github.com/oleksis/youtube-dl-gui), [2](https://github.com/StefanLobbenmeier/youtube-dl-gui) - YT-DL GUI
|
|
||||||
* [Videomass](https://jeanslack.github.io/Videomass/) - YT-DL / FFmpeg GUI
|
|
||||||
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - YT-DL GUI
|
|
||||||
* [ytDownloader](https://ytdn.netlify.app/) - YT-DL GUI
|
|
||||||
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - WPF YT-DL GUI
|
|
||||||
* [metube](https://github.com/alexta69/metube) or [yt-dlp-web-ui](https://github.com/marcopeocchi/yt-dlp-web-ui) - Self-Hosted YT-DL WebUIs
|
|
||||||
* [Poke](https://poketube.fun/download) - YouTube Downloader / [Discord](https://discord.gg/Kqdn8CHacP)
|
|
||||||
* [YoutubeDL-Material](https://github.com/Tzahi12345/YoutubeDL-Material) - YouTube Downloader
|
* [YoutubeDL-Material](https://github.com/Tzahi12345/YoutubeDL-Material) - YouTube Downloader
|
||||||
* [YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader) - YouTube Downloader
|
* [YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader) - YouTube Downloader
|
||||||
* [YouTubePlaylist](https://youtubeplaylist.cc/) - Playlist Downloader
|
* [YouTubePlaylist](https://youtubeplaylist.cc/) - Playlist Downloader
|
||||||
* [YouTube Qualities Size](https://greasyfork.org/en/scripts/404953-youtube-qualities-size) - Show YouTube File Sizes
|
* [metube](https://github.com/alexta69/metube), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface) or [yt-dlp-web-ui](https://github.com/marcopeocchi/yt-dlp-web-ui) - YT-DL Web UIs
|
||||||
* [totalsize](https://pypi.org/project/totalsize/) - Calculate Size of All Videos in a Playlist
|
* [Gropple](https://github.com/tardisx/gropple), [Tartube](https://tartube.sourceforge.io/), [media-downloader](https://github.com/mhogomchungu/media-downloader), [stacher](https://stacher.io/) or [youtube-dl-gui](https://github.com/oleksis/youtube-dl-gui) - YT-DL GUIs
|
||||||
|
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - WPF YT-DL GUI
|
||||||
|
* [Videomass](https://jeanslack.github.io/Videomass/) - YT-DL / FFmpeg GUI
|
||||||
* [YouTube Thumbnail Grabber](https://boingboing.net/features/getthumbs), [YTI](https://youtubethumbnailimage.com/), [thumbnailsave](https://thumbnailsave.com/), [thumbnail-download](https://thumbnail-download.com/) or [Get YT Thumbnail](https://www.get-youtube-thumbnail.com/) - Download YouTube Thumbnails
|
* [YouTube Thumbnail Grabber](https://boingboing.net/features/getthumbs), [YTI](https://youtubethumbnailimage.com/), [thumbnailsave](https://thumbnailsave.com/), [thumbnail-download](https://thumbnail-download.com/) or [Get YT Thumbnail](https://www.get-youtube-thumbnail.com/) - Download YouTube Thumbnails
|
||||||
* [YouTube Comment Downloader](https://github.com/egbertbouman/youtube-comment-downloader) - YouTube Comment Download Script
|
* [YouTube Comment Downloader](https://github.com/egbertbouman/youtube-comment-downloader) - YouTube Comment Download Script
|
||||||
* [DL YouTube Videos without Extensions](https://onehack.us/t/how-to-download-youtube-videos-without-external-tools-or-extensions/)
|
* [DL YouTube Videos without Extensions](https://onehack.us/t/how-to-download-youtube-videos-without-external-tools-or-extensions/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ YouTube Frontends
|
||||||
|
|
||||||
|
* ⭐ **[Invidious](https://invidious.io/)** / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [Alt Frontend](https://github.com/bocchilorenzo/invuedious) / [TUI](https://github.com/darkhz/invidtui) or **[CloudTube](https://tube.cadence.moe/)** - FOSS YouTube Frontends
|
||||||
|
* ⭐ **[FreeTube](https://freetubeapp.io/)** - Privacy-Based YouTube Client / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
||||||
|
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
|
||||||
|
* [ViewTube](https://github.com/ViewTube/viewtube), [Piped](https://github.com/TeamPiped/Piped) / [2](https://piped.kavin.rocks/) / [3](https://piped-material.১.net/), [PSTube](https://github.com/prateekmedia/pstube), [Youtube-local](https://github.com/user234683/youtube-local), [YouT-ube](https://www.yout-ube.com/), [yt.d0.cx](https://yt.d0.cx/) or [PokeTube](https://github.com/ashley0143/poketube) - Alternative YouTube Frontends
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
## ▷ YouTube Customization
|
## ▷ YouTube Customization
|
||||||
|
|
||||||
* ⭐ **[Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube)**, [ImprovedTube](https://improvedtube.com/), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/) or [Magic Actions](https://www.chromeactions.com/) - YouTube Enhancement Extensions
|
* ⭐ **[Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube)**, [ImprovedTube](https://improvedtube.com/), [Nova YouTube](https://greasyfork.org/en/scripts/433360), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/) or [Magic Actions](https://www.chromeactions.com/) - YouTube Enhancement Extensions
|
||||||
* ⭐ **[ReturnYouTubeDislikes](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/) / [Discord](https://discord.com/invite/mYnESY4Md5)
|
* ⭐ **[ReturnYouTubeDislikes](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/) / [Discord](https://discord.com/invite/mYnESY4Md5)
|
||||||
* ⭐ **[Unhook](https://unhook.app/)**, [Untrap](https://untrap.app/), [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) or [YourTube](https://github.com/rahgurung/YourTube) - Distraction-Free YouTube
|
* ⭐ **[Unhook](https://unhook.app/)**, [Untrap](https://untrap.app/), [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) or [YourTube](https://github.com/rahgurung/YourTube) - Distraction-Free YouTube
|
||||||
* ⭐ **[DeArrow](https://dearrow.ajay.app/)** or [Clickbait Remover](https://github.com/pietervanheijningen/clickbait-remover-for-youtube) - Reduce Sensationalism / Clickbait
|
* ⭐ **[DeArrow](https://dearrow.ajay.app/)** or [Clickbait Remover](https://github.com/pietervanheijningen/clickbait-remover-for-youtube) - Reduce Sensationalism / Clickbait
|
||||||
* [Thumbnail Rating Bar](https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube) - Display Like / Dislike Ratio on Thumbnails
|
* [Thumbnail Rating Bar](https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube) - Display Like / Dislike Ratio on Thumbnails
|
||||||
* [youtube-like-dislike-shortcut](https://github.com/avi12/youtube-like-dislike-shortcut) - Video Like / Dislike Hotkeys
|
* [youtube-like-dislike-shortcut](https://github.com/avi12/youtube-like-dislike-shortcut) - Video Like / Dislike Hotkeys
|
||||||
* [YT Not Interested Button on Hover](https://greasyfork.org/en/scripts/396936-yt-not-interested-in-one-click) - Easily Display Not Interested Button
|
* [YT Not Interested Button on Hover](https://greasyfork.org/en/scripts/396936-yt-not-interested-in-one-click) - Easily Display Not Interested Button
|
||||||
* [YouTube Fixes](https://greasyfork.org/en/scripts/405614) - YouTube Tweaks
|
* [Focused YouTube](https://github.com/makaroni4/focused_youtube) - Minimalist YouTube
|
||||||
* [Focused YouTube](https://github.com/makaroni4/focused_youtube), [yt-neuter](https://github.com/mchangrh/yt-neuter) or [GoodTube](https://github.com/goodtube4u/goodtube) - Minimalist YouTube
|
* [YouTube Redux](https://github.com/omnidevZero/YouTubeRedux) - Restore Classic YouTube Layout
|
||||||
* [YouTube Redux](https://github.com/omnidevZero/YouTubeRedux), [VORAPIS](https://vorapis.pages.dev/) / [Discord](https://vorapis.pages.dev/#/join_community) / [Features](https://greasyfork.org/en/scripts/485622) or [Cosmic Cat](https://github.com/cosmic-cat-yt/Cosmic-Cat) - Restore Classic YouTube Layout
|
|
||||||
* [/r/OldYouTubeLayout](https://www.reddit.com/r/oldyoutubelayout/) - Classic YouTube Layout Subreddit
|
|
||||||
* [Disable Rounded Buttons](https://greasyfork.org/en/scripts/453802) - Disable Rounded YouTube Buttons
|
* [Disable Rounded Buttons](https://greasyfork.org/en/scripts/453802) - Disable Rounded YouTube Buttons
|
||||||
|
* [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Cinema Mode
|
||||||
|
* [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Fix YouTube Aspect Ratio
|
||||||
|
* [YouTube: Audio Only](https://greasyfork.org/en/scripts/484611) or [Audio Only YouTube](https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog) - Audio Only YouTube
|
||||||
* [Feed Remover](https://github.com/kwkr/feed-remover) - Remove YouTube Homepage Feed
|
* [Feed Remover](https://github.com/kwkr/feed-remover) - Remove YouTube Homepage Feed
|
||||||
|
* [FreshTube](https://porjo.github.io/freshtube/) - Display Latest Videos from Subscriptions
|
||||||
* [Upvote Anywhere](https://github.com/z0ccc/comet) - Replace YouTube Comments with Reddit Comments
|
* [Upvote Anywhere](https://github.com/z0ccc/comet) - Replace YouTube Comments with Reddit Comments
|
||||||
* [Timestamped YouTube Comments](https://chromewebstore.google.com/detail/timestamped-youtube-comme/gnpppldhfbbagiaalkddddajadhlgofm) - View Timestamped Comments
|
* [Timestamped YouTube Comments](https://chromewebstore.google.com/detail/timestamped-youtube-comme/gnpppldhfbbagiaalkddddajadhlgofm) - View Timestamped Comments
|
||||||
* [TabView YouTube](https://greasyfork.org/en/scripts/428651) - View Comments / Info in Tab View
|
* [TabView YouTube](https://greasyfork.org/en/scripts/428651) - View Comments / Info in Tab View
|
||||||
* [Super Fast Chat](https://greasyfork.org/en/scripts/469878) - YouTube Chat Performance Enhancer
|
* [Super Fast Chat](https://greasyfork.org/en/scripts/469878) - YouTube Chat Performance Enhancer
|
||||||
|
* [Ytfzf](https://github.com/pystardust/ytfzf) or [YewTube](https://github.com/mps-youtube/yewtube) - Terminal YouTube Players
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -482,16 +443,15 @@
|
|||||||
|
|
||||||
* ⭐ **[Favoree](https://www.favoree.io/)** - Search / Discover YouTube Channels
|
* ⭐ **[Favoree](https://www.favoree.io/)** - Search / Discover YouTube Channels
|
||||||
* ⭐ **[YouTube Advanced Search](https://playlists.at/youtube/search/)** - Search Engine
|
* ⭐ **[YouTube Advanced Search](https://playlists.at/youtube/search/)** - Search Engine
|
||||||
* ⭐ **[Filmot](https://filmot.com/)**, [CTRL-F-VIDEO](https://github.com/Evan-Wildenhain/CTRL-F-VIDEO) or [ytks](https://ytks.app/) - Search within YouTube Transcripts / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/youtube-captions-search/) / [Chrome](https://chromewebstore.google.com/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg)
|
* ⭐ **[Filmot](https://filmot.com/)** or [ytks](https://ytks.app/) - Search within YouTube Transcripts / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/youtube-captions-search/) / [Chrome](https://chromewebstore.google.com/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg)
|
||||||
* [YouTube Search Fixer Suite](https://addons.mozilla.org/en-US/firefox/addon/youtube-suite-search-fixer/) - Fix YouTube Search / Declutter Homepage
|
* [YouTube Search Fixer Suite](https://addons.mozilla.org/en-US/firefox/addon/youtube-suite-search-fixer/) - Fix YouTube Search / Declutter Homepage
|
||||||
* [YouTube Search Grid View](https://greasyfork.org/en/scripts/481422-youtube-search-results-in-grid-view) - View Results in Grid
|
|
||||||
* [Channel Crawler](https://channelcrawler.com/eng) or [YT-FTS](https://github.com/NotJoeMartinez/yt-fts) - Channel Search Tools
|
* [Channel Crawler](https://channelcrawler.com/eng) or [YT-FTS](https://github.com/NotJoeMartinez/yt-fts) - Channel Search Tools
|
||||||
* [Comment Viewer](https://commentviewer.com/), [Hadzy](https://hadzy.com/), [YCS](https://chromewebstore.google.com/detail/ycs-youtube-comment-searc/pmfhcilikeembgbiadjiojgfgcfbcoaaen) or [YCF](https://ytcomment.kmcat.uk/) - YouTube Comment Search
|
* [Comment Viewer](https://commentviewer.com/), [Hadzy](https://hadzy.com/), [YCS](https://chromewebstore.google.com/detail/ycs-youtube-comment-searc/pmfhcilikeembgbiadjiojgfgcfbcoaaen) or [YCF](https://ytcomment.kmcat.uk/) - YouTube Comment Search
|
||||||
* [Project Random](https://0xbeef.co.uk/random) or [petittube](https://petittube.com/) - Find YouTube Videos with >100 Views
|
* [Petit tube](https://www.petittube.com/) - Find YouTube Videos with >100 Views
|
||||||
* [YouTube-Geofind](https://mattw.io/youtube-geofind/location) - Find Geotagged Videos
|
* [YouTube-Geofind](https://mattw.io/youtube-geofind/location) - Find Geotagged Videos
|
||||||
* [QuiteAPlaylist](https://quiteaplaylist.com/) - Find Deleted YouTube Videos
|
* [QuiteAPlaylist](https://quiteaplaylist.com/) - Find Deleted YouTube Videos
|
||||||
* [Unlisted Videos](https://unlistedvideos.com/) - Watch / Submit Unlisted YouTube Videos
|
* [Unlisted Videos](https://unlistedvideos.com/) - Watch / Submit Unlisted YouTube Videos
|
||||||
* [Tubeup](https://github.com/bibanon/tubeup), [Preservetube](https://preservetube.com/) or [yark](https://github.com/Owez/yark) - Archive YouTube Videos and Playlists
|
* [Tubeup](https://github.com/bibanon/tubeup) or [yark](https://github.com/Owez/yark) - Archive YouTube Videos and Playlists
|
||||||
* [TubeArchivist](https://www.tubearchivist.com/) - Self-hosted YouTube Media Server / [GitHub](https://github.com/tubearchivist/tubearchivist)
|
* [TubeArchivist](https://www.tubearchivist.com/) - Self-hosted YouTube Media Server / [GitHub](https://github.com/tubearchivist/tubearchivist)
|
||||||
* [Hobune](https://hobune.stream/), [FindYouTubeVideo](https://findyoutubevideo.thetechrobo.ca/) or [youtubecrawl](https://archive.org/details/youtubecrawl) - YouTube Video Archives
|
* [Hobune](https://hobune.stream/), [FindYouTubeVideo](https://findyoutubevideo.thetechrobo.ca/) or [youtubecrawl](https://archive.org/details/youtubecrawl) - YouTube Video Archives
|
||||||
|
|
||||||
@ -501,38 +461,34 @@
|
|||||||
|
|
||||||
* 🌐 **[Twitch Database](https://twitchdatabase.com/)** or [SullyGnome](https://sullygnome.com/) - Twitch Tool Indexes
|
* 🌐 **[Twitch Database](https://twitchdatabase.com/)** or [SullyGnome](https://sullygnome.com/) - Twitch Tool Indexes
|
||||||
* 🌐 **[Twitch Extensions](https://dashboard.twitch.tv/extensions/categories/43f48606-8b91-4149-94e6-02def012c79f)** - Twitch Extensions Index
|
* 🌐 **[Twitch Extensions](https://dashboard.twitch.tv/extensions/categories/43f48606-8b91-4149-94e6-02def012c79f)** - Twitch Extensions Index
|
||||||
* ⭐ **[7TV](https://7tv.app/)**, [BetterTTV](https://betterttv.com/) or [FrankerFacez](https://www.frankerfacez.com/) - Twitch Enhancement Extensions
|
* ⭐ **[BetterTTV](https://betterttv.com/)** or [FrankerFacez](https://www.frankerfacez.com/) - Twitch Enhancement Extension
|
||||||
* ⭐ **[TwitchNoSub](https://github.com/besuper/TwitchNoSub)** - Watch Sub Only Twitch Videos
|
* ⭐ **[TwitchNoSub](https://github.com/besuper/TwitchNoSub)** - Watch Sub Only Twitch Videos
|
||||||
* ⭐ **[Stream Scheme](https://www.streamscheme.com/)** - Livestreaming Guides / Resources
|
* ⭐ **[Stream Scheme](https://www.streamscheme.com/)** - Livestreaming Guides / Resources
|
||||||
* [Gumbo](https://github.com/seldszar/gumbo) or [Twitch-Live](https://github.com/yungsamd17/Twitch-Live) - Twitch Stream Trackers
|
* [Gumbo](https://github.com/seldszar/gumbo) - Twitch Stream Tracker
|
||||||
* [HypeTrigger](https://hypetrigger.io/) - Automatically Create Clips
|
* [HypeTrigger](https://hypetrigger.io/) - Automatically Create Clips
|
||||||
* [Twitch Clip Search](https://www.twitch-clip-search.com/) - Search for Clips
|
* [VODarchive](https://vodarchive.com/) - Twitch VOD Archive
|
||||||
* [VODarchive](https://vodarchive.com/) or [TwitchArchive](https://twitcharchive.com/)- Twitch Video Archives
|
|
||||||
* [Twitch Previews](https://github.com/MarkM-dev/Previews-client) or [Previews](https://previews-app.com/) - Twitch Video Previews
|
* [Twitch Previews](https://github.com/MarkM-dev/Previews-client) or [Previews](https://previews-app.com/) - Twitch Video Previews
|
||||||
* [Unwanted Twitch](https://github.com/kwaschny/unwanted-twitch) - Hide Twitch Categories / Channels
|
* [Unwanted Twitch](https://github.com/kwaschny/unwanted-twitch) - Hide Twitch Categories / Channels
|
||||||
* [vTwitch](https://vtwitch.com/) - Show Chat Below Player
|
* [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Fix Twitch Aspect Ratio
|
||||||
|
* [Featured.chat](https://featured.chat/) - Twitch Chat Manager
|
||||||
* [JChat](https://www.giambaj.it/twitch/jchat/) - Show Twitch Chat on Screen
|
* [JChat](https://www.giambaj.it/twitch/jchat/) - Show Twitch Chat on Screen
|
||||||
* [Hide-Twitch-Chat-Users](https://github.com/mikeyaworski/Hide-Twitch-Chat-Users) - Hide Twitch Chat Users
|
* [Hide-Twitch-Chat-Users](https://github.com/mikeyaworski/Hide-Twitch-Chat-Users) - Hide Twitch Chat Users
|
||||||
* [TwitchChatDanmaku](https://github.com/wheatup/TwitchChatDanmaku), [Transparent-Twitch-Chat](https://github.com/chylex/Transparent-Twitch-Chat) or [Transparent Twitch Chat Overlay](https://github.com/baffler/Transparent-Twitch-Chat-Overlay) - Transparent Twitch Chat
|
* [Transparent-Twitch-Chat](https://github.com/chylex/Transparent-Twitch-Chat) or [Transparent Twitch Chat Overlay](https://github.com/baffler/Transparent-Twitch-Chat-Overlay) - Transparent Twitch Chat
|
||||||
* [Screenshot Twitch](https://github.com/eramdam/userscripts/blob/main/Screenshot%20Twitch.user.js) - Add Screenshot Button to Twitch
|
* [7TV](https://7tv.app/) - Twitch Emotes Extension
|
||||||
* [Auto Twitch Drops](https://chromewebstore.google.com/detail/automatic-twitch-drops-mo/kfhgpagdjjoieckminnmigmpeclkdmjm) - Twitch Drop Notifications
|
* [Auto Twitch Drops](https://chromewebstore.google.com/detail/automatic-twitch-drops-mo/kfhgpagdjjoieckminnmigmpeclkdmjm) - Twitch Drop Notifications
|
||||||
* [Auto-Claim-Twitch-Channel-Points](https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points) or [TTVDropBot](https://github.com/Giingu/Enhanced-TTVDropBot) - Auto Claim Twitch Points
|
* [Auto-Claim-Twitch-Channel-Points](https://github.com/mikeyaworski/Auto-Claim-Twitch-Channel-Points) or [TTVDropBot](https://github.com/Giingu/Enhanced-TTVDropBot) - Auto Claim Twitch Points
|
||||||
* [Twitch Drops Miner](https://github.com/Windows200000/TwitchDropsMiner-updated) - Auto Claim Twitch Drops
|
* [TwitchRSS](https://twitchrss.appspot.com/) - Twitch RSS Generator
|
||||||
* [TwitchRSS](https://twitchrss.appspot.com/) or [twitchrss](https://twitchrss.com/) - Twitch RSS Generators
|
|
||||||
* [TTV Favorites](https://github.com/jc9108/ttv-favorites) - Add Channel Favorites
|
* [TTV Favorites](https://github.com/jc9108/ttv-favorites) - Add Channel Favorites
|
||||||
* [Streamlink Twitch GUI](https://github.com/streamlink/streamlink-twitch-gui) - Twitch Browser for Streamlink
|
* [Streamlink Twitch GUI](https://github.com/streamlink/streamlink-twitch-gui) - Twitch Browser for Streamlink
|
||||||
* [get stream](https://pwn.sh/tools/getstream.html) - Extract Twitch URLs
|
* [get stream](https://pwn.sh/tools/getstream.html) - Extract Twitch URLs
|
||||||
* [lurker.tv](https://www.lurker.tv/) - Discord Server Based Twitch Stream Recs
|
* [lurker.tv](https://www.lurker.tv/) - Discord Server Based Twitch Stream Recs
|
||||||
|
* [nobody.live](https://nobody.live/) or [Twitch Roulette](https://twitchroulette.net/) - Random Stream Roulette
|
||||||
* [Twitch TV OBS Subtitles](https://github.com/stephenlb/twitch-tv-obs-subtitles/) - Add Subtitles to Twitch Stream
|
* [Twitch TV OBS Subtitles](https://github.com/stephenlb/twitch-tv-obs-subtitles/) - Add Subtitles to Twitch Stream
|
||||||
* [StreamLadder](https://streamladder.com/) - Social Media Templates for Twitch Clips
|
* [StreamLadder](https://streamladder.com/) - Social Media Templates for Twitch Clips
|
||||||
* [TwitchLeak](https://twitchleak.netlify.app/) - Twitch Top Earners Table
|
* [TwitchLeak](https://twitchleak.netlify.app/) - Twitch Top Earners Table
|
||||||
* [TwitchQuotes](https://www.twitchquotes.com/) - Twitch Copypastas
|
* [TwitchQuotes](https://www.twitchquotes.com/) - Twitch Copypastas
|
||||||
* [TwitchEmotes](https://twitchemotes.com/) - Global Twitch Emotes
|
|
||||||
* [ChatGuessr](https://chatguessr.com/) - GeoGuessr for Twitch
|
|
||||||
* [TwitchInsights](https://twitchinsights.net/), [StreamCharts](https://streamscharts.com/) or [TwitchTracker](https://twitchtracker.com/) - Twitch Stats
|
* [TwitchInsights](https://twitchinsights.net/), [StreamCharts](https://streamscharts.com/) or [TwitchTracker](https://twitchtracker.com/) - Twitch Stats
|
||||||
* [Trovo](https://trovo.live/), [Kick](https://kick.com/), [dlive](https://dlive.tv/), [Caffeine](https://www.caffeine.tv/), [Lightspeed](https://lightspeed.tv/) or [Theta](https://www.theta.tv/) - Twitch Alternatives
|
* [Trovo](https://trovo.live/), [Glimesh](https://glimesh.tv/), [Kick](https://kick.com/), [dlive](https://dlive.tv/), [Caffeine](https://www.caffeine.tv/), [Lightspeed](https://lightspeed.tv/) or [Theta](https://www.theta.tv/) - Twitch Alternatives
|
||||||
* [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Fix Twitch Aspect Ratio
|
|
||||||
* [Twitch Status](https://twitchstatus.com/) - Twitch Status Tracking
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -543,9 +499,8 @@
|
|||||||
* [SpeechChat](https://speechchat.com/) - Twitch Text to Speech Client
|
* [SpeechChat](https://speechchat.com/) - Twitch Text to Speech Client
|
||||||
* [Twitch Lite](https://thavixt.github.io/twitch-lite/) - Lightweight Twitch Webplayer
|
* [Twitch Lite](https://thavixt.github.io/twitch-lite/) - Lightweight Twitch Webplayer
|
||||||
* [Walrus](https://joinwalrus.tv/) - Make Twitch Watch Parties
|
* [Walrus](https://joinwalrus.tv/) - Make Twitch Watch Parties
|
||||||
* [MuliTwitch.tv](https://multitwitch.tv/), [MultiTwitch.co](https://multitwitch.co/), [Twitch3D](https://hjjg200.github.io/twitch3d/), [Twitch Replay](https://www.twitch-replay.com/), [Multi](https://multi.raredrop.co/), [MultiStre.am](https://multistre.am/), [MultiStreamer](https://multistreamer.lucidnet.app/) or [TwitchTheater](https://twitchtheater.tv/) - Twitch Mult-Stream
|
* [MuliTwitch.tv](https://multitwitch.tv/), [MultiTwitch.co](https://multitwitch.co/), [Twitch3D](https://hjjg200.github.io/twitch3d/), [Twitch Replay](https://www.twitch-replay.com/), [Multi](https://multi.raredrop.co/), [MultiStre.am](https://multistre.am/) or [TwitchTheater](https://twitchtheater.tv/) - Sync Twitch Videos w/ Friends / Mult-Stream
|
||||||
* [Twitchls](https://twitchls.com/) - HTML5 Twitch Stream Player
|
* [Twitchls](https://twitchls.com/) - HTML5 Twitch Stream Player
|
||||||
* [nobody.live](https://nobody.live/) or [Twitch Roulette](https://twitchroulette.net/) - Random Stream Roulette
|
|
||||||
* [Alternate Player for Twitch.tv](https://pastebin.com/Z7NWxSfA) - Alternative Twitch Player
|
* [Alternate Player for Twitch.tv](https://pastebin.com/Z7NWxSfA) - Alternative Twitch Player
|
||||||
* [Twitch Lurker](https://github.com/mikeyaworski/Twitch-Lurker) - Twitch Stream Auto-Open
|
* [Twitch Lurker](https://github.com/mikeyaworski/Twitch-Lurker) - Twitch Stream Auto-Open
|
||||||
|
|
||||||
@ -554,12 +509,12 @@
|
|||||||
## ▷ Twitch Adblockers
|
## ▷ Twitch Adblockers
|
||||||
|
|
||||||
* 🌐 **[TwitchAdSolutions](https://github.com/pixeltris/TwitchAdSolutions)** - Solutions / Scripts for Blocking Twitch Ads
|
* 🌐 **[TwitchAdSolutions](https://github.com/pixeltris/TwitchAdSolutions)** - Solutions / Scripts for Blocking Twitch Ads
|
||||||
* ⭐ **[PurpleAdblock](https://addons.mozilla.org/en-US/firefox/addon/purpleadblock/)** - Twitch Adblocker
|
* ⭐ **[Purple AdBlock](https://addons.mozilla.org/en-US/firefox/addon/purpleadblock/)** - Twitch Adblocker
|
||||||
* ⭐ **[TTV LOL PRO](https://github.com/younesaassila/ttv-lol-pro)** - Twitch Adblocker / [Proxies](https://wiki.cdn-perfprod.com/v/v1/must-read/proxies)
|
* ⭐ **[TTV LOL](https://ttv.lol/)** / [Pro](https://github.com/younesaassila/ttv-lol-pro) / [Video Guide](https://rentry.co/tavy3) - Twitch Adblocker
|
||||||
* [VideoAdBlockForTwitch](https://github.com/cleanlock/VideoAdBlockForTwitch) - Twitch Adblocker
|
* [VideoAdBlockForTwitch](https://github.com/cleanlock/VideoAdBlockForTwitch) - Twitch Adblocker
|
||||||
* [luminous-ttv](https://github.com/AlyoshaVasilieva/luminous-ttv) - Twitch Adblocker
|
* [luminous-ttv](https://github.com/AlyoshaVasilieva/luminous-ttv) - Twitch Adblocker
|
||||||
* [Adblocker for Twitch](https://microsoftedge.microsoft.com/addons/detail/adblocker-for-twitch%E2%84%A2/glgpmlmjlaljaddimbgekaepkgbojjdn) - Edge Twitch Adblocker
|
* [Adblocker for Twitch](https://microsoftedge.microsoft.com/addons/detail/adblocker-for-twitch%E2%84%A2/glgpmlmjlaljaddimbgekaepkgbojjdn) - Edge Twitch Adblocker
|
||||||
* [PurpleTV](https://purpletv.aeong.win/) / [Alpha](https://t.me/pubTwAlpha) - Ad Free Twitch APK
|
* [Xtra](https://github.com/crackededed/Xtra) or [PurpleTV](https://purpletv.aeong.one/) - Ad Free Twitch APKs
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -575,14 +530,19 @@
|
|||||||
|
|
||||||
# ► Twitter Tools
|
# ► Twitter Tools
|
||||||
|
|
||||||
* ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers
|
* ⭐ **[Trends24](https://trends24.in/)** or [Hashtagify](https://hashtagify.me/) - Trending Hashtags Trackers
|
||||||
* ⭐ **[/r/Twitter](https://reddit.com/r/Twitter)** - Twitter Subreddit
|
* ⭐ **[/r/Twitter](https://reddit.com/r/Twitter)** - Twitter Subreddit
|
||||||
|
* [TumblThree](https://github.com/TumblThreeApp/TumblThree) or [Thread Safe](https://github.com/dkaslovsky/thread-safe) - Twitter / Tumblr Backup Tools
|
||||||
* [Typefully](https://typefully.com/) - Schedule Tweets
|
* [Typefully](https://typefully.com/) - Schedule Tweets
|
||||||
* [Chirr App](https://getchirrapp.com/) - Turn Articles into Twitter Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg)
|
* [Chirr App](https://getchirrapp.com/) - Turn Articles into Twitter Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg)
|
||||||
* [OneMillionTweetMap](https://onemilliontweetmap.com/) - Real-Time Tweet Map
|
* [OneMillionTweetMap](https://onemilliontweetmap.com/) - Real-Time Tweet Map
|
||||||
* [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
|
* [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
|
||||||
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
|
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
|
||||||
* [Scoutzen](https://www.scoutzen.com/twitter-lists/search) - Search Twitter Use Lists
|
* [TwitterMediaHarvest](https://github.com/EltonChou/TwitterMediaHarvest) - Twitter Media Downloader
|
||||||
|
* [GetVideoBot](https://twitsave.com/), [DownloadTwitterVideo](https://www.downloadtwittervideo.com/), [TwitterVid](https://twittervid.com/) or [sssTwitter](https://ssstwitter.com/) - Download Twitter Videos
|
||||||
|
* [memory.lol](https://github.com/travisbrown/memory.lol/) - Twitter Account Archive
|
||||||
|
* [Twitter Archive Parser](https://github.com/timhutton/twitter-archive-parser) - Tweet Archiving
|
||||||
|
* [Twayback Machine](https://staringispolite.github.io/twayback-machine/) - View Users' Old Tweets
|
||||||
* [Hoaxy](https://hoaxy.osome.iu.edu/) - Twitter Info Spread Data
|
* [Hoaxy](https://hoaxy.osome.iu.edu/) - Twitter Info Spread Data
|
||||||
* [tinfoleak](https://tinfoleak.com/) - View Your Geosocial Footprint
|
* [tinfoleak](https://tinfoleak.com/) - View Your Geosocial Footprint
|
||||||
* [Unfollow All](https://chromewebstore.google.com/detail/twitter-unfollow-all/mgehkbclkipppdjiemnhmnledicalkld) - Twitter Unfollower
|
* [Unfollow All](https://chromewebstore.google.com/detail/twitter-unfollow-all/mgehkbclkipppdjiemnhmnledicalkld) - Twitter Unfollower
|
||||||
@ -591,31 +551,17 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Twitter Archiving
|
|
||||||
|
|
||||||
* [Thread Safe](https://github.com/dkaslovsky/thread-safe) - Twitter Backup Tool
|
|
||||||
* [TwitterMediaHarvest](https://github.com/EltonChou/TwitterMediaHarvest) or [InThisTweet](https://inthistweet.app/) - Twitter Media Downloader
|
|
||||||
* [GetVideoBot](https://twitsave.com/), [TwitterVid](https://twittervid.com/) or [sssTwitter](https://ssstwitter.com/) - Download Twitter Videos
|
|
||||||
* [Pikaso](https://twitter.com/pikaso_me) - Twitter Screenshot Bot
|
|
||||||
* [memory.lol](https://github.com/travisbrown/memory.lol/) - Twitter Account Archive
|
|
||||||
* [Ghost Archive](https://ghostarchive.org/) or [Megalodon](https://megalodon.jp/) - Twitter Archive Services
|
|
||||||
* [Twitter Archive Parser](https://github.com/timhutton/twitter-archive-parser) or [twitter-web-exporter](https://github.com/prinsss/twitter-web-exporter) - Tweet Archivers
|
|
||||||
* [Twayback Machine](https://staringispolite.github.io/twayback-machine/) - View Users' Old Tweets
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Twitter Customization
|
## ▷ Twitter Customization
|
||||||
|
|
||||||
* ⭐ **[Eight Dollars](https://github.com/wseagar/eight-dollars)** - Show Twitter Blue vs. Real Verified Users
|
* ⭐ **[Eight Dollars](https://github.com/wseagar/eight-dollars)** - Show Twitter Blue vs. Real Verified Users
|
||||||
* [Control Panel for Twitter](https://jbscript.dev/control-panel-for-twitter) - Twitter Enhancement Extensions
|
* [Tweak New Twitter](https://github.com/insin/control-panel-for-twitter) - Twitter Enhancement Extensions
|
||||||
* [Minimal Twitter](https://typefully.com/minimal-twitter) - Minimal Twitter Themes
|
* [Minimal Twitter](https://typefully.com/minimal-twitter) - Minimal Twitter Themes
|
||||||
* [OldTwitter](https://github.com/dimdenGD/OldTwitter) or [GoodTwitter2](https://github.com/Bl4Cc4t/GoodTwitter2) - Original Twitter Theme
|
* [OldTwitter](https://github.com/dimdenGD/OldTwitter) - Original Twitter Theme
|
||||||
* [OldTweetDeck](https://github.com/dimdenGD/OldTweetDeck) - TweetDeck Dashboard
|
* [OldTweetDeck](https://github.com/dimdenGD/OldTweetDeck) - TweetDeck Dashboard
|
||||||
* [Twitter Plus](https://greasyfork.org/en/scripts/387969) - View Twitter Images in Original Quality
|
* [Twitter Plus](https://greasyfork.org/en/scripts/387969) - View Twitter Images in Original Quality
|
||||||
* [Twitter Demetricator](https://bengrosser.com/projects/twitter-demetricator/) - Remove All Twitter Metrics
|
* [Twitter Demetricator](https://bengrosser.com/projects/twitter-demetricator/) - Remove All Twitter Metrics
|
||||||
* [Thread Reader App](https://threadreaderapp.com/) - Unroll Twitter Threads / Search
|
* [Thread Reader App](https://threadreaderapp.com/) - Unroll Twitter Threads / Search
|
||||||
* [Relink](https://www.relink.page/) - Fix Twitter Link Images
|
* [Relink](https://www.relink.page/) - Fix Twitter Link Images
|
||||||
* [Hide Content Warning](https://greasyfork.org/en/scripts/437359) or [Disable Blur](https://userstyles.world/style/15658/) - Remove Sensitive Content Blur
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -634,7 +580,6 @@
|
|||||||
* [Kill Fbclid](https://chromewebstore.google.com/detail/kill-fbclid/jlmdkcaiejonohbmkgickmkgbpceokmn) or [Remove FBclid](https://chromewebstore.google.com/detail/remove-fbclid-and-utm/ehkdoijaaigomfliimepliikhjkoipob) - Removes fbclid and utm_ query parameters in URLs
|
* [Kill Fbclid](https://chromewebstore.google.com/detail/kill-fbclid/jlmdkcaiejonohbmkgickmkgbpceokmn) or [Remove FBclid](https://chromewebstore.google.com/detail/remove-fbclid-and-utm/ehkdoijaaigomfliimepliikhjkoipob) - Removes fbclid and utm_ query parameters in URLs
|
||||||
* [News Feed Eradicator](https://west.io/news-feed-eradicator/) - Hide Facebook News Feed
|
* [News Feed Eradicator](https://west.io/news-feed-eradicator/) - Hide Facebook News Feed
|
||||||
* [Lookup ID](https://lookup-id.com/) - Find Facebook ID
|
* [Lookup ID](https://lookup-id.com/) - Find Facebook ID
|
||||||
* [Unlike-Everything](https://github.com/tyrtles/Unlike-Everything-on-Facebook) - Remove All Facebook Likes
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -646,112 +591,59 @@
|
|||||||
* [InstaFix](https://ddinstagram.com/) - Fix Instagram Embeds on Discord
|
* [InstaFix](https://ddinstagram.com/) - Fix Instagram Embeds on Discord
|
||||||
* [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
|
* [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
|
||||||
* [imgsed](https://imgsed.com/), [Picuki](https://www.picuki.com/), [InstaNavigation](https://instanavigation.com/), [Instafreeview](https://instafreeview.com/), [profile-picture-viewer](https://github.com/Ademking/profile-picture-viewer), [Dumpor](https://dumpoir.com/) or [GreatFon](https://greatfon.com/) - Instagram Viewers
|
* [imgsed](https://imgsed.com/), [Picuki](https://www.picuki.com/), [InstaNavigation](https://instanavigation.com/), [Instafreeview](https://instafreeview.com/), [profile-picture-viewer](https://github.com/Ademking/profile-picture-viewer), [Dumpor](https://dumpoir.com/) or [GreatFon](https://greatfon.com/) - Instagram Viewers
|
||||||
|
* [Instagram-Explorer](https://www.osintcombine.com/instagram-explorer) - Explore Pictures by Location
|
||||||
* [StoriesDown](https://storiesdown.com/), [instasaved](https://instasaved.net/en) or [insta-stories-viewer](https://insta-stories-viewer.com/) - Story Downloaders
|
* [StoriesDown](https://storiesdown.com/), [instasaved](https://instasaved.net/en) or [insta-stories-viewer](https://insta-stories-viewer.com/) - Story Downloaders
|
||||||
* [SaveFromWeb](https://www.savefromweb.com/), [Downloadgram](https://downloadgram.org/) - Video / Picture / Story Downloaders
|
* [SaveFromWeb](https://www.savefromweb.com/), [Downloadgram](https://downloadgram.org/) - Video / Picture / Story Downloaders
|
||||||
* [Picnob](https://www.picnob.com/) or [Instagram PHP Scraper](https://github.com/postaddictme/instagram-php-scraper) - Picture / Story Downloaders
|
* [Picnob](https://www.picnob.com/) or [Instagram PHP Scraper](https://github.com/postaddictme/instagram-php-scraper) - Picture / Story Downloaders
|
||||||
* [ThumbTube](https://thumbtube.com/download-instagram-photos-videos) or [scraper-instagram-gui-desktop](https://git.kaki87.net/KaKi87/scraper-instagram-gui-desktop), [Instaloader](https://github.com/instaloader/instaloader) or [instapick](https://www.instapick.net/) - Picture / Video Downloader
|
* [ThumbTube](https://thumbtube.com/download-instagram-photos-videos) or [scraper-instagram-gui-desktop](https://git.kaki87.net/KaKi87/scraper-instagram-gui-desktop), [Instaloader](https://github.com/instaloader/instaloader) or [instapick](https://www.instapick.net/) - Picture / Video Downloader
|
||||||
* [InstaLoader](https://instaloader.github.io/) or [PixWox](https://www.pixwox.com/) - Picture Downloaders
|
* [InstaLoader](https://instaloader.github.io/) - Picture Downloader
|
||||||
* [Weynstag](https://www.google.com/amp/s/weynstag.com/amp.php/) - Video Downloader
|
* [Weynstag](https://www.google.com/amp/s/weynstag.com/amp.php/) - Video Downloader
|
||||||
* [Resizegram](https://resizegram.com/) - Resize Videos
|
* [Resizegram](https://resizegram.com/) - Resize Videos
|
||||||
* [Instagram Video Control](https://github.com/Arcus92/instagram-video-control/) - Video Controls
|
|
||||||
* [Instagram Download Button](https://greasyfork.org/en/scripts/406535-instagram-download-button) - Add DL Links to Instagram
|
* [Instagram Download Button](https://greasyfork.org/en/scripts/406535-instagram-download-button) - Add DL Links to Instagram
|
||||||
* [otzberg](https://www.otzberg.net/iguserid/index.php) or [Find-User-ID](https://codeofaninja.com/tools/find-instagram-user-id/) - ID Finder
|
* [otzberg](https://www.otzberg.net/iguserid/index.php) or [Find-User-ID](https://codeofaninja.com/tools/find-instagram-user-id/) - ID Finder
|
||||||
* [Image Counter](https://openuserjs.org/scripts/darkred/Instagram_-_visible_images_counter) - Count Page Images
|
* [Image Counter](https://openuserjs.org/scripts/darkred/Instagram_-_visible_images_counter) - Count Page Images
|
||||||
* [InstaAddict](https://github.com/Androz2091/instaddict) - Instagram Addiction Test
|
* [InstaAddict](https://github.com/Androz2091/instaddict) - Instagram Addiction Test
|
||||||
* [Unfollow-Everyone](https://github.com/tyrtles/Unfollow-Everyone-on-Instagram/) - Bulk Instagram Unfollow
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# ► Tumblr Tools
|
|
||||||
|
|
||||||
* [Tumlook](https://www.tumlook.com/), [Tumgik](https://www.tumgik.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
|
|
||||||
* [Pillowfort](https://www.pillowfort.social/) or [Cohost](https://cohost.org/) - Tumblr Alternatives
|
|
||||||
* [tumblr-utils](https://github.com/cebtenzzre/tumblr-utils) - Tumblr Utilities
|
|
||||||
* [XKit](https://github.com/new-xkit/XKit) - Tumblr Enhancement Extension
|
|
||||||
* [Tumblr Savior](https://bjornstar.com/tumblr-savior) - Tumblr Dashboard Filter
|
|
||||||
* [tumbex](https://www.tumbex.com/) - Tumblr Search
|
|
||||||
* [TumblrOriginalPostFinder](https://jetblackcode.com/TumblrOriginalPostFinder) - Tumblr Post Finder
|
|
||||||
* [Tumbl Backup Guide](https://docs.google.com/document/d/1yBWlk-yEgpSoEh3c9oLhz_kbLtUGqbqzOpCtJsvQgjI/) or [TumblThree](https://tumblthreeapp.github.io/TumblThree/) - Tumblr Backup Tools
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Fediverse Tools
|
# ► Fediverse Tools
|
||||||
|
|
||||||
* 🌐 **[Fediverse.Party](https://fediverse.party/)** - Fediverse Software Index
|
* 🌐 **[Awesome Fediverse](https://github.com/emilebosch/awesome-fediverse)** - Fediverse Resources
|
||||||
* ⭐ **[Fediverse Observer](https://fediverse.observer/)** - Fediverse Instances
|
* ⭐ **[Fediverse](https://fediverse.party/)**, [Fediverse.space](https://fediverse.space/), [sub.rehab](https://sub.rehab/), [Fediverser](https://fediverser.network/) or [Fediverse Observer](https://mastodon.fediverse.observer/) - Fediverse Instance Search
|
||||||
* [Bluesky](https://bsky.app/) - Federated Twitter Alt / [App Directory](https://docs.bsky.app/showcase)
|
* ⭐ **[Lemmy](https://join-lemmy.org/)** / [Stats](https://the-federation.info/), [2](https://fedidb.org/) - Federated Reddit Alternative
|
||||||
* [FediDB](https://fedidb.org/) or [The Federation](https://the-federation.info/) - Network Statistics
|
* ⭐ **[Lemmy Explorer](https://lemmyverse.net/)**, [Community-Browser](https://browse.feddit.de/) or [Awesome Instances](https://github.com/maltfield/awesome-lemmy-instances) - Lemmy Instances
|
||||||
* [Fedi.Tips](https://fedi.tips/) - Fediverse Guide
|
|
||||||
* [Fedi.Garden](https://fedi.garden/) - Curated User Directory
|
|
||||||
* [Fediverse People Directory](https://fediverse.info/explore/people) - Self-Submitted User Directory
|
|
||||||
* [FediverseRedirect](https://github.com/zacharee/MastodonRedirect) - Frontend Redirect
|
|
||||||
* [Bridgy Fed](https://fed.brid.gy/) - Fediverse Bridge
|
|
||||||
* [PodcastAP](https://podcastap.com/) - Podcast Feed Bridge
|
|
||||||
* [The Fediverse Report](https://fediversereport.com/) - Fediverse News
|
|
||||||
* [FediBuzz](https://fedi.buzz/in/en) - Fediverse Trends
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Mastodon Tools
|
|
||||||
|
|
||||||
* 🌐 **[Awesome Mastodon](https://hueyy.github.io/awesome-mastodon/)**, [2](https://github.com/tleb/awesome-mastodon) - Mastodon Resources
|
|
||||||
* ⭐ **[instances.social](https://instances.social/)** or [Mastodon Near Me](http://mastodon-near.me/) - Mastodon Instances
|
|
||||||
* ⭐ **[Mastodon Apps](https://joinmastodon.org/apps)** - Mastodon Client List
|
|
||||||
* [Phanpy](https://phanpy.social/) or [Mastodeck](https://mastodeck.com/) - Mastodon Clients
|
|
||||||
* [MastoVue](https://mastovue.glitch.me/) or [FediWall](https://fediwall.social/) - View Public Timelines / Hashtags
|
|
||||||
* [Followgraph](https://followgraph.vercel.app/) or [StreetPass](https://streetpass.social/) - Find Mastodon Users
|
|
||||||
* [western.social](https://western.social/) - User Search
|
|
||||||
* [Tootfinder](https://www.tootfinder.ch/) - Opt-In Full Text Search
|
|
||||||
* [Mastodon Scheduler](https://scheduler.mastodon.tools/) or [FediPlan](https://plan.fedilab.app/) - Schedule Posts
|
|
||||||
* [Mastodon List Manager](https://www.mastodonlistmanager.org/main) or [Mastodon Lists Manager](https://mastodon-lists-manager.huey.xyz/) - Bulk List Editors
|
|
||||||
* [Mastodon Share Bookmarklet Creator](https://eai04191.github.io/mastodon-share-let-maker/index.html) - Quick Share Bookmarklet
|
|
||||||
* [Mastodon Embed Timeline](https://gitlab.com/idotj/mastodon-embed-timeline) or [Mastofeed](https://mastofeed.com/) - Embedded Mastodon Feeds
|
|
||||||
* [Cheap Bots, Toot Sweet!](https://cheapbotstootsweet.com/) - Create Bots
|
|
||||||
* [emojos.in](https://emojos.in/) - Mastodon Custom Emoji Lists
|
|
||||||
* [MastoMetrics](https://mastometrics.com/) - Mastodon Analytics
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Lemmy Tools
|
|
||||||
|
|
||||||
* ⭐ **[Lemmy Explorer](https://lemmyverse.net/)**, [Feddit Community Browser](https://browse.feddit.de/) or [Awesome Lemmy Instances](https://github.com/maltfield/awesome-lemmy-instances) - Lemmy Instances
|
|
||||||
* ⭐ **[Lemmy Apps](https://join-lemmy.org/apps)** - Lemmy Client List
|
|
||||||
* ⭐ **[Divisions by zero](https://lemmy.dbzer0.com/)** - Piracy Focused Instance
|
* ⭐ **[Divisions by zero](https://lemmy.dbzer0.com/)** - Piracy Focused Instance
|
||||||
* [Quiblr](https://quiblr.com/) - Lemmy Instance Browser
|
* ⭐ **[Pleroma](https://pleroma.social/)** - Federated Microblogging
|
||||||
|
* ⭐ **[Pixelfed](https://pixelfed.org/)** - Federated Microblogging
|
||||||
|
* ⭐ **[diaspora*](https://diasporafoundation.org/)**, [2](https://diasp.org/) - Federated Microblogging
|
||||||
|
* [Misskey](https://misskey-hub.net/en/) - Federated Microblogging
|
||||||
|
* [Friendica](https://friendi.ca/) - Federated Microblogging
|
||||||
|
* [Hubzilla](https://zotlabs.org/page/hubzilla/hubzilla-project) - Federated Microblogging
|
||||||
|
* [GoToSocial](https://docs.gotosocial.org/en/latest/) - Federated Microblogging
|
||||||
|
* [Fedi Tips](https://fedi.tips/) - Fediverse Guide
|
||||||
* [Fediverser](https://portal.alien.top/) - Reddit to Lemmy Community Auto-Sync
|
* [Fediverser](https://portal.alien.top/) - Reddit to Lemmy Community Auto-Sync
|
||||||
* [LemmyTools](https://github.com/howdy-tsc/LemmyTools) - Lemmy Improvement Extension
|
* [LemmyTools](https://github.com/howdy-tsc/LemmyTools) - Lemmy Improvement Extension
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Pixelfed Tools
|
## ▷ Mastodon Tools
|
||||||
|
|
||||||
* 🌐 **[Pixelfed Apps](https://pixelfed.org/mobile-apps)** - Pixelfed Client List
|
* ⭐ **[Mastodon](https://joinmastodon.org/)** - Federated Twitter Alternative
|
||||||
* [Morri](https://github.com/glitchpizza/morii) - Pixelfed App
|
* 🌐 **[Mastodon Instances](https://instances.social/)** or [Mastodon Near Me](http://mastodon-near.me/) - Mastodon Instance Indexes
|
||||||
* [The Federation Pixelfed](https://the-federation.info/platform/26) - Pixelfed Instances
|
* [Tuba](https://tuba.geopjr.dev/) or [Kaiteki](https://kaiteki.app/) - Mastodon Viewers
|
||||||
* [FediDB Pixelfed](https://fedidb.org/software/pixelfed) - Pixelfed Instances
|
* [Mastodon Scheduler](https://scheduler.mastodon.tools/) - Schedule Sending Posts
|
||||||
* [Fediverse Observer Pixelfed](https://pixelfed.fediverse.observer/list) - Pixelfed Instances
|
* [MastoVue](https://mastovue.glitch.me/) - View Public Timelines / Hashtags
|
||||||
* [Pixelfed.social](https://pixelfed.social/) - Pixelfed Instance
|
* [Cheap Bots, Toot Sweet!](https://cheapbotstootsweet.com/) - Create Bots
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Peertube Tools
|
|
||||||
|
|
||||||
* 🌐 **[Peertube Apps](https://docs.joinpeertube.org/use/third-party-application)** - Peertube Client List
|
|
||||||
* [Sepia Search](https://joinpeertube.org/browse-content), [2](https://sepiasearch.org/) - Peertube Search Engine
|
|
||||||
* [Peertube Instances](https://joinpeertube.org/instances), [2](https://instances.joinpeertube.org/instances) - Peertube Instances
|
|
||||||
* [The Federation Peertube](https://the-federation.info/platform/29) - Peertube Instances
|
|
||||||
* [FediDB Peertube](https://fedidb.org/software/peertube) - Peertube Instances
|
|
||||||
* [Fediverse Observer Peertube](https://peertube.fediverse.observer/list) - Peertube Instances
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► 4chan Tools
|
# ► 4chan Tools
|
||||||
|
|
||||||
* ⭐ **[AnyChans](https://anychans.github.io/)** or [LuckyChan](https://luckychan.app/) - 4chan Web Clients
|
* ⭐ **[LuckyChan](https://luckychan.app/)** - Modern 4chan Frontend
|
||||||
* ⭐ **[4chan X](https://www.4chan-x.net/)**, [SpookyX](https://github.com/Fiddlekins/SpookyX), [4Chan XT](https://github.com/TuxedoTako/4chan-xt) or [Dollchan](https://dollchan.net/) - Enhancement Extensions
|
* ⭐ **[4chan X](https://www.4chan-x.net/)**, [SpookyX](https://github.com/Fiddlekins/SpookyX), [4Chan XT](https://github.com/TuxedoTako/4chan-xt) or [Dollchan](https://dollchan.net/) - Enhancement Extensions
|
||||||
* [Lurka](https://github.com/AdamSalma/Lurka) - Desktop Client
|
* [Lurka](https://github.com/AdamSalma/Lurka) - 4chan Desktop Client
|
||||||
* [RedditChan](https://reddit-chan.vercel.app/) - Reddit Style 4chan Web Client
|
* [RedditChan](https://reddit-chan.vercel.app/) - Reddit Style 4chan Frontend
|
||||||
* [4chanCode](https://4chancode.org/) - Code Style 4chan Web Client
|
* [4chanCode](https://4chancode.org/) - Code Style 4chan Frontend
|
||||||
* [4Webm](https://www.4webm.org/) - Load All Webm Videos in 4Chan Thread
|
* [4Webm](https://www.4webm.org/) - Load All Webm Videos in 4Chan Thread
|
||||||
* [4stats](https://4stats.io/) - 4chan Board / Thread Stats
|
* [4stats](https://4stats.io/) - 4chan Board / Thread Stats
|
||||||
* [Mass Reply](https://github.com/HamletDuFromage/4chan-mass-reply) or [Reply All](https://gitlab.com/lucadou/4chan-reply-all) - Mass Reply on 4chan
|
* [Mass Reply](https://github.com/HamletDuFromage/4chan-mass-reply) or [Reply All](https://gitlab.com/lucadou/4chan-reply-all) - Mass Reply on 4chan
|
||||||
@ -759,7 +651,7 @@
|
|||||||
* [4Chan GhostPostMixer](https://github.com/g-gundam/4chan-ghostpostmixer) - Interleave Deleted Posts from Archives
|
* [4Chan GhostPostMixer](https://github.com/g-gundam/4chan-ghostpostmixer) - Interleave Deleted Posts from Archives
|
||||||
* [Tripgen](https://orph.link/tripgen) - Imageboard Trip Code Generator
|
* [Tripgen](https://orph.link/tripgen) - Imageboard Trip Code Generator
|
||||||
* [4Chan Captcha Solver](https://github.com/drunohazarb/4chan-captcha-solver) - Auto Captcha Solvers
|
* [4Chan Captcha Solver](https://github.com/drunohazarb/4chan-captcha-solver) - Auto Captcha Solvers
|
||||||
* [Bypass Derefer](https://greasyfork.org/en/scripts/451259) - Remove Link Derefer
|
* [Bypass Deferer](https://greasyfork.org/en/scripts/451259) - Remove Link Deferer
|
||||||
* [Extra Flags for 4chan](https://gitlab.com/flagtism/Extra-Flags-for-4chan) - Add More Flags to 4chan
|
* [Extra Flags for 4chan](https://gitlab.com/flagtism/Extra-Flags-for-4chan) - Add More Flags to 4chan
|
||||||
* [ss21](https://github.com/saxamaphone69/ss21), [OneeChan](https://github.com/KevinParnell/OneeChan) or [4cheddit](https://greasyfork.org/en/scripts/16672) - 4chan Themes
|
* [ss21](https://github.com/saxamaphone69/ss21), [OneeChan](https://github.com/KevinParnell/OneeChan) or [4cheddit](https://greasyfork.org/en/scripts/16672) - 4chan Themes
|
||||||
|
|
||||||
@ -770,7 +662,6 @@
|
|||||||
* ⭐ **[boards.4channel](https://boards.4channel.org/search)**, [2](https://boards.4chan.org/search) - 4chan Archives
|
* ⭐ **[boards.4channel](https://boards.4channel.org/search)**, [2](https://boards.4chan.org/search) - 4chan Archives
|
||||||
* [4chanSearch](https://4chansearch.com/) or [4search](https://4search.neocities.org/) - Search 4chan Archives
|
* [4chanSearch](https://4chansearch.com/) or [4search](https://4search.neocities.org/) - Search 4chan Archives
|
||||||
* [Oldfriend Archive](https://old.sage.moe/) - 2004 - 2014 Archive
|
* [Oldfriend Archive](https://old.sage.moe/) - 2004 - 2014 Archive
|
||||||
* [Hayden Ultra](https://ultra.gondola.pics/) - 2018-2023 Archive
|
|
||||||
* [Ten Billion](https://archive.org/details/4chan_threads_archive_10_billion) or [4Museum](https://4museum.neocities.org/) - 2006 - 2008 Archive
|
* [Ten Billion](https://archive.org/details/4chan_threads_archive_10_billion) or [4Museum](https://4museum.neocities.org/) - 2006 - 2008 Archive
|
||||||
* [4GBs of 4chan Threads](https://archive.org/details/4chan-threads-2009-2012) - 2009 - 2012 Archive
|
* [4GBs of 4chan Threads](https://archive.org/details/4chan-threads-2009-2012) - 2009 - 2012 Archive
|
||||||
* [Archive.4plebs](https://archive.4plebs.org/) - 2013 - 2023 Archive
|
* [Archive.4plebs](https://archive.4plebs.org/) - 2013 - 2023 Archive
|
||||||
@ -783,12 +674,11 @@
|
|||||||
# ► Blogging Tools
|
# ► Blogging Tools
|
||||||
|
|
||||||
* [Telescope](https://telescope.ac/) - Publishing Platform
|
* [Telescope](https://telescope.ac/) - Publishing Platform
|
||||||
|
* [Bear Blog](https://bearblog.dev/) - Privacy-Based Blogging Platform
|
||||||
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
|
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
|
||||||
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-hosted Blogging Platforms
|
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-hosted Blogging Platforms
|
||||||
* [Multiverse](https://multiverse.plus/) - Make Highly Customizable Blogs
|
* [Multiverse](https://multiverse.plus/) - Make Highly Customizable Blogs
|
||||||
* [Bear Blog](https://bearblog.dev/), [Mataroa](https://mataroa.blog/), or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
* [Mataroa](https://mataroa.blog/), [Notepin](https://notepin.co/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
||||||
* [Notepin](https://notepin.co/) - Anonymous Blogging Platform
|
|
||||||
* [Zonelets](https://zonelets.net/) - Static Blog Template
|
|
||||||
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
|
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
|
||||||
* [Emanates Docs](https://emanates.deepjyoti30.dev/) - Make GitHub-Based Blogs
|
* [Emanates Docs](https://emanates.deepjyoti30.dev/) - Make GitHub-Based Blogs
|
||||||
* [You Don't Need WP](https://www.youdontneedwp.com/) - Make Blogs with Google Docs
|
* [You Don't Need WP](https://www.youdontneedwp.com/) - Make Blogs with Google Docs
|
||||||
|
382
System-Tools.md
382
System-Tools.md
@ -7,73 +7,77 @@
|
|||||||
# ► System Tools
|
# ► System Tools
|
||||||
|
|
||||||
* 🌐 **[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)** or [All About Windows](https://github.com/luke-beep/all-about-windows) - System Optimization Resources
|
||||||
* ↪️ **[Gaming Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25B7_optimization_tools)**
|
* ↪️ **[Gaming Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25B7_optimization_tools)**
|
||||||
* ⭐ **[PowerToys](https://learn.microsoft.com/en-us/windows/powertoys/)**, [Sysinternals](https://learn.microsoft.com/en-us/sysinternals/) / [Suite](https://apps.microsoft.com/store/detail/sysinternals-suite/9P7KNL5RWT25) or [JaxCore](https://jaxcore.app/) - System Tools
|
* ⭐ **[PowerToys](https://learn.microsoft.com/en-us/windows/powertoys/)**, [Sysinternals](https://learn.microsoft.com/en-us/sysinternals/) / [Suite](https://apps.microsoft.com/store/detail/sysinternals-suite/9P7KNL5RWT25) or [JaxCore](https://jaxcore.app/) - 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) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Information Tools
|
* ⭐ **[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)**, [winfetch](https://github.com/lptstr/winfetch) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Information Tools
|
||||||
* ⭐ **[SuperF4](https://stefansundin.github.io/superf4/)** or [FKill](https://github.com/sindresorhus/fkill-cli) - Process Killers
|
* ⭐ **[AutoHotkey](https://www.autohotkey.com/)**, [AutoIt](https://www.autoitscript.com/) / [Resources](https://github.com/J2TEAM/awesome-AutoIt), [Power Automate](https://learn.microsoft.com/en-us/power-automate/desktop-flows/install), [sikulix](http://sikulix.com/) or [ChoEazyCopy](https://github.com/Cinchoo/ChoEazyCopy) - Task Automation
|
||||||
* ⭐ **[AutoHotkey](https://www.autohotkey.com/)** / [Discord](https://discord.com/invite/Aat7KHmG7v), [AutoIt](https://www.autoitscript.com/) / [Resources](https://github.com/J2TEAM/awesome-AutoIt), [Power Automate](https://learn.microsoft.com/en-us/power-automate/desktop-flows/install), [sikulix](http://sikulix.com/) or [ChoEazyCopy](https://github.com/Cinchoo/ChoEazyCopy) - Task Automation
|
|
||||||
* ⭐ **AutoHotkey Tools** - [Script Gen](https://www.ahkgen.com/) / [Resources](https://github.com/ahkscript/awesome-AutoHotkey)
|
* ⭐ **AutoHotkey Tools** - [Script Gen](https://www.ahkgen.com/) / [Resources](https://github.com/ahkscript/awesome-AutoHotkey)
|
||||||
* [Windows-11-Guide](https://github.com/mikeroyal/Windows-11-Guide), [Pastas](https://rentry.org/pastas#guides), [Eleven Forums Guides](https://www.elevenforum.com/tutorials/) or [Ten Forums Guides](https://www.tenforums.com/tutorials/) - Windows Guides
|
* [Windows-11-Guide](https://github.com/mikeroyal/Windows-11-Guide), [Pastas](https://rentry.org/pastas#guides), [Eleven Forums Guides](https://www.elevenforum.com/tutorials/) or [Ten Forums Guides](https://www.tenforums.com/tutorials/) - Windows Guides
|
||||||
* [Autoruns](https://learn.microsoft.com/en-us/sysinternals/downloads/autoruns) - Change Startup Programs
|
|
||||||
* [NanaRun](https://github.com/M2Team/NanaRun) - System Admin Tools
|
* [NanaRun](https://github.com/M2Team/NanaRun) - System Admin Tools
|
||||||
|
* [Übersicht](https://tracesof.net/uebersicht/) - System Command Widgets
|
||||||
* [PolicyPlus](https://github.com/Fleex255/PolicyPlus) - Local Group Policy Editor
|
* [PolicyPlus](https://github.com/Fleex255/PolicyPlus) - Local Group Policy Editor
|
||||||
* [PowerPlanSwitcher](https://www.microsoft.com/en-us/p/powerplanswitcher/9nblggh556l3) - Quickly Change Power Schemes
|
* [PowerPlanSwitcher](https://www.microsoft.com/en-us/p/powerplanswitcher/9nblggh556l3) - Quickly Change Power Schemes
|
||||||
* [Scheduler](https://www.splinterware.com/products/scheduler.html) or [TaskRunner](https://www.keyefficiency.com/) - System Task Scheduler
|
* [Scheduler](https://www.splinterware.com/products/scheduler.html) or [TaskRunner](https://www.keyefficiency.com/) - System Task Scheduler
|
||||||
* [Process Explorer](https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer) or [System Informer](https://systeminformer.sourceforge.io/) - Process Monitors
|
* [Process Explorer](https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer) or [Process Hacker](https://processhacker.sourceforge.io/) - Process Monitors
|
||||||
* [7-Max](https://7-max.com/) - Increase App Performance
|
* [SuperF4](https://stefansundin.github.io/superf4/) or [FKill](https://github.com/sindresorhus/fkill-cli) - Process Killers
|
||||||
|
* [Dependencies](https://github.com/lucasg/Dependencies) - View Application Dependencies
|
||||||
* [RegExp](https://github.com/zodiacon/TotalRegistry), [ripgrep-all](https://github.com/phiresky/ripgrep-all) or [Registry-Finder](https://registry-finder.com/) - Registry Explorers
|
* [RegExp](https://github.com/zodiacon/TotalRegistry), [ripgrep-all](https://github.com/phiresky/ripgrep-all) or [Registry-Finder](https://registry-finder.com/) - Registry Explorers
|
||||||
* [WinbIndex](https://winbindex.m417z.com/) - Windows System Files / Binaries
|
* [WinbIndex](https://winbindex.m417z.com/) - Windows System Files / Binaries
|
||||||
* [OfflineInsiderEnroll](https://github.com/abbodi1406/offlineinsiderenroll) - Enable Windows Insider without Account
|
* [OfflineInsiderEnroll](https://github.com/abbodi1406/offlineinsiderenroll) - Enable Windows Insider without Account
|
||||||
* [Google Assistant Desktop Client](https://github.com/Melvin-Abraham/Google-Assistant-Unofficial-Desktop-Client) or [Leon](https://getleon.ai/) - AI Assistant
|
* [OpenHab](https://www.openhab.org/) - Home Automation / [Setup](https://github.com/openhab/openhabian) / [Mobile](https://github.com/openhab/openhab-android)
|
||||||
|
* [Google Assistant Desktop Client](https://github.com/Melvin-Abraham/Google-Assistant-Unofficial-Desktop-Client) or [Home Assistant](https://www.home-assistant.io/) - Home Assistant Client / [GUI](https://github.com/LAB02-Research/HASS.Agent)
|
||||||
|
* [hOn](https://github.com/Andre0512/hOn) - Home Assistant Integration for Appliances
|
||||||
|
* [CasaOS](https://casaos.io/) - Cloud Home System / [GitHub](https://github.com/IceWhaleTech/CasaOS)
|
||||||
|
* [Leon](https://getleon.ai/) - AI Assistant
|
||||||
* [Rhasspy](https://rhasspy.readthedocs.io/en/latest/) - Voice Assistant
|
* [Rhasspy](https://rhasspy.readthedocs.io/en/latest/) - Voice Assistant
|
||||||
* [OpenRecall](https://github.com/openrecall/openrecall) or [Windrecorder](https://github.com/yuka-friends/Windrecorder/) - Memory Search App / System Recorders
|
|
||||||
* [Time.is](https://time.is/) - Check Accuracy of System Clock
|
* [Time.is](https://time.is/) - Check Accuracy of System Clock
|
||||||
* [G-Helper](https://github.com/seerge/g-helper) - Lightweight Armoury Crate Alternative
|
* [StreamPi](https://stream-pi.com/) - ElGato Streamdeck Alternative
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ System Debloating
|
## ▷ System Debloating
|
||||||
|
|
||||||
**Warning** - It's not recommended to use debloaters unless you know what you're doing. Always research first, never just "Apply All" randomly.
|
* **Warning** - It's not recommended to use debloaters unless you know what you're doing. Always research first, never just "Apply All" randomly.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[Debloat Guide](https://rentry.co/debloatguide)** - Windows Debloat Guide
|
* ⭐ **[Bulk Crap Uninstaller](https://www.bcuninstaller.com/)** - Bulk Uninstallation Tool
|
||||||
* ⭐ **[Bulk Crap Uninstaller](https://www.bcuninstaller.com/)** - Bulk Uninstallation Tools
|
|
||||||
* ⭐ **[BleachBit](https://www.bleachbit.org/)** - Clean System Storage
|
* ⭐ **[BleachBit](https://www.bleachbit.org/)** - Clean System Storage
|
||||||
* ⭐ **[SophiApp](https://github.com/Sophia-Community/SophiApp)** / [Script](https://github.com/farag2/Sophia-Script-for-Windows) - Debloater
|
* ⭐ **[SophiApp](https://github.com/Sophia-Community/SophiApp)** / [Script](https://github.com/farag2/Sophia-Script-for-Windows) - Debloater
|
||||||
* [GhostBuster](https://bitbucket.org/wvd-vegt/ghostbuster/src/master/) or [Device Cleanup Tool](https://www.majorgeeks.com/files/details/device_cleanup_tool.html) - Remove Non-Present Devices
|
* [GhostBuster](https://bitbucket.org/wvd-vegt/ghostbuster/src/master/) or [Device Cleanup Tool](https://www.majorgeeks.com/files/details/device_cleanup_tool.html) - Remove Non-Present Devices
|
||||||
* [Win11Debloat](https://github.com/Raphire/Win11Debloat) - Debloater
|
* [Win10Debloat](https://github.com/Raphire/Win10Debloat) - Debloater
|
||||||
* [Should I Remove It?](https://www.shouldiremoveit.com/) - Program Removal Guide
|
* [Adobe Debloater](https://github.com/FlickyOs/Adobe-Debloater) - Debloat Adobe Apps
|
||||||
|
* [BloatyNosy](https://github.com/builtbybel/BloatyNosy) - Windows 11 Debloaters
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ System Tweaks
|
## ▷ System Tweaks
|
||||||
|
|
||||||
* ⭐ **[EverythingToolbar](https://github.com/srwi/EverythingToolbar)** or [yasb](https://github.com/da-rth/yasb) - Improved Taskbars
|
* ⭐ **[EverythingToolbar](https://github.com/srwi/EverythingToolbar)**, [Hyper](https://github.com/hyperts/Hyper), [yasb](https://github.com/denBot/yasb) or [Smart Taskbar](https://github.com/ChanpleCai/SmartTaskbar) - Improved Taskbars
|
||||||
* ⭐ **[Open Shell](https://open-shell.github.io/Open-Shell-Menu/)** or [ValliStart](https://github.com/Jax-Core/ValliStart) - Improved Start Menus
|
|
||||||
* ⭐ **[EarTrumpet](https://eartrumpet.app/)**, [Volumey](https://github.com/G-Stas/Volumey) or [Volume2](https://github.com/irzyxa/Volume2) - Improved Volume Mixer
|
* ⭐ **[EarTrumpet](https://eartrumpet.app/)**, [Volumey](https://github.com/G-Stas/Volumey) or [Volume2](https://github.com/irzyxa/Volume2) - Improved Volume Mixer
|
||||||
* ⭐ **[AltSnap](https://github.com/RamonUnch/AltSnap)** - Improved Windows Dragging
|
* [Couleur Tweak Tips](https://discord.gg/CTT) - Windows Tweaking Guides
|
||||||
* [Couleur Tweak Tips (Discord)](https://discord.gg/CTT) - Windows Tweaking Guides
|
|
||||||
* [MajorGeeks Windows Tweaks](https://www.majorgeeks.com/files/details/majorgeeks_registry_tweaks.html), [Winaero](https://winaero.com/), [QuickBoost](https://github.com/SanGraphic/QuickBoost) or [Windhawk](https://windhawk.net/) - System Tweaking Tools / **[Warning](https://pastebin.com/vMYCiAGE)**
|
* [MajorGeeks Windows Tweaks](https://www.majorgeeks.com/files/details/majorgeeks_registry_tweaks.html), [Winaero](https://winaero.com/), [QuickBoost](https://github.com/SanGraphic/QuickBoost) or [Windhawk](https://windhawk.net/) - System Tweaking Tools / **[Warning](https://pastebin.com/vMYCiAGE)**
|
||||||
* [abbodi1406](https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/), [BatUtil](https://github.com/abbodi1406/BatUtil) or [TechNet-Gallery](https://github.com/MScholtes/TechNet-Gallery) - System Scripts
|
* [Awesome Scripts](https://github.com/Py-Contributors/awesomeScripts), [abbodi1406](https://forums.mydigitallife.net/posts/1343297/), [BatUtil](https://github.com/abbodi1406/BatUtil) or [TechNet-Gallery](https://github.com/MScholtes/TechNet-Gallery) - System Scripts
|
||||||
* [Win10 Widgets](https://win10widgets.com/) or [Eww](https://github.com/elkowar/eww) - Widgets for Windows
|
* [Win10 Widgets](https://win10widgets.com/), [BeWidgets](https://apps.microsoft.com/store/detail/bewidgets/9NQ07FG50H2Q) or [Eww](https://github.com/elkowar/eww) - Widgets for Windows
|
||||||
* [Wintoys](https://apps.microsoft.com/store/detail/wintoys/9P8LTPGCBZXD) - System App Tweaking
|
* [Wintoys](https://apps.microsoft.com/store/detail/wintoys/9P8LTPGCBZXD) - Improved Control Panels
|
||||||
* [Kando](https://github.com/kando-menu/kando) - App Launcher / Pie Menu / [Discord](https://discord.gg/hZwbVSDkhy)
|
* [Hunt and Peck](https://github.com/zsims/hunt-and-peck/), [Cerebro App](https://cerebroapp.com/) or [Zazu App](https://zazuapp.org/) - Improved System Navigation
|
||||||
* [Hunt and Peck](https://github.com/zsims/hunt-and-peck/) or [Cerebro App](https://cerebroapp.com/) - Improved System Navigation
|
|
||||||
* [SmartSystemMenu](https://github.com/AlexanderPro/SmartSystemMenu) - Improved System Menu
|
* [SmartSystemMenu](https://github.com/AlexanderPro/SmartSystemMenu) - Improved System Menu
|
||||||
* [EasyContextMenu](https://www.sordum.org/7615/easy-context-menu-v1-6/) or [Nilesoft Shell](https://nilesoft.org/) - Improved Context Menus
|
* [EasyContextMenu](https://www.sordum.org/7615/easy-context-menu-v1-6/) or [Context Menu Shell](https://nilesoft.org/) - Improved Context Menus
|
||||||
* [ContextMenuManager](https://github.com/BluePointLilac/ContextMenuManager/blob/master/README-en.md) - Customize Context Menu
|
* [OpenWith++](https://github.com/stax76/OpenWithPlusPlus) or [ContextMenuManager](https://github.com/BluePointLilac/ContextMenuManager/blob/master/README-en.md) - Customize Context Menu
|
||||||
* [RCWM](https://github.com/GChuf/RCWM) - Context Menu Tools
|
* [RCWM](https://github.com/GChuf/RCWM) - Context Menu Tools
|
||||||
|
* [Open Shell](https://open-shell.github.io/Open-Shell-Menu/) or [ValliStart](https://github.com/Jax-Core/ValliStart) - Improved Start Menus
|
||||||
* [Spencer](https://www.the-sz.com/products/spencer/) or [Fluent-Metro](https://github.com/bonzibudd/Fluent-Metro) - Classic Start Menu
|
* [Spencer](https://www.the-sz.com/products/spencer/) or [Fluent-Metro](https://github.com/bonzibudd/Fluent-Metro) - Classic Start Menu
|
||||||
* [Taskbar Tweaker](https://ramensoftware.com/7-taskbar-tweaker) - Taskbar Advanced Features
|
* [Taskbar Tweaker](https://ramensoftware.com/7-taskbar-tweaker) - Taskbar Advanced Features
|
||||||
|
* [Taskbar Groups](https://github.com/tjackenpacken/taskbar-groups) - Create Groups in Taskbar
|
||||||
* [ButteryTaskbar](https://github.com/LuisThiamNye/ButteryTaskbar2) - Hide Taskbar When Start Menu is Closed
|
* [ButteryTaskbar](https://github.com/LuisThiamNye/ButteryTaskbar2) - Hide Taskbar When Start Menu is Closed
|
||||||
* [Taskbar Hide](https://www.eusing.com/hidewindows/bosskey.htm) - Easily Hide / Show Taskbar
|
* [Taskbar Hide](https://www.eusing.com/hidewindows/bosskey.htm) - Easily Hide / Show Taskbar
|
||||||
* [minimize-to-tray](https://sourceforge.net/projects/minimize-to-tray/) - Minimize Windows to Tray
|
* [MinimizeToTray](https://github.com/sandwichdoge/MinimizeToTray), [Traymond](https://github.com/fcFn/traymond), [RBTray](https://github.com/benbuck/rbtray) or [minimize-to-tray](https://sourceforge.net/projects/minimize-to-tray/) - Minimize Windows to Tray
|
||||||
* [QuickLook](https://github.com/QL-Win/QuickLook) - macOS Quick Look for Windows
|
* [QuickLook](https://github.com/QL-Win/QuickLook) - macOS Quick Look for Windows
|
||||||
* [TopNotify](https://github.com/SamsidParty/TopNotify) - Move Windows Notifications
|
* [MediaFlyout](https://github.com/krlvm/MediaFlyout) - Media Control Taskbar
|
||||||
* [BurntToast](https://github.com/Windos/BurntToast) - Create and display Toast Notifications
|
* [BurntToast](https://github.com/Windos/BurntToast) - Create and display Toast Notifications
|
||||||
|
* [TrayVolumeControl](https://github.com/krlvm/TrayVolumeControl) - Control Tray Volume via Scroll
|
||||||
|
* [HideVolumeOSD](https://github.com/UnlimitedStack/HideVolumeOSD) - Hide Volume Bar
|
||||||
* [WinMute](https://github.com/lx-s/WinMute/) - Automatically Mute PC
|
* [WinMute](https://github.com/lx-s/WinMute/) - Automatically Mute PC
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -82,13 +86,14 @@
|
|||||||
|
|
||||||
* ⭐ **[Scoop](https://scoop.sh/)**
|
* ⭐ **[Scoop](https://scoop.sh/)**
|
||||||
* ⭐ **[Ninite](https://ninite.com/)**
|
* ⭐ **[Ninite](https://ninite.com/)**
|
||||||
* ⭐ **[UniGetUI](https://github.com/marticliment/WingetUI)** or [winget-cli](https://github.com/microsoft/winget-cli)
|
* ⭐ **[WinGet](https://github.com/microsoft/winget-cli)**
|
||||||
* ⭐ **WinGet Tools** - [Tools](https://github.com/jdhitsolutions/WingetTools) / [Repo Browser](https://winstall.app/) / [Packages](https://github.com/microsoft/winget-pkgs), [2](https://winget.run/) / [Automation](https://github.com/topgrade-rs/topgrade) / [Pac-Man](https://github.com/rami3l/pacaptr)
|
* ⭐ **WinGet Tools** - [Tools](https://github.com/jdhitsolutions/WingetTools) / [Winget UI](https://github.com/marticliment/WingetUI) / [Packages](https://github.com/microsoft/winget-pkgs), [2](https://winget.run/) / [Automation](https://github.com/topgrade-rs/topgrade) / [Pac-Man](https://github.com/rami3l/pacaptr)
|
||||||
* [NirLauncher](https://launcher.nirsoft.net/)
|
* [NirLauncher](https://launcher.nirsoft.net/)
|
||||||
* [Chocolatey](https://chocolatey.org/) / [GUI](https://github.com/chocolatey/ChocolateyGUI)
|
* [Chocolatey](https://chocolatey.org/) / [GUI](https://github.com/chocolatey/ChocolateyGUI)
|
||||||
* [Spinel](https://spinel.ovh/) - Multi-Program Install Script Generator
|
* [Spinel](https://spinel.ovh/) - Multi-Program Install Script Generator
|
||||||
* [Silent Install](https://www.silentinstall.org/) - Build Multi-Program Installers
|
* [Silent Install](https://www.silentinstall.org/) - Build Multi-Program Installers
|
||||||
* [Patch My PC](https://patchmypc.com/home-updater)
|
* [Patch My PC](https://patchmypc.com/home-updater)
|
||||||
|
* [WinInstall](https://winstall.app/)
|
||||||
* [RuckZuck](https://ruckzuck.tools/)
|
* [RuckZuck](https://ruckzuck.tools/)
|
||||||
* [0Install](https://0install.net/)
|
* [0Install](https://0install.net/)
|
||||||
* [portableapps](https://portableapps.com/download)
|
* [portableapps](https://portableapps.com/download)
|
||||||
@ -98,34 +103,39 @@
|
|||||||
|
|
||||||
## ▷ Terminal / CLI
|
## ▷ Terminal / CLI
|
||||||
|
|
||||||
* 🌐 **[terminals-are-sexy](https://terminalsare.sexy/)** - Terminal Resources
|
* 🌐 **[terminals-are-sexy](https://github.com/k4m4/terminals-are-sexy)** - Terminal Resources
|
||||||
* 🌐 **[Awesome CLI Apps](https://github.com/agarrharr/awesome-cli-apps)** or [Command Line Tools](https://github.com/learn-anything/command-line-tools) - Command Line Resources
|
* 🌐 **[awesome-cli-apps](https://github.com/agarrharr/awesome-cli-apps)** or [command-line-tools](https://github.com/learn-anything/command-line-tools) - Command Line Resources
|
||||||
* ⭐ **[Clink](https://github.com/chrisant996/clink)** - Command Line Editing
|
* ⭐ **[Clink](https://github.com/chrisant996/clink)** - Command Line Editing
|
||||||
* ⭐ **[ss64](https://ss64.com/)** - Command Line Reference Index
|
* ⭐ **[ss64](https://ss64.com/)** - Command Line Reference Index
|
||||||
* [Windows Terminal](https://www.microsoft.com/store/productId/9N0DX20HK701) / [2](https://github.com/microsoft/terminal/), [kitty](https://sw.kovidgoyal.net/kitty/), [Tess](https://github.com/SquitchYT/Tess), [ConEmu](https://github.com/Maximus5/ConEmu), [Hyper](https://hyper.is/), [Tabby](https://tabby.sh/) or [MobaXterm](https://mobaxterm.mobatek.net/) - Windows Terminals
|
* [Windows Terminal](https://www.microsoft.com/store/productId/9N0DX20HK701) / [2](https://github.com/microsoft/terminal/), [kitty](https://sw.kovidgoyal.net/kitty/), [Tess](https://github.com/SquitchYT/Tess), [ConEmu](https://github.com/Maximus5/ConEmu), [Hyper](https://hyper.is/), [Terminus](https://eugeny.github.io/terminus/), [console 2](https://github.com/cbucher/console) or [MobaXterm](https://mobaxterm.mobatek.net/) - Windows Terminals
|
||||||
* [BusyBox](https://frippery.org/busybox/) - Unix Commands for Windows
|
* [BusyBox](https://frippery.org/busybox/) - Unix Commands for Windows
|
||||||
* [Tiny Care Terminal](https://github.com/notwaldorf/tiny-care-terminal) - Terminal Dashboard That Cares
|
* [Tiny Care Terminal](https://github.com/notwaldorf/tiny-care-terminal) - Terminal Dashboard That Cares
|
||||||
* [Gradient Terminal](https://github.com/aurora-0025/gradient-terminal) - Display Terminal Output as Gradient
|
* [Gradient Terminal](https://github.com/aurora-0025/gradient-terminal) - Display Terminal Output as Gradient
|
||||||
* [Command Challenge](https://cmdchallenge.com/) - Command Line Learning
|
* [Command Challenge](https://cmdchallenge.com/) - Command Line Learning
|
||||||
* [Alacritty](https://github.com/alacritty/alacritty), [Fluent Terminal](https://github.com/felixse/FluentTerminal), [Tabby](https://tabby.sh/), [Wives](https://github.com/KRTirtho/wives), or [ExtraTerm](https://extraterm.org/) - Terminal Emulators
|
* [Terminal Icons](https://github.com/devblackops/Terminal-Icons) - File and Folder Icons in Terminal
|
||||||
|
* [Alacritty](https://github.com/alacritty/alacritty), [yakuake](https://apps.kde.org/yakuake/), [Fluent Terminal](https://github.com/felixse/FluentTerminal), [Tabby](https://eugeny.github.io/tabby/), [Wives](https://github.com/KRTirtho/wives), [ExtraTerm](https://extraterm.org/) or [Terminus](https://github.com/Eugeny/tabby) - Terminal Emulators
|
||||||
|
* [XTerm](https://invisible-island.net/xterm/) - X Window System Terminal Emulator
|
||||||
* [Mintty](https://mintty.github.io/) - Cygwin Terminal Emulator
|
* [Mintty](https://mintty.github.io/) - Cygwin Terminal Emulator
|
||||||
|
* [termbin](https://termbin.com/) - Terminal Output Pastebin
|
||||||
* [GetDNote](https://www.getdnote.com/) - Command Line Notebook
|
* [GetDNote](https://www.getdnote.com/) - Command Line Notebook
|
||||||
* [cmder](https://cmder.app) - Console Emulator Package / [GitHub](https://github.com/cmderdev/cmder)
|
* [cmder](https://cmder.app) - Console Emulator Package / [GitHub](https://github.com/cmderdev/cmder)
|
||||||
* [PowerShell](https://github.com/powershell/powershell) - PC / Mac / Linux PowerShell
|
* [PowerShell](https://github.com/powershell/powershell) - PC / Mac / Linux PowerShell
|
||||||
* [Write-Menu](https://github.com/QuietusPlus/Write-Menu) or [ps-menu](https://github.com/chrisseroka/ps-menu) - PowerShell Console Menu
|
* [PowershellMenu](https://github.com/Mike-Branham/PowershellMenu), [Write-Menu](https://github.com/QuietusPlus/Write-Menu) or [ps-menu](https://github.com/chrisseroka/ps-menu) - PowerShell Console Menu
|
||||||
* [LeanandMean](https://github.com/AveYo/LeanAndMean) - Powershell Snippets / Use with Caution
|
* [LeanandMean](https://github.com/AveYo/LeanAndMean) - Powershell Snippets / Use with Caution
|
||||||
* [PowerShell Scripts](https://github.com/fleschutz/PowerShell) - PowerShell Scripts
|
* [PowerShell Scripts](https://github.com/fleschutz/PowerShell) - PowerShell Scripts
|
||||||
* [PSReadLine](https://github.com/PowerShell/PSReadLine) - PowerShell Readline Implementation
|
* [PSReadLine](https://github.com/PowerShell/PSReadLine) - PowerShell Readline Implementation
|
||||||
* [SystemNightware](https://github.com/GossiTheDog/SystemNightmare) - Instant System Command Prompt
|
* [SystemNightware](https://github.com/GossiTheDog/SystemNightmare) - Instant System Command Prompt
|
||||||
* [Starship](https://starship.rs/) - Cross-Shell Prompt
|
* [Starship](https://starship.rs/) - Cross-Shell Prompt
|
||||||
* [GNU Parallel](https://www.gnu.org/software/parallel/) - Execute Commands / Scripts in Parallel using Multiple Computers
|
* [GNU Parallel](https://www.gnu.org/software/parallel/) - Execute Commands / Scripts in Parallel using Multiple Computers
|
||||||
|
* [Command Not Found](https://command-not-found.com/) - Install Missing Commands
|
||||||
* [Nushell](https://www.nushell.sh/) - Alt Shell
|
* [Nushell](https://www.nushell.sh/) - Alt Shell
|
||||||
* [GSudo](https://github.com/gerardog/gsudo) - Sudo Alternative for Windows
|
* [GSudo](https://github.com/gerardog/gsudo) - Sudo Alternative for Windows
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Remote Desktop
|
## ▷ Remote Desktop
|
||||||
|
|
||||||
|
* 🌐 **[VPS Comparison Chart](https://lowendstock.com/)** - VPS Comparisons
|
||||||
* ⭐ **[RustDesk](https://rustdesk.com/)** / [GitHub](https://github.com/rustdesk/rustdesk)
|
* ⭐ **[RustDesk](https://rustdesk.com/)** / [GitHub](https://github.com/rustdesk/rustdesk)
|
||||||
* ⭐ **[Parsec](https://parsec.app/)**
|
* ⭐ **[Parsec](https://parsec.app/)**
|
||||||
* [Ammyy](https://www.ammyy.com/en/)
|
* [Ammyy](https://www.ammyy.com/en/)
|
||||||
@ -140,14 +150,16 @@
|
|||||||
* [UVNC](https://uvnc.com/)
|
* [UVNC](https://uvnc.com/)
|
||||||
* [ChimeraDesk](https://github.com/morrolinux/ChimeraDesk)
|
* [ChimeraDesk](https://github.com/morrolinux/ChimeraDesk)
|
||||||
* [NoMachine](https://www.nomachine.com/)
|
* [NoMachine](https://www.nomachine.com/)
|
||||||
* [PowerRemoteDesktop](https://github.com/PhrozenIO/PowerRemoteDesktop)
|
* [PowerRemoteDesktop](https://github.com/DarkCoderSc/PowerRemoteDesktop)
|
||||||
* [Screego](https://app.screego.net/) / [GitHub](https://github.com/screego/server/)
|
* [Screego](https://app.screego.net/) / [GitHub](https://github.com/screego/server/)
|
||||||
* [Screensy](https://screensy.marijn.it/) / [GitHub](https://github.com/screensy/screensy)
|
* [Screensy](https://screensy.marijn.it/) / [GitHub](https://github.com/screensy/screensy)
|
||||||
* [here.fm](https://here.fm/)
|
* [here.fm](https://here.fm/)
|
||||||
|
* [SharpRDP](https://github.com/0xthirteen/SharpRDP)
|
||||||
* [HopToDesk](https://www.hoptodesk.com/)
|
* [HopToDesk](https://www.hoptodesk.com/)
|
||||||
* [CoScreen](https://www.coscreen.co/)
|
* [CoScreen](https://www.coscreen.co/)
|
||||||
* [TigerVNC](https://tigervnc.org/) - VNC
|
* [TigerVNC](https://tigervnc.org/) - VNC
|
||||||
* [noVNC](https://novnc.com/info.html) - JavaScript VNC
|
* [noVNC](https://novnc.com/info.html) - JavaScript VNC
|
||||||
|
* [Oracle VPS](https://rentry.co/oraclevps) - VPS
|
||||||
* [InputDirector](https://www.inputdirector.com/) - Multi-Computer
|
* [InputDirector](https://www.inputdirector.com/) - Multi-Computer
|
||||||
* [Barrier](https://github.com/debauchee/barrier) - Multi-Computer
|
* [Barrier](https://github.com/debauchee/barrier) - Multi-Computer
|
||||||
* [Mouse Without Borders](https://www.microsoft.com/en-us/garage/wall-of-fame/mouse-without-borders/) - Multi-Computer
|
* [Mouse Without Borders](https://www.microsoft.com/en-us/garage/wall-of-fame/mouse-without-borders/) - Multi-Computer
|
||||||
@ -159,10 +171,13 @@
|
|||||||
|
|
||||||
* ⭐ **[Ditto](https://ditto-cp.sourceforge.io/)**
|
* ⭐ **[Ditto](https://ditto-cp.sourceforge.io/)**
|
||||||
* [ArsClip](https://www.joejoesoft.com/vcms/97/)
|
* [ArsClip](https://www.joejoesoft.com/vcms/97/)
|
||||||
|
* [ClipboardMemo](https://gitlab.com/fabrom/clipboardmemo)
|
||||||
* [CopyQ](https://hluk.github.io/CopyQ/)
|
* [CopyQ](https://hluk.github.io/CopyQ/)
|
||||||
|
* [Free Clipboard Viewer](https://freeclipboardviewer.com/)
|
||||||
* [ClipAngel](https://sourceforge.net/projects/clip-angel/)
|
* [ClipAngel](https://sourceforge.net/projects/clip-angel/)
|
||||||
* [XClipper](https://kaustubhpatange.github.io/XClipper/)
|
* [XClipper](https://github.com/KaustubhPatange/XClipper)
|
||||||
* [MultiClipBoardSlots](https://www.softwareok.com/?seite=Microsoft/MultiClipBoardSlots)
|
* [MultiClipBoardSlots](https://www.softwareok.com/?seite=Microsoft/MultiClipBoardSlots)
|
||||||
|
* [Clipboard Canvas](https://github.com/d2dyno1/ClipboardCanvas)
|
||||||
* [Xtra Clipboard](https://xtra-clipboard.com/)
|
* [Xtra Clipboard](https://xtra-clipboard.com/)
|
||||||
* [Control V](https://ctrl.vi/)
|
* [Control V](https://ctrl.vi/)
|
||||||
|
|
||||||
@ -172,27 +187,24 @@
|
|||||||
|
|
||||||
* ⭐ **[GlazeWM](https://github.com/glzr-io/glazewm)**
|
* ⭐ **[GlazeWM](https://github.com/glzr-io/glazewm)**
|
||||||
* ⭐ **[Komorebi](https://github.com/LGUG2Z/komorebi)**
|
* ⭐ **[Komorebi](https://github.com/LGUG2Z/komorebi)**
|
||||||
* ⭐ **[WorkSpacer](https://workspacer.org/)**
|
* [nog](https://github.com/TimUntersberger/nog)
|
||||||
* [Whim](https://github.com/dalyIsaac/Whim/)
|
* [bug.n](https://github.com/fuhsjr00/bug.n)
|
||||||
|
* [GridMove](https://www.dcmembers.com/jgpaiva/)
|
||||||
|
* [WorkSpacer](https://workspacer.org/)
|
||||||
|
* [TileMe](https://gitlab.com/slavoutich/tileme)
|
||||||
* [MiguruWM](https://github.com/imawizard/MiguruWM)
|
* [MiguruWM](https://github.com/imawizard/MiguruWM)
|
||||||
* [DWM](https://github.com/prabirshrestha/dwm-win32)
|
* [WindowsGrid](http://windowgrid.net/)
|
||||||
* [United Sets](https://github.com/Windows-Apps-Hub/UnitedSets) - Group Windows Into Tabs
|
* [United Sets](https://github.com/Windows-Apps-Hub/UnitedSets) - Group Windows Into Tabs
|
||||||
|
* [AltSnap](https://github.com/RamonUnch/AltSnap) - Improved Windows Dragging
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Virtual Machines
|
## ▷ Virtual Machines
|
||||||
|
|
||||||
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
* ⭐ **[VirtualBox](https://www.virtualbox.org/)** / [Portable](https://www.vbox.me/), [Looking Glass](https://looking-glass.io/), [Qemu](https://gitlab.com/qemu-project/qemu), [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows//), [fvwm](https://www.fvwm.org/), [Denodo Test](https://www.denodo.com/en/denodo-platform/test-drives?utm_source=homepage&utm_medium=bn) or [VMware Workstation Player](https://www.vmware.com/products/workstation-player/workstation-player-evaluation.html) - Virtual Machines / [Preinstalled VMS](https://www.osboxes.org/)
|
||||||
* ⭐ **[VirtualBox](https://www.virtualbox.org/)** - Virtual Machine / [Portable](https://www.vbox.me/)
|
|
||||||
* ⭐ **[Virt-Manager](https://virt-manager.org/)** or [Vagrantup](https://www.vagrantup.com/) - Virtual Machine Managers
|
|
||||||
* ⭐ **[Hackintosh](https://hackintosh.com/)**, [Emaculation](https://www.emaculation.com/), [felixrieseberg](https://github.com/felixrieseberg/macintosh.js/) or [OneClick-macOS](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) - macOS Virtual Machines
|
* ⭐ **[Hackintosh](https://hackintosh.com/)**, [Emaculation](https://www.emaculation.com/), [felixrieseberg](https://github.com/felixrieseberg/macintosh.js/) or [OneClick-macOS](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) - macOS Virtual Machines
|
||||||
* ⭐ **Hackintosh Tools** - [Guide](https://www.tonymacx86.com/) / [AMD Guide](https://chefkissinc.github.io/guide) / [Ryzen](https://github.com/mikigal/ryzen-hackintosh) / [XiaoMi](https://github.com/daliansky/XiaoMi-Pro-Hackintosh)
|
* ⭐ **Hackintosh Tools** - [Guide](https://github.com/dortania/macOS-VMware-Guide), [2](https://www.tonymacx86.com/) / [AMD Guide](https://chefkissinc.github.io/guide) / [Ryzen](https://github.com/mikigal/ryzen-hackintosh) / [XiaoMi](https://github.com/daliansky/XiaoMi-Pro-Hackintosh)
|
||||||
* [VMware Workstation](https://blogs.vmware.com/workstation/2024/05/vmware-workstation-pro-now-available-free-for-personal-use.html) - Virtual Machine / [Signup Required](https://pastebin.com/JMdjhLyt)
|
* [Virt-Manager](https://virt-manager.org/) or [Vagrantup](https://www.vagrantup.com/) - Virtual Machine Managers
|
||||||
* [Looking Glass](https://looking-glass.io/) - Virtual Machine
|
|
||||||
* [Qemu](https://gitlab.com/qemu-project/qemu) - Virtual Machine
|
|
||||||
* [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/) - Virtual Machine
|
|
||||||
* [Denodo Test](https://community.denodo.com/test-drives/) - Virtual Machine
|
|
||||||
* [OSBoxes](https://www.osboxes.org/) - Preinstalled Virtual Machine
|
|
||||||
* [CollabVM](https://computernewb.com/collab-vm/) - Online Virtual Machines
|
* [CollabVM](https://computernewb.com/collab-vm/) - Online Virtual Machines
|
||||||
* [Virtual PC](https://www.microsoft.com/en-us/download/details.aspx?id=3243) - Windows XP Virtual Machine
|
* [Virtual PC](https://www.microsoft.com/en-us/download/details.aspx?id=3243) - Windows XP Virtual Machine
|
||||||
* [windows95](https://github.com/felixrieseberg/windows95) - Windows 95 in Electron
|
* [windows95](https://github.com/felixrieseberg/windows95) - Windows 95 in Electron
|
||||||
@ -200,6 +212,7 @@
|
|||||||
* [winevdm](https://github.com/otya128/winevdm) - 16-bit Windows on 64-bit Systems
|
* [winevdm](https://github.com/otya128/winevdm) - 16-bit Windows on 64-bit Systems
|
||||||
* [Blink](https://github.com/jart/blink) - Linux Emulator for Windows
|
* [Blink](https://github.com/jart/blink) - Linux Emulator for Windows
|
||||||
* [GWSL-Source](https://github.com/Opticos/GWSL-Source) or [GWSL](https://opticos.github.io/gwsl/) - Run Linux Apps on Windows
|
* [GWSL-Source](https://github.com/Opticos/GWSL-Source) or [GWSL](https://opticos.github.io/gwsl/) - Run Linux Apps on Windows
|
||||||
|
* [gter](https://github.com/raoofha/gter) - Embed a GUI app Inside a Terminal Window
|
||||||
* [Dockerholics](https://github.com/petersem/dockerholics) - Docker Apps
|
* [Dockerholics](https://github.com/petersem/dockerholics) - Docker Apps
|
||||||
* [WebCatalog](https://webcatalog.io) - Turn Sites into Desktop Apps
|
* [WebCatalog](https://webcatalog.io) - Turn Sites into Desktop Apps
|
||||||
|
|
||||||
@ -207,51 +220,56 @@
|
|||||||
|
|
||||||
# ► Hardware Tools
|
# ► Hardware Tools
|
||||||
|
|
||||||
* ↪️ **[PC Building / Shopping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)**
|
* ↪️ **[PC Building / Shopping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_shopping)**
|
||||||
* ⭐ **[PSU Calculator](https://www.newegg.com/tools/power-supply-calculator/)** or [Power Supply Calculator](https://outervision.com/power-supply-calculator) - Find Compatible Power Supplies
|
* ⭐ **[PSU Calculator](https://www.newegg.com/tools/power-supply-calculator/)** or [Power Supply Calculator](https://outervision.com/power-supply-calculator) - Find Compatible Power Supplies
|
||||||
* [DeviceTests](https://devicetests.com/) - Multiple Device Tests
|
* [DeviceTests](https://devicetests.com/) - Multiple Device Tests
|
||||||
* [NotCPUCores](https://github.com/rcmaehl/NotCPUCores), [ParkControl](https://bitsum.com/parkcontrol/), [QuickCPU](https://coderbag.com/product/quickcpu) or [Process Lasso](https://bitsum.com/) - CPU Optimizer
|
* [NotCPUCores](https://github.com/rcmaehl/NotCPUCores), [ParkControl](https://bitsum.com/parkcontrol/), [QuickCPU](https://coderbag.com/product/quickcpu) or [Process Lasso](https://bitsum.com/) - CPU Optimizer
|
||||||
* [Ozone3D](https://www.ozone3d.net/index_softwares.php) - System Benchmarking
|
* [Ozone3D](https://www.ozone3d.net/index_softwares.php) - System Benchmarking
|
||||||
* [Testmem5](https://www.overclock.net/threads/memory-testing-with-testmem5-tm5-with-custom-configs.1751608/) - Memory Benchmarking
|
* [GoldMemory](https://www.goldmemory.cz/) or [Testmem5](https://www.overclock.net/threads/memory-testing-with-testmem5-tm5-with-custom-configs.1751608/) - Memory Benchmarking
|
||||||
* [SDIO](https://glenn.delahoy.com/snappy-driver-installer-origin), [Drivers Collection](https://driverscollection.com/), [Driverscape](https://www.driverscape.com/) or [DriverStoreExplorer](https://github.com/lostindark/DriverStoreExplorer) - Update / Install Missing Drivers
|
* [SnappyDrivers](https://glenn.delahoy.com/snappy-driver-installer-origin), [Drivers Collection](https://driverscollection.com/) or [DriverStoreExplorer](https://github.com/lostindark/DriverStoreExplorer) - Update / Install Missing Drivers
|
||||||
* [VOGONS](https://www.vogons.org/) - Vintage Computer Hardware Forum
|
* [PrintFriendly](https://www.printfriendly.com/) - Printer Formatting Tools
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Hardware Monitors
|
## ▷ Hardware Monitors
|
||||||
|
|
||||||
* ⭐ **[HWiNFO](https://www.hwinfo.com/)** - System Info & Monitoring
|
* ⭐ **[HWiNFO](https://www.hwinfo.com/)**
|
||||||
* [Scrutiny](https://github.com/AnalogJ/scrutiny), [GSmartControl](https://gsmartcontrol.shaduri.dev/) or [smartmontools](https://www.smartmontools.org/) - Hard Drive Monitors
|
* [Scrutiny](https://github.com/AnalogJ/scrutiny), [GSmartControl](https://gsmartcontrol.shaduri.dev/) or [smartmontools](https://www.smartmontools.org/) - Hard Drive Monitors
|
||||||
* [CoolerControl](https://gitlab.com/coolercontrol/coolercontrol) - Cooling Device Monitor
|
* [CoolerControl](https://gitlab.com/coolercontrol/coolercontrol) - Cooling Device Monitor
|
||||||
|
* [CoreTemp](https://www.alcpu.com/CoreTemp/) - Processor Temperature Monitor
|
||||||
* [BatteryMode](https://github.com/tarcode-apps/BatteryMode) - System Tray Battery Percentage / Managers
|
* [BatteryMode](https://github.com/tarcode-apps/BatteryMode) - System Tray Battery Percentage / Managers
|
||||||
* [HWRadar](https://coderbag.com/product/hwradar) - Hardware Monitor
|
* [phwmon](https://gitlab.com/o9000/phwmon)
|
||||||
* [Netdata](https://www.netdata.cloud/) - Cloud-based Monitoring
|
* [HWRadar](https://coderbag.com/product/hwradar)
|
||||||
* [Open Hardware Monitor](https://openhardwaremonitor.org/) - Portable Hardware Monitor / [GitHub](https://github.com/openhardwaremonitor/openhardwaremonitor)
|
* [Netdata](https://www.netdata.cloud/)
|
||||||
* [Libre Hardware Monitor](https://github.com/LibreHardwareMonitor/LibreHardwareMonitor) - Updated Fork of Open Hardware Monitor
|
* [bottom](https://github.com/ClementTsang/bottom)
|
||||||
* [FanControl](https://getfancontrol.com/) - Control PC Fans / [GitHub](https://github.com/Rem0o/FanControl.Releases)
|
* [OpenHardwareMonitor](https://openhardwaremonitor.org/) / [GitHub](https://github.com/openhardwaremonitor/openhardwaremonitor)
|
||||||
* [Sidebar Diagnostics](https://github.com/ArcadeRenegade/SidebarDiagnostics) - Sidebar for Windows Desktop
|
* [Glances](https://nicolargo.github.io/glances/)
|
||||||
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - Network & Hardware Monitor
|
* [Taskbar Stats](https://openhoangnc.github.io/taskbar-stats/)
|
||||||
* [bottom](https://github.com/ClementTsang/bottom) or [Glances](https://nicolargo.github.io/glances/) - Terminal Hardware Monitors
|
* [FanControl](https://getfancontrol.com/) / [GitHub](https://github.com/Rem0o/FanControl.Releases)
|
||||||
|
* [SidebarDiagnostics](https://github.com/ArcadeRenegade/SidebarDiagnostics)
|
||||||
|
* [LibreHardwareMonitor](https://github.com/LibreHardwareMonitor/LibreHardwareMonitor)
|
||||||
|
* [TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor)
|
||||||
|
* [tiptop](https://github.com/nschloe/tiptop)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ GPU Tools
|
## ▷ GPU Tools
|
||||||
|
|
||||||
* ⭐ **[nvtop](https://github.com/Syllo/nvtop)** - GPU / Accelerator Process Monitor
|
|
||||||
* ⭐ **[GreenWithEnvy](https://gitlab.com/leinardi/gwe)** - Manage / Control NVIDIA Cards
|
* ⭐ **[GreenWithEnvy](https://gitlab.com/leinardi/gwe)** - Manage / Control NVIDIA Cards
|
||||||
* ⭐ **[NVCleanInstall](https://www.techpowerup.com/download/techpowerup-nvcleanstall/)** or [NVSlimmer](https://www.majorgeeks.com/files/details/nvslimmer.html) - NVIDIA Driver Packages
|
* ⭐ **[NVCleanInstall](https://www.techpowerup.com/download/techpowerup-nvcleanstall/)** or [NVSlimmer](https://www.majorgeeks.com/files/details/nvslimmer.html) - NVIDIA Driver Packages / [Install Guide](https://rentry.co/NVCleanInstall)
|
||||||
* [TinyNvidiaUpdateChecker](https://github.com/ElPumpo/TinyNvidiaUpdateChecker) - NVIDIA GPU Update Checker
|
|
||||||
* [Amernime Zone](https://amernimezone.com/) - 3rd Party AMD Drivers
|
* [Amernime Zone](https://amernimezone.com/) - 3rd Party AMD Drivers
|
||||||
* [Vintage3D](https://vintage3d.org/driver.php) - First Gen 3D Drivers
|
* [Vintage3D](https://vintage3d.org/driver.php) - First Gen 3D Drivers
|
||||||
* [nvidiaProfileInspector](https://github.com/Orbmu2k/nvidiaProfileInspector) - Modify / View Hidden NVIDIA Settings / [Guide](https://youtu.be/XncmeD8khKY)
|
* [nvidiaProfileInspector](https://github.com/Orbmu2k/nvidiaProfileInspector) - Modify / View Hidden NVIDIA Settings / [Guide](https://youtu.be/XncmeD8khKY)
|
||||||
|
* [NVIDIAOptimize](https://rentry.co/NVIDIAOptimize) - Debloat NVIDIA Drivers
|
||||||
* [AMDDebloat](https://rentry.co/AMDDebloat) or [RadeonSoftwareSlimmer](https://github.com/GSDragoon/RadeonSoftwareSlimmer) - Debloat AMD Drivers
|
* [AMDDebloat](https://rentry.co/AMDDebloat) or [RadeonSoftwareSlimmer](https://github.com/GSDragoon/RadeonSoftwareSlimmer) - Debloat AMD Drivers
|
||||||
* [SMCAMDProcessor](https://github.com/trulyspinach/SMCAMDProcessor) - AMD Processor Power Management
|
* [SMCAMDProcessor](https://github.com/trulyspinach/SMCAMDProcessor) - AMD Processor Power Management
|
||||||
* [PresentMon](https://github.com/GameTechDev/PresentMon) - GPU Benchmarking
|
* [PresentMon](https://github.com/GameTechDev/PresentMon) - GPU Benchmarking
|
||||||
|
* [AutoGpuAffinity](https://github.com/amitxv/AutoGpuAffinity/) - Singe-Core GPU Benchmarking
|
||||||
* [Easy-GPU-PV](https://github.com/jamesstringerparsec/Easy-GPU-PV) - Easy GPU Paravirtualization
|
* [Easy-GPU-PV](https://github.com/jamesstringerparsec/Easy-GPU-PV) - Easy GPU Paravirtualization
|
||||||
* [GsyncSwitch](https://github.com/kwizatz88/GsyncSwitch) - Switch G-Sync or HDR on/off
|
* [GsyncSwitch](https://github.com/kwizatz88/GsyncSwitch) - Switch G-Sync or HDR on/off
|
||||||
* [ThrottleStop](https://www.techpowerup.com/download/techpowerup-throttlestop/) - Laptop CPU Monitor / Optimizer
|
* [ThrottleStop](https://www.techpowerup.com/download/techpowerup-throttlestop/) - Laptop CPU Monitor / Optimizer
|
||||||
* [Universal x86 Tuning Utility](https://amdaputuningutility.com/) / [Github](https://github.com/JamesCJ60/Universal-x86-Tuning-Utility) - Laptop GPU Controller
|
* [Universal x86 Tuning Utility](https://github.com/JamesCJ60/Universal-x86-Tuning-Utility) - Laptop GPU Controller
|
||||||
* [RyzenAdj](https://github.com/FlyGoat/RyzenAdj) - Ryzen Laptop GPU Controller
|
* [AATU](https://amdaputuningutility.com/) or [RyzenAdj](https://github.com/FlyGoat/RyzenAdj) - Ryzen Laptop GPU Controllers
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -261,17 +279,16 @@
|
|||||||
* 🌐 **[Awesome DataHoarding](https://github.com/simon987/awesome-datahoarding)** - DataHoarding Resources
|
* 🌐 **[Awesome DataHoarding](https://github.com/simon987/awesome-datahoarding)** - DataHoarding 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/)**, [Rescuezilla](https://rescuezilla.com/), [CloneZilla](https://clonezilla.org/), [Partition Wizard](https://www.partitionwizard.com/) or [AOMEI](https://www.diskpart.com/) - Partition Managers
|
* ⭐ **[GParted](https://gparted.org/)**, [Rescuezilla](https://rescuezilla.com/), [CloneZilla](https://clonezilla.org/) or [AOMEI](https://www.diskpart.com/) - Partition Managers
|
||||||
* ⭐ **[Validrive](https://www.grc.com/validrive.htm)** - Check True Storage Size of USB Devices
|
|
||||||
* [TrueNAS](https://www.truenas.com/) - Storage System
|
* [TrueNAS](https://www.truenas.com/) - Storage System
|
||||||
* [QDirStat](https://github.com/shundhammer/qdirstat) - Directory Statistics
|
* [QDirStat](https://github.com/shundhammer/qdirstat) - Directory Statistics
|
||||||
* [CrystalDiskInfo](https://crystalmark.info/en/software/crystaldiskinfo/) - S.M.A.R.T. Data Analyzer
|
* [CrystalDiskInfo](https://crystalmark.info/en/software/crystaldiskinfo/) - S.M.A.R.T. Data Analyzer
|
||||||
* [WinDirStat](https://windirstat.net/) - Disk Usage Analyzer
|
* [WinDirStat](https://windirstat.net/) - Disk Usage Analyzer
|
||||||
* [Macrorit Partition Expert](https://macrorit.com/partition-magic-manager/partition-expert-download.html) - Disk Usage Analyzer
|
* [Macrorit Partition Expert](https://macrorit.com/partition-magic-manager/partition-expert-download.html) - Disk Usage Analyzer
|
||||||
* [Gdu](https://github.com/dundee/gdu) - Disk Usage Analyzer
|
* [Gdu](https://github.com/dundee/gdu) - Disk Usage Analyzer
|
||||||
* [dua](https://lib.rs/crates/dua-cli) - Disk Usage Analyzer
|
* [dua](https://github.com/Byron/dua-cli) - Disk Usage Analyzer
|
||||||
* [Diskovery](https://diskovery.io/) - Disk Usage Analyzer
|
* [Diskovery](https://diskovery.io/) - Disk Usage Analyzer
|
||||||
* [DiskInfo](https://github.com/MicaApps/DiskInfo) - Disk Usage Analyzer
|
* [DiskInfo](https://github.com/DiskTools/DiskInfo) - Disk Usage Analyzer
|
||||||
* [Erdtree](https://github.com/solidiquis/erdtree) - Disk Usage Analyzer
|
* [Erdtree](https://github.com/solidiquis/erdtree) - Disk Usage Analyzer
|
||||||
* [PC Manger](https://pcmanager-en.microsoft.com/) or [CleanmgrPlus](https://github.com/builtbybel/CleanmgrPlus) - Disk Managers / Cleanup
|
* [PC Manger](https://pcmanager-en.microsoft.com/) or [CleanmgrPlus](https://github.com/builtbybel/CleanmgrPlus) - Disk Managers / Cleanup
|
||||||
* [Air Live Drive](https://www.airlivedrive.com/en/) - Mount Cloud Drives as Local Disks
|
* [Air Live Drive](https://www.airlivedrive.com/en/) - Mount Cloud Drives as Local Disks
|
||||||
@ -283,16 +300,14 @@
|
|||||||
|
|
||||||
* ⭐ **[DisplayFusion](https://www.displayfusion.com/)** or [Dual Monitor Tool](https://sourceforge.net/projects/dualmonitortool/) - Dual Monitor Tools
|
* ⭐ **[DisplayFusion](https://www.displayfusion.com/)** or [Dual Monitor Tool](https://sourceforge.net/projects/dualmonitortool/) - Dual Monitor Tools
|
||||||
* ⭐ **[f.lux](https://justgetflux.com/)**, [LightBulb](https://github.com/Tyrrrz/LightBulb), [ScreenTemperature](https://github.com/massaiTHEdog1/ScreenTemperature) or [SunsetScreen](https://www.skytopia.com/software/sunsetscreen/index.htm) - Adjust Display Color / Temperature
|
* ⭐ **[f.lux](https://justgetflux.com/)**, [LightBulb](https://github.com/Tyrrrz/LightBulb), [ScreenTemperature](https://github.com/massaiTHEdog1/ScreenTemperature) or [SunsetScreen](https://www.skytopia.com/software/sunsetscreen/index.htm) - Adjust Display Color / Temperature
|
||||||
* ⭐ **[Monitorian](https://github.com/emoacht/Monitorian)**, **[Twinkle Tray](https://twinkletray.com/)** / [GitHub](https://github.com/xanderfrangos/twinkle-tray) or [Dimmer](https://www.nelsonpires.com/software/dimmer) - Adjust Monitor Brightness
|
* [Display Driver Uninstaller](https://www.wagnardsoft.com/display-driver-uninstaller-ddu-), [2](https://www.guru3d.com/files-details/display-driver-uninstaller-download.html) - Display Driver Removal Tool / [GitHub](https://github.com/Wagnard/display-drivers-uninstaller)
|
||||||
* [Display Driver Uninstaller](https://www.wagnardsoft.com/display-driver-uninstaller-ddu-), [2](https://www.guru3d.com/download/display-driver-uninstaller-download) - Display Driver Removal Tool / [GitHub](https://github.com/Wagnard/display-drivers-uninstaller)
|
|
||||||
* [EIZO](https://www.eizo.be/monitor-test/), [Monitor](https://www.monitortests.com/) or [LCDTech](https://lcdtech.info/en/tests/) - Monitor Performance Tests
|
* [EIZO](https://www.eizo.be/monitor-test/), [Monitor](https://www.monitortests.com/) or [LCDTech](https://lcdtech.info/en/tests/) - Monitor Performance Tests
|
||||||
* [TestUFO](https://www.testufo.com/) - Monitor Framerate Test
|
* [TestUFO](https://www.testufo.com/) - Monitor Framerate Test
|
||||||
* [LittleBigMouse](https://github.com/mgth/LittleBigMouse) - DPI Test
|
* [LittleBigMouse](https://github.com/mgth/LittleBigMouse) - DPI Test
|
||||||
* [Scalizer](https://github.com/wonmor/Scalizer-Windows) - Auto DPI Scaling / [YouTube](https://youtu.be/f_3XWlmyat4)
|
* [Scalizer](https://github.com/wonmor/Scalizer-Windows) - Auto DPI Scaling / [YouTube](https://youtu.be/f_3XWlmyat4)
|
||||||
* [ICM](https://rentry.co/ICM) or [ICC Profiles](https://tftcentral.co.uk/articles/icc_profiles) - ICC Profiles and Monitor Calibration
|
* [ICM](https://rentry.co/ICM) or [ICC Profiles](https://tftcentral.co.uk/articles/icc_profiles) - ICC Profiles and Monitor Calibration
|
||||||
* [Display Calc](https://www.tools.rodrigopolo.com/display_calc/) - Display Distance / Dimension Calculator
|
* [Dimmer](https://www.nelsonpires.com/software/dimmer) or [Monitorian](https://github.com/emoacht/Monitorian) - Multi-Monitor Brightness Control
|
||||||
* [Multi-Monitor Calculator](https://multimonitorcalculator.com/) - Dual-Monitor Setup Planning / Tests
|
* [Twinkle Tray](https://twinkletray.com/) - System Tray Brightness Slider
|
||||||
* [Wide Gamut](https://www.wide-gamut.com/) - Color Compatibility Test
|
|
||||||
* [WhiteScreen](https://www.whitescreen.online/) - Screen Color Test
|
* [WhiteScreen](https://www.whitescreen.online/) - Screen Color Test
|
||||||
* [Dead.Pixel](https://lcdtech.info/en/tests/dead.pixel.htm) - Dead Pixel Test
|
* [Dead.Pixel](https://lcdtech.info/en/tests/dead.pixel.htm) - Dead Pixel Test
|
||||||
* [JScreenFix](https://www.jscreenfix.com/) - Repair Stuck Pixels
|
* [JScreenFix](https://www.jscreenfix.com/) - Repair Stuck Pixels
|
||||||
@ -307,69 +322,42 @@
|
|||||||
|
|
||||||
## ▷ Mouse / Keyboard
|
## ▷ Mouse / Keyboard
|
||||||
|
|
||||||
* ⭐ **[/r/MechanicalKeyboards Wiki](https://www.reddit.com/r/MechanicalKeyboards/wiki/index)** - Mechanical Keyboard Resources
|
* ⭐ **[Windows Keyboard Shortcuts](https://i.ibb.co/yNHRPfm/2147ec86baff.png)**, [2](https://i.ibb.co/XyWn2qc/075be8840d12.png) / [Course](https://keycombiner.com/), [Use The Keyboard](https://usethekeyboard.com/), [HotkeyP](https://sourceforge.net/projects/hotkeyp/), [Clavier++](https://gryder.org/software/clavier-plus/), [Kinto](https://github.com/rbreaves/kinto) or [CheatKeys](https://cheatkeys.com/CheatSheet) - Keyboard Shortcuts
|
||||||
* ⭐ **[Windows Keyboard Shortcuts](https://i.ibb.co/yNHRPfm/2147ec86baff.png)**, [2](https://i.ibb.co/XyWn2qc/075be8840d12.png) / [Course](https://keycombiner.com/), [Use The Keyboard](https://usethekeyboard.com/), [HotkeyP](https://sourceforge.net/projects/hotkeyp/), [Clavier++](https://gryder.org/software/clavier-plus/), [Kinto](https://github.com/rbreaves/kinto) or [CheatKeys](https://cheatkeys.com/cheatSheet) - Keyboard Shortcuts
|
|
||||||
* ⭐ **[VIA](https://usevia.app/)** / [GitHub](https://github.com/the-via/app), [SharpKeys](https://github.com/randyrants/sharpkeys/), [Kanata](https://github.com/jtroo/kanata), [Vial](https://get.vial.today/), [Ergogen](https://ergogen.xyz/) or [Persistence](https://github.com/NtQuerySystemInformation/CustomKeyboardLayoutPersistence) - Custom Keyboard Layouts / Remapping
|
|
||||||
* ⭐ **[geekhack](https://geekhack.org/)** or [KeebTalk](https://www.keebtalk.com/) - Keyboard Forums
|
* ⭐ **[geekhack](https://geekhack.org/)** or [KeebTalk](https://www.keebtalk.com/) - Keyboard Forums
|
||||||
* [X-Mouse Button Control](https://www.highrez.co.uk/downloads/XMouseButtonControl.htm) - Re-Map Mouse Buttons / Scroll Wheel
|
* [X-Mouse Button Control](https://www.highrez.co.uk/downloads/XMouseButtonControl.htm) - Re-Map Mouse Buttons / Scroll Wheel
|
||||||
* [MoveMouse](https://github.com/sw3103/movemouse/) or [MouseJiggler](https://github.com/arkane-systems/mousejiggler) - Simulate User Activity
|
* [MoveMouse](https://github.com/sw3103/movemouse/) or [MouseJiggler](https://github.com/arkane-systems/mousejiggler) - Simulate User Activity
|
||||||
* [Raw Accel](https://github.com/a1xd/rawaccel) - Mouse Acceleration Tool
|
|
||||||
* [The Fastest Mouse Clicker](https://gitlab.com/mashanovedad/The-Fastest-Mouse-Clicker-for-Windows), [Alpha Clicker](https://github.com/robiot/AlphaClicker) or [AutoClicker Bookmarklet](https://autoclicker.glitch.me/) - Mouse Auto Clicker
|
* [The Fastest Mouse Clicker](https://gitlab.com/mashanovedad/The-Fastest-Mouse-Clicker-for-Windows), [Alpha Clicker](https://github.com/robiot/AlphaClicker) or [AutoClicker Bookmarklet](https://autoclicker.glitch.me/) - Mouse Auto Clicker
|
||||||
* [StrokeIt](https://www.tcbmi.com/strokeit/) or [StrokesPlus](https://www.strokesplus.net/) - Mouse Gestures
|
* [StrokeIt](https://www.tcbmi.com/strokeit/) or [StrokesPlus](https://www.strokesplus.net/) - Mouse Gestures
|
||||||
* [Espanso](https://espanso.org/) - Typing Shortcuts / [GitHub](https://github.com/espanso/espanso)
|
* [Espanso](https://espanso.org/) - Typing Shortcuts / [GitHub](https://github.com/espanso/espanso)
|
||||||
* [win-vind](https://pit-ray.github.io/win-vind/) - Vim Style Keybindings for Windows
|
* [win-vind](https://pit-ray.github.io/win-vind/) - Vim Style Keybindings for Windows
|
||||||
* [Listary](https://www.listary.com/), [FlowLauncher](https://www.flowlauncher.com/), [Ueli](https://ueli.app/) / [GitHub](https://github.com/oliverschwendener/ueli) - Keystroke Launchers
|
* [Launchy](https://launchy.net/), [FlowLauncher](https://www.flowlauncher.com/), [Keypirinha](https://keypirinha.com/), [Ueli](https://ueli.app/) / [GitHub](https://github.com/oliverschwendener/ueli) - Keystroke Launchers
|
||||||
* [KeyViz](https://github.com/mulaRahul/keyviz) - Keystroke Visualizer
|
* [KeyViz](https://github.com/mulaRahul/keyviz) - Keystroke Visualizer
|
||||||
* [WhatPulse](https://whatpulse.org/) - Mouse / Keyboard Usage Analyzer
|
* [WhatPulse](https://whatpulse.org/) - Mouse / Keyboard Usage Analyzer
|
||||||
* [Kmonad](https://github.com/kmonad/kmonad) - Keyboard Manager
|
* [Kmonad](https://github.com/kmonad/kmonad) - Keyboard Manager
|
||||||
* [Deskhop](https://github.com/hrvach/deskhop) - Quickly Switch Devices between Computers
|
* [Deskhop](https://github.com/hrvach/deskhop) - Quickly Switch Devices between Computers
|
||||||
* [Switchy](https://github.com/erryox/Switchy) - Switch Keyboard Languages w/ Button
|
* [SharpKeys](https://github.com/randyrants/sharpkeys/), [Kanata](https://github.com/jtroo/kanata), [Vial](https://github.com/vial-kb/vial-gui), [Ergogen](https://ergogen.xyz/) or [Persistence](https://github.com/NtQuerySystemInformation/CustomKeyboardLayoutPersistence) - Custom Keyboard Layouts / Remapping
|
||||||
* [Is this good?](https://wiki.keyboard.gay/) - Custom Keyboard Guides
|
|
||||||
* [DreyMaR's](https://dreymar.colemak.org/) - Keyboard Tips and Resources
|
* [DreyMaR's](https://dreymar.colemak.org/) - Keyboard Tips and Resources
|
||||||
* [Keyboard University](https://keyboard.university/) or [KDB](http://xahlee.info/kbd/keyboarding.html) - Mechanical Keyboard Building Guides
|
* [Keyboard University](https://keyboard.university/) or [KDB](http://xahlee.info/kbd/keyboarding.html) - Mechanical Keyboard Building Guides
|
||||||
* [Keyboard Simulator](https://keyboardsimulator.xyz/) - Design & Test Virtual Keyboards
|
* [Keyboard Simulator](https://keyboardsimulator.xyz/) - Design & Test Virtual Keyboards
|
||||||
* [Key Test](https://en.key-test.ru/) - Keyboard Tester
|
* [Key Test](https://en.key-test.ru/) - Keyboard Tester
|
||||||
|
* [Mouseable](https://github.com/wirekang/mouseable) - Replace Mouse with Keyboard
|
||||||
***
|
* [TouchCursor](https://sourceforge.net/projects/touchcursor/) - Use Home Keys as Cursor
|
||||||
|
* [Keytap2](https://keytap2.ggerganov.com/) - Acoustic Keyboard Eavesdropping
|
||||||
## ▷ System Audio
|
|
||||||
|
|
||||||
* ⭐ **[Equalizer APO](https://equalizerapo.com/)**, **[AutoEq](https://autoeq.app/)**, [PeaceEqualizer](https://sourceforge.net/projects/peace-equalizer-apo-extension/) or [FXSound](https://www.fxsound.com/) - Audio Equalizers
|
|
||||||
* [Wave Link](https://help.elgato.com/hc/en-us/articles/360044566172-Wave-Link-First-Time-Setup-for-Windows-10) or [VoiceMeeter](https://vb-audio.com/Voicemeeter/index.htm) / [Banana](https://vb-audio.com/Voicemeeter/banana.htm) - Audio Mixers / Multi-Device Playback
|
|
||||||
* [SoundSwitch](https://soundswitch.aaflalo.me/) - Switch Audio Device with Hotkey / [GitHub](https://github.com/Belphemur/SoundSwitch)
|
|
||||||
* [SonyHeadphonesClient](https://github.com/Plutoberth/SonyHeadphonesClient) - Sony Headphones Clone
|
|
||||||
* [Audiocheck](https://www.audiocheck.net/) - Audio Tests
|
|
||||||
* [LowAudioLatency](https://github.com/spddl/LowAudioLatency/) - Reduce Audio Latency
|
|
||||||
* [DigitalFeed](https://abx.digitalfeed.net/) - Lossless Audio Sound System Test
|
|
||||||
* [Online Mic Test](https://onlinemictest.com/) or [Check Mic](https://webcammictest.com/check-mic.html) - Mic Test
|
|
||||||
* [Sound Meter](https://mybrowseraddon.com/sound-meter.html) or [REW](https://www.roomeqwizard.com) - Measure Surrounding Sound Level
|
|
||||||
* [Krisp](https://krisp.ai/) or [noise-suppression-for-voice](https://github.com/werman/noise-suppression-for-voice) - Noise Suppression Tools
|
|
||||||
* [AI-coustics](https://ai-coustics.com/) - Voice Clarity Enhancement AI
|
|
||||||
* [AirPods Dirty Secret](https://docs.kenp.io/) - AirPods Repair Directory
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Windows ISOs
|
# ► Windows ISOs
|
||||||
|
|
||||||
* ⭐ **[MAS ISO Index](https://massgrave.dev/genuine-installation-media)** - Windows ISOs / [Discord](https://discord.gg/gjJEfq7ux8) / [MSDL](https://msdl.gravesoft.dev/)
|
* ⭐ **[MAS ISO Index](https://massgrave.dev/genuine-installation-media.html)** - Windows ISOs / [Discord](https://discord.gg/gjJEfq7ux8) / [MSDL](https://massgrave.dev/msdl/)
|
||||||
|
* ⭐ **[Ventoy](https://www.ventoy.net/en/index.html)**, **[Rufus](https://rufus.ie/)**, [AIO Boot](https://www.aioboot.com/) or [MediaCreationTool](https://github.com/AveYo/MediaCreationTool.bat) - Create Bootable USB Drives
|
||||||
* [OS.click](https://os.click/en) - Windows ISOs
|
* [OS.click](https://os.click/en) - Windows ISOs
|
||||||
* [MyDigitalLife](https://forums.mydigitallife.net/) - Windows ISOs
|
* [AlicesWorld](https://msdn.alicesworld.tech/) - Windows ISOs
|
||||||
* [Microsoft SD](https://www.microsoft.com/en-us/software-download/) - Windows ISOs
|
* [Microsoft SD](https://www.microsoft.com/en-us/software-download/) - Windows ISOs
|
||||||
* [Old School OS](https://www.oldschoolos.com/), [OS Vault](https://osvault.weebly.com/directory.html), [VETUSWARE](https://vetusware.com/) or [WinWorldPC](https://winworldpc.com/) - Oldschool ISOs
|
* [OS Vault](https://osvault.weebly.com/directory.html), [VETUSWARE](https://vetusware.com/) or [WinWorldPC](https://winworldpc.com/) - Oldschool ISOs
|
||||||
* [Fido](https://github.com/pbatard/Fido) - ISO Powershell Script
|
* [Fido](https://github.com/pbatard/Fido) - ISO Powershell Script
|
||||||
* [MSDN Files](https://files.rg-adguard.net/) or [MVS dump](https://awuctl.github.io/mvs/) - Verify ISO Legitimacy
|
* [MSDN Files](https://msdn.rg-adguard.net/) or [MVS dump](https://awuctl.github.io/mvs/) - Verify ISO Legitimacy
|
||||||
* [CoolStar](https://coolstar.org/chromebook/windows-install.html) - Install Windows on Chromebook
|
|
||||||
* [Clean Install](https://rentry.co/Clean_Install) - Windows Clean Installation Guide
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ USB / Bootloaders
|
|
||||||
|
|
||||||
* ⭐ **[Ventoy](https://www.ventoy.net/en/index.html)** - Create Bootable USB Drives
|
|
||||||
* ⭐ **[Rufus](https://rufus.ie/)** - Create Bootable USB Drives
|
|
||||||
* [MediaCreationTool](https://github.com/AveYo/MediaCreationTool.bat) - Windows Deployment Automation
|
|
||||||
* [balenaEtcher](https://etcher.balena.io/) - Flash OS Image SD / USB / Non-Windows OS
|
|
||||||
* [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/)
|
||||||
|
* [balenaEtcher](https://etcher.balena.io/) - Flash OS Image SD / USB / Non-Windows OS
|
||||||
* [Hiren’s BootCD PE](https://www.hirensbootcd.org/) or [Win10XPE](https://github.com/ChrisRfr/Win10XPE) - Preinstallation Environments
|
* [Hiren’s BootCD PE](https://www.hirensbootcd.org/) or [Win10XPE](https://github.com/ChrisRfr/Win10XPE) - Preinstallation Environments
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -377,9 +365,11 @@
|
|||||||
## ▷ Windows Activation
|
## ▷ Windows Activation
|
||||||
|
|
||||||
* ⭐ **[MAS](https://massgrave.dev/#Method_1_-_PowerShell)** / [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts/) / [Discord](https://discord.gg/gjJEfq7ux8)
|
* ⭐ **[MAS](https://massgrave.dev/#Method_1_-_PowerShell)** / [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts/) / [Discord](https://discord.gg/gjJEfq7ux8)
|
||||||
* ⭐ **[KMS_VL_ALL_AIO](https://github.com/abbodi1406/KMS_VL_ALL_AIO)** - Offline Activator
|
* ⭐ **[KMS_VL_ALL_AIO](https://github.com/abbodi1406/KMS_VL_ALL_AIO)**
|
||||||
|
* [MyDigitalLife](https://forums.mydigitallife.net/)
|
||||||
* [EzWindSLIC](https://github.com/Dir3ctr1x/EzWindSLIC) - Vista / 7 / Server 2008
|
* [EzWindSLIC](https://github.com/Dir3ctr1x/EzWindSLIC) - Vista / 7 / Server 2008
|
||||||
* [OfficeRTool](https://rentry.co/FMHYBase64#officertool-project) - Office 2016 Activator
|
* [OfficeRTool](https://forums.mydigitallife.net/threads/how-to-support-chat-office-c2r-download-install-activation.62571/) - Office 2016 Activation
|
||||||
|
* [Office Activation Fix](https://massgrave.dev/office-license-is-not-genuine.html)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -403,121 +393,133 @@
|
|||||||
* [Windows 10 Forums](https://www.windowsphoneinfo.com/), [SevenForums](https://www.sevenforums.com/), [Hardforum](https://hardforum.com/), [VinaFix](https://vinafix.com/) or [TechSupportForum](https://www.techsupportforum.com/) - Tech Support Forums
|
* [Windows 10 Forums](https://www.windowsphoneinfo.com/), [SevenForums](https://www.sevenforums.com/), [Hardforum](https://hardforum.com/), [VinaFix](https://vinafix.com/) or [TechSupportForum](https://www.techsupportforum.com/) - Tech Support Forums
|
||||||
* [MemTest](https://www.memtest.org/) - Memory Diagnostic Tool
|
* [MemTest](https://www.memtest.org/) - Memory Diagnostic Tool
|
||||||
* [Windows Repair Toolbox](https://windows-repair-toolbox.com/) - Multi-Tool Repair App
|
* [Windows Repair Toolbox](https://windows-repair-toolbox.com/) - Multi-Tool Repair App
|
||||||
* [Medicat](https://medicatusb.com/) - Computer Diagnostic / Recovery Toolkit
|
|
||||||
* [PhoenixPE](https://github.com/PhoenixPE/PhoenixPE) - Recovery Environment
|
|
||||||
* [OpenBoardData](https://openboarddata.org/) - Board Repair Data
|
* [OpenBoardData](https://openboarddata.org/) - Board Repair Data
|
||||||
* [Magic Trace](https://github.com/janestreet/magic-trace) - Diagnose Performance Issues using Intel Processor Trace
|
* [Magic Trace](https://github.com/janestreet/magic-trace) - Diagnose Performance Issues using Intel Processor Trace
|
||||||
* [Intel BIOS Guide](https://docs.google.com/document/d/1s43_3YGJIy3zs0ZIksoOmxgrDKnu4ZNhhnXW_NiJZ0I/edit) - Intel BIOS Settings Explanation
|
* [Intel BIOS Guide](https://docs.google.com/document/d/1s43_3YGJIy3zs0ZIksoOmxgrDKnu4ZNhhnXW_NiJZ0I/edit) - Intel BIOS Settings Explanation
|
||||||
|
* [BiOSBug](https://www.biosbug.com/) - Remove / Reset BiOS Password / [Tutorial](https://www.youtube.com/watch?v=GolIjI2HS5w)
|
||||||
|
* [BIOS-PW](https://bios-pw.org/) - System Password Recovery Tools
|
||||||
* [PC Health Check](https://aka.ms/GetPCHealthCheckApp) or [WhyNotWin11](https://github.com/rcmaehl/WhyNotWin11) - Identify why your PC isn't Windows 11 ready
|
* [PC Health Check](https://aka.ms/GetPCHealthCheckApp) or [WhyNotWin11](https://github.com/rcmaehl/WhyNotWin11) - Identify why your PC isn't Windows 11 ready
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
## ▷ OS Emulators
|
||||||
|
|
||||||
|
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** - Browser Emulator Index
|
||||||
|
* [Qemu](https://gitlab.com/qemu-project/qemu) - OS Emulator & Virtualization
|
||||||
|
* [copy.sh](https://copy.sh/v86/), [PCJs](https://www.pcjs.org/), [OnWorks](https://www.onworks.net/), [simone.computer](https://simone.computer/#/webdesktops) or [Virtual Desktop](http://www.virtualdesktop.org/) - Multiple OS Emulators
|
||||||
|
* [WinXP](https://winxp.vercel.app/), [Windows XP Netify](https://windows-xp.netlify.app/) - Windows XP Browser Emulators
|
||||||
|
* [EmuOS](https://emupedia.org/beta/emuos/), [2](https://emupedia.net/beta/emuos/), [3](https://emuos.net/beta/emuos/), [4](https://emuos.org/beta/emuos/) - Windows 95, 98 & ME Emulator
|
||||||
|
* [98.js](https://98.js.org/), [Rahul](https://rahul.io/) or [Packard Belle](https://packard-belle.netlify.app/) - Windows 98 Emulator
|
||||||
|
* [Windows96.net](https://windows96.net/) - Windows 96 Browser Emulator
|
||||||
|
* [Win95](https://win95.ajf.me/) - Windows 95 Browser Emulator
|
||||||
|
* [Windows93](https://www.windows93.net/) - Windows 93 Browser Emulator / Games
|
||||||
|
* [EmuOS](https://github.com/Emupedia/emupedia.github.io/) - Run Classic Games / Apps In Browser
|
||||||
|
* [Windows 1.01](https://classicreload.com/Windows-1-01.html) - Windows 1.01 Browser Emulator
|
||||||
|
* [RebornXP](https://rebornxp.js.org/) - Windows XP Browser Emulator
|
||||||
|
* [AaronOS](https://aaronos.dev/), [Whimsy](https://whimsy.space/), [OS.JS](https://www.os-js.org/), [X-WebDesktop](https://oxoyo.co/X-WebDesktop-Vue/), [Orb](https://gitlab.com/hsleisink/orb) or [jQuery Desktop](https://desktop.sonspring.com/) - OS Browser Emulator
|
||||||
|
* [PCE Macplus](https://jamesfriend.com.au/pce-js/pce-js-apps/) or [Infinite Mac](https://infinitemac.org/) - macOS Browser Emulators
|
||||||
|
* [PCE.js](https://jamesfriend.com.au/pce-js/ibmpc-games/) - PCDOS 5 Emulator
|
||||||
|
* [Quantum Playground](https://www.quantumplayground.net/#/home) - Quantum Computer Simulator
|
||||||
|
* [Win11.vercel](https://win11.vercel.app/), [Rajaniraiyn](https://rajaniraiyn.github.io/windows11/) or [Win11 in React](https://win11.blueedge.me/)/ [GitHub](https://github.com/blueedgetechno/win11React) - Online Windows 11 Emulator
|
||||||
|
* [daedalOS](https://dustinbrett.com/) - Online Windows 10 Emulator
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# ► Customization
|
# ► Customization
|
||||||
|
|
||||||
* ⭐ **[Rainmeter](https://www.rainmeter.net/)** - Desktop Customization
|
* ⭐ **[Rainmeter](https://www.rainmeter.net/)** - Desktop Customization
|
||||||
* ⭐ **Rainmeter Tools** - [Skins](https://visualskins.com/) / [Utilities](https://github.com/Jax-Core), [2](https://www.deviantart.com/jaxoriginals) / [Menu Bar / App Launcher](https://www.droptopfour.com/)
|
* ⭐ **Rainmeter Tools** - [Skins](https://visualskins.com/) / [Utilities](https://github.com/Jax-Core), [2](https://www.deviantart.com/jaxoriginals) / [Menu Bar / App Launcher](https://www.droptopfour.com/)
|
||||||
* ⭐ **[OpenRGB](https://openrgb.org/)** / [Beta](https://pastebin.com/tgY55J4n), **[WLED](https://kno.wled.ge/)**, [Aurora](https://www.project-aurora.com/), [SignalRGB](https://www.signalrgb.com/), [LiquidCTL](https://github.com/liquidctl/liquidctl), [Artemis](https://artemis-rgb.com/), [RBGSync](https://rgbsync.com/) or [FireLight](https://github.com/nicolasdeory/firelight) - Lighting Control
|
* ⭐ **[WLED](https://kno.wled.ge/)**, [OpenRGB](https://openrgb.org/), [SignalRGB](https://www.signalrgb.com/), [LiquidCTL](https://github.com/liquidctl/liquidctl), [Artemis](https://artemis-rgb.com/), [RBGSync](https://rgbsync.com/), [FireLight](https://github.com/nicolasdeory/firelight) or [Aurora](https://github.com/antonpup/Aurora) - Lighting Control
|
||||||
* [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
|
||||||
* [XDesktopSoft](https://www.xwidget.com/) - Desktop Customization
|
* [XDesktopSoft](https://www.xwidget.com/) - Desktop Customization
|
||||||
|
* [LineStep](http://litestep.net/) - Customize Desktop Interface
|
||||||
|
* [pyWinContext](https://github.com/VodBox/pyWinContext) - Custom Context Menu Manager
|
||||||
* [Taskbar Tweaker](https://tweaker.ramensoftware.com/), [NiceTaskbar](https://www.microsoft.com/en-us/p/nicetaskbar/9pkl2s93xwb5) - Taskbar Customization Tools
|
* [Taskbar Tweaker](https://tweaker.ramensoftware.com/), [NiceTaskbar](https://www.microsoft.com/en-us/p/nicetaskbar/9pkl2s93xwb5) - Taskbar Customization Tools
|
||||||
|
* [TaskbarXI](https://github.com/ChrisAnd1998/TaskbarXI) - Modify Windows 11 Taskbar
|
||||||
* [msstyleEditor](https://github.com/nptr/msstyleEditor) or [WinPaletter](https://github.com/Abdelrhman-AK/WinPaletter) - Windows Visual Style Editors
|
* [msstyleEditor](https://github.com/nptr/msstyleEditor) or [WinPaletter](https://github.com/Abdelrhman-AK/WinPaletter) - Windows Visual Style Editors
|
||||||
* [BeautySearch](https://github.com/krlvm/BeautySearch) - Windows 10 Search Appearance Tweaker
|
* [BeautySearch](https://github.com/krlvm/BeautySearch) - Windows 10 Search Appearance Tweaker
|
||||||
* [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Discord System Lighting Control
|
* [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Discord System Lighting Control
|
||||||
* [Mechvibes](https://mechvibes.com/) or [MechaKeys](https://mechakeys.robolab.io/) - Keyboard Sound Effects
|
* [KeyboardVisualizer](https://gitlab.com/CalcProgrammer1/KeyboardVisualizer) - Audio Visualizer / FX Engine for Keyboards, Mice & Accessories
|
||||||
|
* [Mechvibes](https://mechvibes.com/), [Rackety](https://girkovarpa.itch.io/rackety) or [MechaKeys](https://mechakeys.robolab.io/) - Keyboard Sound Effects
|
||||||
|
* [WindowFX](https://www.stardock.com/products/windowfx/) - System Animation Effects
|
||||||
* [ElectricSheep](https://electricsheep.org/) - Collaborative Usergenerated Screensaver
|
* [ElectricSheep](https://electricsheep.org/) - Collaborative Usergenerated Screensaver
|
||||||
* [After Dark CSS](https://www.bryanbraun.com/after-dark-css/) - Browser Screensavers
|
* [After Dark CSS](https://www.bryanbraun.com/after-dark-css/) - Browser Screensavers
|
||||||
* [HackBGRT](https://github.com/Metabolix/HackBGRT) - Change Windows Boot Logo
|
* [Cursors 4U](https://www.cursors-4u.com/), [Cursor Mania Archive](https://archive.org/details/cursormania), [Bibata Cursor](https://github.com/ful1e5/Bibata_Cursor), [Cursors Pastebin](https://pastebin.com/BrAbMy4n) or [rw-designer](http://rw-designer.com/cursor-library) - Cursors
|
||||||
* [Cursor Mania Archive](https://archive.org/details/cursormania), [Bibata Cursor](https://github.com/ful1e5/Bibata_Cursor), [Cursors Pastebin](https://pastebin.com/BrAbMy4n) or [rw-designer](http://rw-designer.com/cursor-library) - Cursors
|
|
||||||
* [macOS-cursors-for-Windows](https://github.com/antiden/macOS-cursors-for-Windows) - macOS Cursors for Windows
|
|
||||||
* [FolderMarker](https://foldermarker.com/) or [CustomFolder](https://www.gdzsoft.com/) - Custom Folders & Markers
|
* [FolderMarker](https://foldermarker.com/) 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
|
* [ElevenClock](https://github.com/marticliment/ElevenClock) - Customize Windows 11 Clock
|
||||||
* [TranslucentSM](https://github.com/rounk-ctrl/TranslucentSM) - Translucent Start Menu
|
|
||||||
* [TranslucentFlyouts](https://github.com/ALTaleX531/TranslucentFlyouts) - Translucent Context Menus / [GUI](https://github.com/Satanarious/TranslucentFlyoutsConfig)
|
|
||||||
* [TranslucentTB](https://github.com/TranslucentTB/TranslucentTB) - Translucent Windows Taskbar
|
|
||||||
* [ExplorerBlurMica](https://github.com/Maplespe/ExplorerBlurMica) - Blur / Acrylic Effect for File Explorer
|
|
||||||
* [RetroBar](https://github.com/dremin/RetroBar) - Retro Classic Taskbars
|
|
||||||
* [StartAllBack](https://www.startallback.com/) - Restore Classic Start Menu in Windows 11
|
|
||||||
* [Win98Icons](https://win98icons.alexmeub.com/) - Classic Win98 Icons
|
|
||||||
* [7tsp-Icon-themes](https://github.com/niivu/7tsp-Icon-themes) - Custmon Icon Themes
|
|
||||||
* [Modern Flyouts](https://apps.microsoft.com/store/detail/modernflyouts-preview/9MT60QV066RP) - Modern Context Menus / [GitHub](https://github.com/ModernFlyouts-Community/ModernFlyouts)
|
|
||||||
* [ModernWinver](https://github.com/torchgm/NewModernWinver) or [WinverUWP](https://github.com/dongle-the-gadget/WinverUWP) - Modern Windows About Page
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Custom Themes
|
## ▷ Themes / Ricing
|
||||||
|
|
||||||
* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** or [Windows-Ricing](https://github.com/winthemers/wiki) - Windows Ricing Resources
|
* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** or [Windows-Ricing](https://github.com/winthemers/wiki) - Windows Ricing Resources
|
||||||
* ⭐ **[Dracula](https://draculatheme.com/)** - Custom App Themes / [Discord](https://discord.com/invite/yDcFsrYuq9)
|
* ⭐ **[Dracula](https://draculatheme.com/)** / [Discord](https://discord.com/invite/yDcFsrYuq9), [Something Beautiful](https://rosepinetheme.com/) / [Discord](https://discord.gg/r6wf35KVJW), [Catppuccin](https://github.com/catppuccin) / [Discord](https://discord.gg/r6Mdz5dpFc), [Aura Theme](https://github.com/daltonmenezes/aura-theme) or [theme.park](https://theme-park.dev/) - Custom App Themes
|
||||||
* ⭐ **[Catppuccin](https://catppuccin.com/)** - Custom App Themes / [Discord](https://discord.gg/r6Mdz5dpFc)
|
|
||||||
* ⭐ **[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
|
||||||
* [Windows 10 Themes](https://github.com/niivu/Windows-10-themes), [Windows 11 Themes](https://github.com/niivu/Windows-11-themes) or [VSThemes](https://vsthemes.org/en/) - Custom Windows Themes
|
|
||||||
* [Chloechantelle Guide](https://www.ricing.chloechantelle.com/) or [Heliohost Guide](https://ninjasr.heliohost.org/w/lb/windows) - Windows Customization Guides
|
* [Chloechantelle Guide](https://www.ricing.chloechantelle.com/) or [Heliohost Guide](https://ninjasr.heliohost.org/w/lb/windows) - Windows Customization Guides
|
||||||
* [Blackbox 4 Windows](https://blackbox4windows.com/) - Custom Windows Shells / Widgets
|
* [Blackbox 4 Windows](https://blackbox4windows.com/) - Custom Windows Shells / Widgets
|
||||||
* [Alternative Windows Shells Wiki](https://en.wikipedia.org/wiki/List_of_alternative_shells_for_Windows) - Alt Windows Shells
|
* [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/) or [7Themes](https://7themes.su/) - Customization / Themes / Wallpapers
|
* [WindowsCustomization](https://windowscustomization.com/), [WinCustomize](https://www.wincustomize.com/), [Win10 DeviantArt](https://www.deviantart.com/tag/windows10), [WinClassic](https://winclassic.boards.net/) or [7Themes](https://7themes.su/) - Customization / Themes / Wallpapers
|
||||||
* [WinDynamicDesktop](https://github.com/t1m0thyj/WinDynamicDesktop) - Dynamic Desktop Themes
|
* [DynaWin](https://github.com/Apollo199999999/DynaWin) or [WinDynamicDesktop](https://github.com/t1m0thyj/WinDynamicDesktop) - Dynamic Desktop Themes
|
||||||
* [Auto Night Mode](https://github.com/AutoDarkMode/Windows-Auto-Night-Mode) or [Darker](https://mswin.me/darker/) - Dark / Light Mode Theme Switcher
|
* [Auto Night Mode](https://github.com/AutoDarkMode/Windows-Auto-Night-Mode) or [Darker](https://github.com/angelwzr/darker) - Dark / Light Mode Theme Switcher
|
||||||
* [SecureUxTheme](https://github.com/namazso/SecureUxTheme) or [UltraUXThemePatcher](https://mhoefs.eu/software_uxtheme.php?ref=syssel&lang=en) - Ux Theme Patcher
|
* [SecuredUxTheme](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
|
* [7TSP GUI](https://www.deviantart.com/devillnside/art/7TSP-GUI-2019-Edition-804769422) - Theme Source Patcher
|
||||||
|
* [Windows 11 for Windows 10](https://www.deviantart.com/niivu/art/Windows-11-for-Windows-10-882819383) - Windows 11 Theme / [Icons](https://www.deviantart.com/niivu/art/Windows-11-Icon-Themes-874289797)
|
||||||
* [SimpleClassicTheme](https://simpleclassictheme.nl/) - Classic Windows Theme
|
* [SimpleClassicTheme](https://simpleclassictheme.nl/) - Classic Windows Theme
|
||||||
|
* [BasicThemer2](https://github.com/Ingan121/BasicThemer2) - Windows 7 Theme
|
||||||
* [Winmoes](https://winmoes.com/) - Anime Windows Themes / Wallpapers
|
* [Winmoes](https://winmoes.com/) - Anime Windows Themes / Wallpapers
|
||||||
* [Desktops](https://deskto.ps/) - OS Theme Examples
|
* [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
|
* [MyDockFinder](https://www.mydockfinder.com/) - macOS Theme for Windows 10
|
||||||
* [Rosé Pine](https://rosepinetheme.com/) - Custom App Themes / [Discord](https://discord.gg/r6wf35KVJW)
|
* [Macdows11](https://redd.it/pd5ha6) - Windows 11 Mac Theme Guide
|
||||||
* [Aura Theme](https://github.com/daltonmenezes/aura-theme) - Custom App Themes
|
* [macOS-cursors-for-Windows](https://github.com/antiden/macOS-cursors-for-Windows) - macOS Cursors for Windows
|
||||||
* [Windhawk](https://windhawk.net/) - Custom App Themes
|
|
||||||
* [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
|
* [AccentColorizer](https://github.com/krlvm/AccentColorizer) - Custom Windows Accent Color
|
||||||
* [MicaForEveryone](https://github.com/MicaForEveryone/MicaForEveryone) - System Backdrop Customization
|
* [TranslucentFlyouts](https://github.com/ALTaleX531/TranslucentFlyouts) - Translucent Context Menus
|
||||||
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - Network & Hardware Monitor Themes
|
* [TranslucentTB](https://github.com/TranslucentTB/TranslucentTB) - Translucent Windows Taskbar
|
||||||
* [Pokemon Terminal](https://github.com/LazoCoder/Pokemon-Terminal) - Pokémon Terminal Themes
|
* [RetroBar](https://github.com/dremin/RetroBar) - Retro Classic Taskbars
|
||||||
|
* [StartAllBack](https://www.startallback.com/) - Restore Classic Start Menu in Windows 11
|
||||||
|
* [Win98Icons](https://win98icons.alexmeub.com/) - Classic Win98 Icons
|
||||||
|
* [Modern Flyouts](https://apps.microsoft.com/store/detail/modernflyouts-preview/9MT60QV066RP) - Modern Context Menus / [GitHub](https://github.com/ModernFlyouts-Community/ModernFlyouts)
|
||||||
|
* [ModernWinver](https://github.com/torchgm/NewModernWinver) - Modernize the About Windows Screen
|
||||||
|
* [Tabby](https://tabby.sh/) - Modern Terminal Theme
|
||||||
|
* [linux-like-windows-terminal](https://github.com/Kyza/linux-like-windows-terminal) - Linux Terminal Theme
|
||||||
|
* [cool-retro-term](https://github.com/Swordfish90/cool-retro-term) - Retro Cathode Terminal Theme
|
||||||
|
* [Pokemon Terminal](https://github.com/LazoCoder/Pokemon-Terminal) - Pokemon Terminal Themes
|
||||||
* [ExcelDarkThemeFix](https://github.com/matafokka/ExcelDarkThemeFix) - Fix Excel on Themed Windows
|
* [ExcelDarkThemeFix](https://github.com/matafokka/ExcelDarkThemeFix) - Fix Excel on Themed Windows
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Wallpapers
|
## ▷ Wallpapers
|
||||||
|
|
||||||
* ⭐ **[wallhaven](https://wallhaven.cc/)** / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader)
|
* ⭐ **[Wallpaper Engine](https://rentry.co/FMHYBase64#wallpaper-engine)** - Wallpaper Manager / [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)
|
||||||
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)**
|
* ⭐ **[wallhaven](https://wallhaven.cc/)** / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader) - Wallpapers
|
||||||
* ⭐ **[Studio Ghibli Wallpapers](https://www.ghibli.jp/info/013772)** or [Ghibli Upscaled](https://rentry.co/FMHYBase64#ghibli-upscaled)
|
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)** - Wallpapers
|
||||||
|
* ⭐ **[Studio Ghibli Wallpapers](https://www.ghibli.jp/info/013772)**
|
||||||
* ⭐ **[LWP](https://github.com/jszczerbinsky/lwp)** - Move Wallpapers with Cursor
|
* ⭐ **[LWP](https://github.com/jszczerbinsky/lwp)** - Move Wallpapers with Cursor
|
||||||
* [Faerber](https://farbenfroh.io/) - Edit Wallpaper to Match Color Scheme
|
|
||||||
* [Scenic Illustrations](https://www.pixeltrue.com/scenic-illustrations) - Landscape Wallpapers
|
|
||||||
* [CoolBackgrounds](https://coolbackgrounds.io/) or [wallup](https://wallup.net/) - Customizable Wallpapers
|
|
||||||
* [Simple Desktops](https://simpledesktops.com/), [Positron Dream](https://www.positrondream.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalistic Wallpapers
|
|
||||||
* [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Animated 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/), [N0va](https://n0vadp.hoyoverse.com), [Anime_WallpapersHD](https://t.me/Anime_WallpapersHD/), [WallpaperWaifu](https://wallpaperwaifu.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
|
||||||
* [Dracula Wallpapers](https://draculatheme.com/wallpaper) - Dracula Wallpapers
|
|
||||||
* [WallpaperHub](https://www.wallpaperhub.app/) or [Windows Wallpaper Pack](https://drive.google.com/drive/folders/1-80cROdVY-GSwu9fGnJJyglcERKyJ-gP) - Windows Wallpapers
|
|
||||||
* [Mac Walls](https://goo.gl/photos/HjY1hmo6p3jfFz8a7), [2](https://photos.google.com/share/AF1QipNNQyeVrqxBdNmBkq9ILswizuj-RYJFNt5GlxJZ90Y6hx0okrVSLKSnmFFbX7j5Mg?key=RV8tSXVJVGdfS1RIQUI0Q3RZZVhlTmw0WmhFZ2V3) - Mac Wallpapers
|
|
||||||
* [Wallpapers.com](https://wallpapers.com/)
|
|
||||||
* [WallpaperSafari](https://wallpapersafari.com/)
|
|
||||||
* [WallpapersDen](https://wallpapersden.com/)
|
|
||||||
* [WallpaperCave](https://wallpapercave.com/)
|
|
||||||
* [Wallpaper Tip](https://wallpapertip.com/)
|
|
||||||
* [4KWallpapers](https://4kwallpapers.com/)
|
|
||||||
* [WallsPic](https://wallspic.com/)
|
|
||||||
* [WallpaperFlare](https://www.wallpaperflare.com/)
|
|
||||||
* [HDQwalls](https://hdqwalls.com/)
|
|
||||||
* [UHD Wallpaper](https://www.uhdpaper.com/) - Wallpapers
|
|
||||||
* [WallpapersCraft](https://wallpaperscraft.com/)
|
|
||||||
* [wallha](https://wallha.com/)
|
|
||||||
* [G_Walls](https://t.me/G_Walls) - TG Wallpapers
|
|
||||||
* [pengwyn](https://t.me/pengwyn) - TG Wallpapers
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Wallpaper Managers
|
|
||||||
|
|
||||||
* ⭐ **[Wallpaper Engine](https://rentry.co/FMHYBase64#wallpaper-engine)** - Wallpaper Manager / [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)
|
|
||||||
* [Lively](https://www.rocksdanister.com/lively/) - Live Wallpaper Manager
|
|
||||||
* [DualMonitorBackgrounds](https://www.dualmonitorbackgrounds.com/) or [WallpaperFusion](https://www.wallpaperfusion.com/) - Dual Monitor Wallpapers
|
|
||||||
* [ScreenPlay](https://screen-play.app/) - Wallpaper Manager
|
* [ScreenPlay](https://screen-play.app/) - 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
|
||||||
* [Awesome Wallpaper](https://awesome-wallpaper.com/) - Wallpaper Manager
|
* [Awesome Wallpaper](https://awesome-wallpaper.com/) - Wallpaper Manager
|
||||||
* [SuperPaper](https://github.com/hhannine/superpaper) - Wallpaper Manager
|
* [SuperPaper](https://github.com/hhannine/superpaper) - Wallpaper Manager
|
||||||
* [Background Switcher](https://johnsad.ventures/software/backgroundswitcher/) - Multi-Host Wallpaper Switcher
|
* [Faerber](https://farbenfroh.io/faerber) - Edit Wallpaper to Match Color Scheme
|
||||||
|
* [AutoWall](https://github.com/SegoCode/AutoWall) - Turn Videos / GIFs to Live Wallpapers
|
||||||
|
* [Scenic Illustrations](https://www.pixeltrue.com/scenic-illustrations) - Landscape Wallpapers
|
||||||
|
* [CoolBackgrounds](https://coolbackgrounds.io/) or [wallup](https://wallup.net/) - Customizable Wallpapers
|
||||||
|
* [Simple Desktops](http://simpledesktops.com/), [Positron Dream](https://www.positrondream.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalistic Wallpapers
|
||||||
|
* [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Animated Wallpapers
|
||||||
|
* [DualMonitorBackgrounds](https://www.dualmonitorbackgrounds.com/) or [WallpaperFusion](https://www.wallpaperfusion.com/) - Dual Monitor Wallpapers
|
||||||
|
* [ScreenCapped](https://screencapped.net/), [Screencaps](https://screencaps.us/) or [shot.cafe](https://shot.cafe/) - Movie / TV Wallpapers
|
||||||
|
* [Xbox Wallpapers](https://www.xbox.com/en-us/wallpapers/) - Game Wallpapers
|
||||||
|
* [Anime Pictures](https://anime-pictures.net/), [N0va](https://n0vadp.hoyoverse.com), [Anime_WallpapersHD](https://t.me/Anime_WallpapersHD/), [WallpaperWaifu](https://wallpaperwaifu.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
||||||
|
* [99images](https://www.99images.com/) - Celebrity 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) - Mac Wallpapers
|
||||||
|
* [Wallpapers.com](https://wallpapers.com/) - Wallpapers
|
||||||
|
* [WallpaperSafari](https://wallpapersafari.com/) - Wallpapers
|
||||||
|
* [WallpaperCave](https://wallpapercave.com/) - Wallpapers
|
||||||
|
* [Wallpaper Tip](https://wallpapertip.com/) - Wallpapers
|
||||||
|
* [WallpaperFlare](https://www.wallpaperflare.com/) - Wallpapers
|
||||||
|
* [HDQwalls](https://hdqwalls.com/) - Wallpapers
|
||||||
|
* [UHD Wallpaper](https://www.uhdpaper.com/) - Wallpapers
|
||||||
|
* [WallpapersCraft](https://wallpaperscraft.com/) - Wallpapers
|
||||||
|
* [wallha](https://wallha.com/) - Wallpapers
|
||||||
|
* [G_Walls](https://t.me/G_Walls) - TG Wallpapers
|
||||||
|
* [pengwyn](https://t.me/pengwyn) - TG Wallpapers
|
||||||
|
388
Text-Tools.md
388
Text-Tools.md
@ -6,93 +6,93 @@
|
|||||||
|
|
||||||
# ► Text Tools
|
# ► Text Tools
|
||||||
|
|
||||||
* 🌐 **[ASR Leaderboard](https://huggingface.co/spaces/hf-audio/open_asr_leaderboard)** - Speech to Text Leaderboard
|
|
||||||
* ↪️ **[Image to Text](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_image_to_text_.2F_ocr)**
|
* ↪️ **[Image to Text](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_image_to_text_.2F_ocr)**
|
||||||
* ↪️ **[Text to Speech](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_text_to_speech)**
|
* ↪️ **[Text to Speech](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_text_to_speech)**
|
||||||
* ↪️ **[Study / Research](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_study_.2F_research)**
|
* ⭐ **[TextCleanr](https://www.textcleanr.com/)**, [Text Mechanic](https://textmechanic.com/), [TextFixer](https://www.textfixer.com/), [OnlineTextTools](https://onlinetexttools.com/), [SoftMyList](https://sortmylist.com/) or [The Alphabetizer](https://alphabetizer.flap.tv/) - Organize / Format Text
|
||||||
* ↪️ **[Data Visualization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_data_visualization_tools)**
|
|
||||||
* ⭐ **[TextCleanr](https://www.textcleanr.com/)**, [Text Mechanic](https://textmechanic.com/), [TextFixer](https://www.textfixer.com/), [OnlineTextTools](https://onlinetexttools.com/), [Convert Case](https://convertcase.net/), [TextCleaner](https://textcleaner.net/all-tools/), [SortMyList](https://sortmylist.com/) or [The Alphabetizer](https://alphabetizer.flap.tv/) - Organize / Format Text
|
|
||||||
* [OpenPaper](https://openpaper.work/en/), [papis](https://github.com/papis/papis), [PaperMerge](https://www.papermerge.com/), [Paperless-ngx](https://docs.paperless-ngx.com) or [DataShare](https://datashare.icij.org/) - Document Managers
|
|
||||||
* [diffr](https://loilo.github.io/diffr/), [TextCompare](https://www.textcompare.org/), [Text-Compare](https://text-compare.com/) or [DiffNow](https://www.diffnow.com/) - Compare Text
|
* [diffr](https://loilo.github.io/diffr/), [TextCompare](https://www.textcompare.org/), [Text-Compare](https://text-compare.com/) or [DiffNow](https://www.diffnow.com/) - Compare Text
|
||||||
* [Count Duplicates](https://www.somacon.com/p568.php) or [DuplicateWord](https://duplicateword.com/) - Count / Remove Duplicates in a List
|
* [Count Duplicates](https://www.somacon.com/p568.php) or [DuplicateWord](https://duplicateword.com/) - Count / Remove Duplicates in a List
|
||||||
* [Delim](https://delim.co/) - Comma Separating Tool
|
* [Delim](https://delim.co/) - Comma Separating Tool
|
||||||
|
* [SpeechTexter](https://www.speechtexter.com/), [SpeechNotes](https://speechnotes.co/), [LilySpeech](https://lilyspeech.com/), [VoiceToText](https://voicetotext.org/), [TalkTyper](https://talktyper.com/) or [VoiceNotebook](https://voicenotebook.com/) - Speech to Text
|
||||||
* [WindowTextExtractor](https://github.com/AlexanderPro/WindowTextExtractor) - Extract Text From Any Window
|
* [WindowTextExtractor](https://github.com/AlexanderPro/WindowTextExtractor) - Extract Text From Any Window
|
||||||
|
* [Content Parser](https://content-parser.com/) - Extract Markdown, HTML and Text from Sites
|
||||||
* [Textify](https://ramensoftware.com/textify) - Copy Text from Any Dialog
|
* [Textify](https://ramensoftware.com/textify) - Copy Text from Any Dialog
|
||||||
* [BeefText](https://beeftext.org/) - Text Substitution Tool
|
* [Scanner](https://simon-knuth.github.io/scanner/index) or [NAPS2](https://www.naps2.com/) - Scanner Apps / [GitHub](https://github.com/simon-knuth/scanner)
|
||||||
* [Scanner](https://simon-knuth.github.io/scanner/index) or [NAPS2](https://www.naps2.com/) - Scanner Apps / [Github](https://github.com/simon-knuth/scanner)
|
* [Text to Handwriting](https://saurabhdaware.github.io/text-to-handwriting/) or [HandWrittner](https://handwrittner.com/?lang=en) - Text to Handwriting Converter
|
||||||
* [Text to Handwriting](https://saurabhdaware.github.io/text-to-handwriting/), [texttohandwriting](https://texttohandwriting.com/) or [HandWrittner](https://handwrittner.com/?lang=en) - Text to Handwriting Converters
|
|
||||||
* [StegCloak](https://stegcloak.surge.sh/) - Hide Messages in Text
|
* [StegCloak](https://stegcloak.surge.sh/) - Hide Messages in Text
|
||||||
* [telescopictext](https://www.telescopictext.org/) - Write Text Within Text
|
* [telescopictext](https://www.telescopictext.org/) - Write Text Within Text
|
||||||
* [quipqiup](https://www.quipqiup.com/) or [dCode](https://www.dcode.fr/en) - Cryptogram Solvers
|
* [quipqiup](https://www.quipqiup.com/) or [dCode](https://www.dcode.fr/en) - Cryptogram Solvers
|
||||||
* [DocuSeal](https://www.docuseal.co/) - Free Document Signing
|
* [DocuSeal](https://www.docuseal.co/) - Free Document Signing
|
||||||
* [TemplateLab](https://templatelab.com/) - Free Document Templates
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Pastebins
|
## ▷ Pastebins
|
||||||
|
|
||||||
* 🌐 **[PrivateBin Instances](https://privatebin.info/directory)**
|
* ⭐ **[Pastebin Search](https://cse.google.com/cse?cx=0cd79b819f26af9d0)**
|
||||||
* ⭐ **[Rentry](https://rentry.co/)** / [CLI](https://github.com/radude/rentry) / [Styling](https://rentry.co/rentry) - Markdown Support
|
* ⭐ **[snowbin](https://pastes.fmhy.net/)**
|
||||||
* ⭐ **[Github Gists](https://gist.github.com/)** - Multi-Syntax / Account Needed
|
* ⭐ **[Linqbin](https://linqbin.cc/)** - Temp Pastebin
|
||||||
* ⭐ **[Stellular](https://stellular.net/)**, [2](https://bundlrs.cc/), [3](https://www.sentrytwo.com/) / [Source](https://code.stellular.org/stellular/bundlrs) - Markdown Support
|
* ⭐ **[Rentry](https://rentry.co/)** / [CLI](https://github.com/radude/rentry)
|
||||||
* ⭐ **[pastes.dev](https://pastes.dev/)** / [Source](https://github.com/lucko/paste) - Multi-Syntax / Markdown Support
|
* ⭐ **[Bundlrs](https://bundlrs.cc/)** / [Source](https://code.stellular.org/SentryTwo/bundlrs)
|
||||||
* ⭐ **[PrivateBin](https://privatebin.net/)** / [Source](https://github.com/PrivateBin/PrivateBin) - Markdown Support / Syntax Highlighting
|
* ⭐ **[disroot](https://bin.disroot.org/)**, [privatebin](https://privatebin.net/), [TextBin](https://textbin.xyz/), [bin.idrix](https://bin.idrix.fr/) or [RIN Privatebin](https://privatebin.rinuploads.org/)
|
||||||
* ⭐ **[snowbin](https://pastes.fmhy.net/)**, [2](https://paste.fmhy.net/) / [Source](https://github.com/fmhy/snowbin) - Markdown Support
|
* ⭐ **[PrivateBin Instances](https://privatebin.info/directory/)**
|
||||||
* ⭐ **[Linqbin](https://linqbin.cc/)** / [Source](https://github.com/daniel-lxs/linqbin) - Plain Text
|
* ⭐ **[katb](https://katb.in/)**
|
||||||
* ⭐ **[Katbin](https://katb.in/)** / [Source](https://github.com/sphericalkat/katbin) - Plain Text
|
* ⭐ **[WriteXO](https://writexo.com/)**
|
||||||
* ⭐ **[Pastebin Search](https://cse.google.com/cse?cx=0cd79b819f26af9d0)** - Pastebin CSE
|
* [Snips.sh](https://snips.sh/) - Self-Hosted
|
||||||
* [ZeroBin.net](https://zerobin.net/) / [.onion](http://zerobinftagjpeeebbvyzjcqyjpmjvynj5qlexwyxe7l3vqejxnqv5qd.onion) - Markdown Support / Syntax Highlighting
|
* [Paster](https://paster.so)
|
||||||
* [bpa.st](https://bpa.st/) - Multi-Syntax / Markdown Support
|
* [paste](https://paste.ee/)
|
||||||
* [Mozilla Community Pastebin](https://paste.mozilla.org/) - Multi-Syntax / Markdown Support
|
* [pst.moe](https://pst.moe/)
|
||||||
* [dpaste](https://dpaste.org/) / [Source](https://github.com/DarrenOfficial/dpaste) - Multi-Syntax / Markdown Support
|
* [p.ip.fi](https://p.ip.fi/)
|
||||||
* [cryptgeon](https://cryptgeon.org/) / [Source](https://github.com/cupcakearmy/cryptgeon) - Single View / Plain Text
|
* [paste.mozilla](https://paste.mozilla.org/)
|
||||||
* [0bin](https://0bin.net/) - Multi-Syntax / Markdown Support
|
* [pastebin](https://pastebin.com/)
|
||||||
* [Paste.ee](https://paste.ee/) - Multi-Syntax / Markdown Support
|
* [telegra.ph](https://telegra.ph/)
|
||||||
* [pst.moe](https://pst.moe/) / [Source](https://git.fuwafuwa.moe/lesderid/pastethingy) - Multi-Syntax / Markdown Support
|
* [blackhost](https://blackhost.xyz/?id=pst)
|
||||||
* [dpaste.com](https://dpaste.com/) - Multi-Syntax / Markdown Support
|
* [protectedtext](https://www.protectedtext.com/)
|
||||||
* [pastebin.ai](https://pastebin.ai/) - Multi-Syntax / Markdown Support
|
* [shortbin](http://bin.shortbin.eu:8080/)
|
||||||
* [Pastebin.com](https://pastebin.com/) - Multi-Syntax
|
* [paste.fo](https://paste.fo/)
|
||||||
* [pasteheaven.com](https://pasteheaven.com/) - Multi-Syntax
|
* [throwbin](https://throwbin.in/)
|
||||||
* [paste.fo](https://paste.fo/) - Multi-Syntax
|
* [dpaste](https://dpaste.com/) / [2](https://dpaste.org/)
|
||||||
* [BitBin](https://bitbin.it/) - Multi-Syntax
|
* [copydock](https://copydock.vercel.app/paste)
|
||||||
* [pastebin.pl](https://pastebin.pl/) - Multi-Syntax
|
* [riseup pad](https://pad.riseup.net/)
|
||||||
* [CentOS Pastebin](https://paste.centos.org/) - Multi-Syntax
|
* [zPaste](https://zpaste.net/)
|
||||||
* [snippet.host](https://snippet.host/) - Multi-Syntax
|
* [bitbin](https://bitbin.it/)
|
||||||
* [MicroBin](https://pub.microbin.eu/) / [Source](https://github.com/szabodanika/microbin) - Multi-Syntax
|
* [pastes.io](https://pastes.io/)
|
||||||
* [ProtectedText](https://www.protectedtext.com/) - Multi-Tab
|
* [txt](https://txt.fyi/)
|
||||||
* [MarkdownPastebin](https://markdownpastebin.com/) - Markdown Support
|
* [peeplink](https://peeplink.in/)
|
||||||
* [Sparked Paste](https://paste.sparked.host/) - Plain Text / Syntax Highlighting
|
* [paaster](https://paaster.io/)
|
||||||
* [Riseup Pad](https://pad.riseup.net/) - WYSIWYG Pastebin
|
* [pastery](https://www.pastery.net/)
|
||||||
* [WriteXO](https://writexo.com/) - WYSIWYG Pastebin
|
* [pastebin.pl](https://pastebin.pl/)
|
||||||
|
* [hasbin](https://hashb.in)
|
||||||
|
* [zerobin](https://zerobin.net/)
|
||||||
|
* [paste.debian](https://paste.debian.net/)
|
||||||
|
* [centos](https://paste.centos.org/)
|
||||||
|
* [blankslate](https://blankslate.io/)
|
||||||
|
* [microbin](https://microbin.eu/)
|
||||||
|
* [MarkdownPastebin](https://markdownpastebin.com/) - Markdown Pastebin
|
||||||
|
* [Mystb.in](https://mystb.in/), [codeshare](https://codeshare.io/), [paste.mod](https://paste.mod.gg/) or [snippet.host](https://snippet.host/) - Code Pastebins
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Translators
|
## ▷ Translators
|
||||||
|
|
||||||
* ⭐ **[DeepLX](https://github.com/OwO-Network/DeepLX)** or [DeepL](https://www.deepl.com/translator)
|
* ⭐ **[DeepL](https://www.deepl.com/translator)**
|
||||||
* ⭐ **[Google Translate](https://translate.google.com/)**
|
* ⭐ **[Google Translate](https://translate.google.com/)**
|
||||||
* ⭐ **[/r/Translator](https://www.reddit.com/r/translator/)** - Translation Request Community
|
* [Crow Translate](https://github.com/crow-translate/crow-translate) or [Argos](https://github.com/argosopentech/argos-translate) - Translation Apps
|
||||||
* ⭐ **[Translate Web Pages](https://github.com/FilipePS/Traduzir-paginas-web)** - Browser Extension
|
* [Translate Shell](https://www.soimort.org/translate-shell/) - Translation CLI / [GitHub](https://github.com/soimort/translate-shell)
|
||||||
* [Crow Translate](https://crow-translate.github.io/) or [Argos](https://github.com/argosopentech/argos-translate) - Translation Apps
|
|
||||||
* [Translate Shell](https://www.soimort.org/translate-shell/) - Translation CLI / [Github](https://github.com/soimort/translate-shell)
|
|
||||||
* [OnlineDocTranslator](https://www.onlinedoctranslator.com/en/) - Document Translator
|
* [OnlineDocTranslator](https://www.onlinedoctranslator.com/en/) - Document Translator
|
||||||
* [Matecat](https://www.matecat.com) - Online Translation Editor
|
* [LegaleseDecoder](https://legalesedecoder.com/free-legal-document-to-plain-english-translator/) - Legal Document Translator
|
||||||
|
* [japReader](https://github.com/marisukukise/japReader) - Japanese Text Translator
|
||||||
|
* [LyricsTranslate](https://lyricstranslate.com/) - Lyric Translator
|
||||||
* [LingoJam](https://lingojam.com/) - Create Translator
|
* [LingoJam](https://lingojam.com/) - Create Translator
|
||||||
* [Translator++](https://www.patreon.com/collection/13346) - Automatic Translator / Editor
|
* [Translator++](https://dreamsavior.net/translator-the-introduction/) - Automatic Translator / Editor
|
||||||
* [Renpy Translator](https://github.com/anonymousException/renpy-translator) or [Renpy Editor](https://github.com/anonymousException/renpy-runtime-editor) - Ren'py Automatic Translator / Editor
|
* [Translate Large PDFs](https://rentry.co/97nqn) - Large PDF Translation Guide
|
||||||
* [QTlinguist](https://github.com/lelegard/qtlinguist-installers), [Eazypo](http://www.eazypo.ca/), [Poedit](https://poedit.net/) - Translation Editor
|
* [Poedit](https://poedit.net/) - Translation Editor
|
||||||
* [OmegaT](https://omegat.org/) - Translation Memory Tool
|
* [OmegaT](https://omegat.org/) - Translation Memory Tool
|
||||||
* [Morsecode World](https://morsecode.world/) or [MorseDecoder](https://morsedecoder.com/) - Morse Code / Binary Translators
|
* [Translate-Images](https://translate-image.com/) - Translate Image Text
|
||||||
|
* [FastHub](https://fasthub.net/) - Text to Speech Translation Tool
|
||||||
|
* [ASR Leaderboard](https://huggingface.co/spaces/hf-audio/open_asr_leaderboard) - Speech Recognition AI Leaderboard
|
||||||
|
* [Useless-Translator](https://vcjhwebdev.github.io/useless-translator/), [Morsecode World](https://morsecode.world/) or [MorseDecoder](https://morsedecoder.com/) - Morse Code / Binary Translators
|
||||||
|
* [The Pirate Translator](https://pirate.monkeyness.com/translate) - Translate Text to Pirate
|
||||||
* [Emojify](https://madelinemiller.dev/apps/emojify/) - Emojify Text
|
* [Emojify](https://madelinemiller.dev/apps/emojify/) - Emojify Text
|
||||||
* [OpenAI Translator](https://github.com/yetone/openai-translator) - Browser Extension
|
* [typ3r](https://typ3r.aavi.me/) - tRaNSlAtE tEXT lik3 THiS
|
||||||
* [Simple Translate](https://simple-translate.sienori.com/) - Browser Extension
|
|
||||||
* [Saladict](https://saladict.crimx.com/) - Browser Extension
|
|
||||||
* [Linguist Translator](https://github.com/translate-tools/linguist) - Browser Extension
|
|
||||||
* [S3Translator](https://www.s3blog.org/s3translator.html) - Browser Extension
|
|
||||||
* [Firefox Translations](https://addons.mozilla.org/en-US/firefox/addon/firefox-translations/) - Browser Extension
|
|
||||||
* [ImmersiveTranslate](https://immersivetranslate.com/en/) - Browser Extension
|
|
||||||
* [Mate Translate](https://gikken.co/mate-translate) - Browser Extension
|
|
||||||
* [ImTranslator](https://imtranslator.net/) - Browser Extension
|
|
||||||
* [Papago](https://papago.naver.com/)
|
* [Papago](https://papago.naver.com/)
|
||||||
* [Libretranslate](https://libretranslate.com/) / [2](https://github.com/LibreTranslate/LibreTranslate)
|
* [Libretranslate](https://libretranslate.com/) / [2](https://github.com/LibreTranslate/LibreTranslate)
|
||||||
* [Translate.com](https://www.translate.com/)
|
* [Translate.com](https://www.translate.com/)
|
||||||
@ -113,69 +113,47 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Audio Transcription
|
|
||||||
|
|
||||||
* [mp4grep](https://github.com/o-oconnell/mp4grep)
|
|
||||||
* [SpeechTexter](https://www.speechtexter.com/)
|
|
||||||
* [Revoldiv](https://revoldiv.com/)
|
|
||||||
* [Vibe](https://thewh1teagle.github.io/vibe/)
|
|
||||||
* [SpeechNotes](https://speechnotes.co/)
|
|
||||||
* [LilySpeech](https://lilyspeech.com/)
|
|
||||||
* [VoiceToText](https://voicetotext.org/)
|
|
||||||
* [TalkTyper](https://talktyper.com/)
|
|
||||||
* [Turboscribe](https://turboscribe.ai/)
|
|
||||||
* [Dictation](https://dictation.io/speech)
|
|
||||||
* [VoiceNotebook](https://voicenotebook.com/)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Encode / Decode
|
|
||||||
|
|
||||||
* ⭐ **[CyberChef](https://gchq.github.io/CyberChef/)** - Encode / Decode Text
|
|
||||||
* ⭐ **[Base64 Decode](https://www.base64decode.org/) / [Encode](https://www.base64encode.org/)** / [Dynamic](https://apps.maximelafarie.com/base64/) / [Chrome](https://chromewebstore.google.com/detail/base64-encoderdecoder/afdannbjainhcddbjjlhamdgnojibeoi), [2](https://chromewebstore.google.com/detail/base64-decode-copy/llcfmnginbnmkeddkjjellcimmffjdcf), [3](https://chromewebstore.google.com/detail/clip64-base64-decoder/hdneaoibdfdmifgfjjlkbkceanhjmgch) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/base64-decoder/) / [Opera](https://addons.opera.com/en/extensions/details/base64-encode-and-decode/)
|
|
||||||
* [Ciphey](https://github.com/Ciphey/Ciphey) - Automated Decryption Tool
|
|
||||||
* [Universal Encoding Tool](https://unenc.com/) - Encode / Convert Text
|
|
||||||
* [cryptii](https://cryptii.com/), [DenCode](https://dencode.com/) - Text / URL Encoding
|
|
||||||
* [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
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Grammar Check
|
## ▷ Grammar Check
|
||||||
|
|
||||||
* [EditGPT](https://www.editgpt.app/)
|
* ⭐ **[Scribens](https://www.scribens.com/)**
|
||||||
|
* ⭐ **[LanguageTool](https://languagetool.org/)**
|
||||||
* [Grammarly](https://www.grammarly.com/grammar-check)
|
* [Grammarly](https://www.grammarly.com/grammar-check)
|
||||||
* [ProWritingAid](https://prowritingaid.com/grammar-checker)
|
* [ProWritingAid](https://prowritingaid.com/grammar-checker)
|
||||||
* [QuillBot](https://quillbot.com/grammar-check)
|
* [QuillBot](https://quillbot.com/grammar-check)
|
||||||
* [DeepL Write](https://www.deepl.com/write)
|
* [DeepL Write](https://www.deepl.com/write)
|
||||||
* [LanguageTool](https://languagetool.org/)
|
|
||||||
* [Scribens](https://www.scribens.com/)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Text Rephrasing
|
## ▷ Text Rephrasing
|
||||||
|
|
||||||
* ⭐ **[QuillBot AI](https://quillbot.com/)** - Text Rephrasing
|
* ⭐ **[QuillBot AI](https://quillbot.com/)** - Text Rephrasing
|
||||||
* ⭐ **[paraphrasetool](https://paraphrasetool.com/)** or [Rephrasely](https://rephrasely.com/) - Text Rephrasing
|
* ⭐ **[paraphrasetool](https://paraphrasetool.com/)** - Text Rephrasing
|
||||||
* ⭐ **[Goblin.tools](https://goblin.tools/)** - Text Rephrasing
|
* [Just Not Sorry](https://justnotsorry.com/) - Undermining Word Detection
|
||||||
|
* [Rewrite Tool](https://rewritetool.net/) - Text Rephrasing
|
||||||
|
* [Paraphraz](https://paraphraz.it/) - Text Rephrasing
|
||||||
|
* [Rephrasely](https://rephrasely.com/) - Text Rephrasing
|
||||||
* [Paraphraser](https://www.paraphraser.io/) - Text Rephrasing
|
* [Paraphraser](https://www.paraphraser.io/) - Text Rephrasing
|
||||||
* [Paraphrase-Online](https://paraphrase-online.com/) - Text Rephrasing
|
* [Paraphrase-Online](https://paraphrase-online.com/) - Text Rephrasing
|
||||||
* [paraphrasingtool](https://paraphrasingtool.ai/) - Text Rephrasing
|
* [paraphrasingtool](https://paraphrasingtool.ai/) - Text Rephrasing
|
||||||
* [SMMRY](https://smmry.com/) - Text Summary
|
|
||||||
* [henshu](https://www.henshu.ai/) - Text Rephrasing
|
* [henshu](https://www.henshu.ai/) - Text Rephrasing
|
||||||
* [WriteFull](https://www.writefull.com/) - Text Rephrasing
|
* [Smry.ai](https://www.smry.ai/) - Text Summary
|
||||||
|
* [SMMRY](https://smmry.com/) - Text Summary
|
||||||
|
* [summarize.site](https://github.com/clmnin/summarize.site/) - Text Summary
|
||||||
|
* [kagi](https://kagi.com/summarizer/index.html) - Text Summary
|
||||||
|
* [MyReader](https://www.myreader.io/) - Text Summary
|
||||||
* [Recast](https://www.letsrecast.ai/) - Text Summary
|
* [Recast](https://www.letsrecast.ai/) - Text Summary
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Emoji Indexes
|
## ▷ Emoji Indexes
|
||||||
|
|
||||||
* ⭐ **[Emojipedia](https://emojipedia.org/)**, [EmojiDB](https://emojidb.org/) or [EmojiBatch](https://www.emojibatch.com/)
|
* ⭐ **[Emojipedia](https://emojipedia.org/)** or [EmojiBatch](https://www.emojibatch.com/)
|
||||||
* [Emoji Engine](https://www.emojiengine.com/) - Multilingual Emoji Search
|
* [Emoji Engine](https://www.emojiengine.com/) - Multilingual Emoji Search
|
||||||
* [winMoji](https://www.winmoji.com/) - Emoji Managers
|
* [Geniemoji](https://github.com/virejdasani/Geniemoji), [winMoji](https://www.winmoji.com/) - Emoji Managers
|
||||||
* [EmojiRequests](https://emojirequest.com/) - Custom User-Made Emojis
|
* [EmojiRequests](https://emojirequest.com/) - Custom User-Made Emojis
|
||||||
* [Cult of the Party Parrot](https://cultofthepartyparrot.com/) - Party Parrot Emojis
|
* [Cult of the Party Parrot](https://cultofthepartyparrot.com/) - Party Parrot Emojis
|
||||||
* [Pepe Server Archive](https://github.com/Overimagine1/pepe-server-archive) - Pepe Emojis
|
* [Pepe Server Archive](https://github.com/Overimagine1/pepe-server-archive) - Pepe Emojis
|
||||||
|
* [MySmiles](http://mysmilies.com/) or [MazeGuy](https://www.mazeguy.net/smilies.html) - Oldschool Emojis
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -186,31 +164,35 @@
|
|||||||
* [Unicode Table](https://symbl.cc/)
|
* [Unicode Table](https://symbl.cc/)
|
||||||
* [Copy Paste Dump](https://c.r74n.com/)
|
* [Copy Paste Dump](https://c.r74n.com/)
|
||||||
* [Unicode Explorer](https://unicode-explorer.com/)
|
* [Unicode Explorer](https://unicode-explorer.com/)
|
||||||
|
* [CopyPasteCharacter](https://copypastecharacter.com/)
|
||||||
* [HotSymbol](https://www.hotsymbol.com/)
|
* [HotSymbol](https://www.hotsymbol.com/)
|
||||||
* [Snskey](https://snskeyboard.com/)
|
* [Snskey](https://snskeyboard.com/)
|
||||||
* [Unilist](https://unilist.raphaelbastide.com/)
|
* [Unilist](https://unilist.raphaelbastide.com/)
|
||||||
* [Character Map](https://github.com/character-map-uwp/Character-Map-UWP)
|
* [Character Map](https://github.com/character-map-uwp/Character-Map-UWP)
|
||||||
* [Alt Codes](https://alt-codes.net/)
|
* [Alt Codes](https://alt-codes.net/)
|
||||||
* [FancySymbol](https://fancysymbol.com/)
|
|
||||||
* [Unifoundry](https://unifoundry.com/)
|
* [Unifoundry](https://unifoundry.com/)
|
||||||
* [Cool Symbol](https://coolsymbol.com/)
|
* [Cool Symbol](https://coolsymbol.com/)
|
||||||
* [FastEmoji](https://www.fastemoji.com/), [Text Smileys](https://lenny-face-generator.textsmilies.com/) or [textfac.es](https://textfac.es/) - Unicode Emojis
|
* [WinCompose](http://wincompose.info/) - Unicode Compose Key / [GitHub](https://github.com/samhocevar/wincompose)
|
||||||
|
* [FastEmoji](https://www.fastemoji.com/) or [textfac.es](https://textfac.es/) - Unicode Emojis
|
||||||
|
* [BlankText](https://blanktext.net/) - Copy / Paste Blank Spaces
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Typing Lessons
|
## ▷ Typing Lessons
|
||||||
|
|
||||||
* ⭐ **[Monkey Type](https://monkeytype.com/)** - Customizable Typing Tests
|
* ⭐ **[Monkey Type](https://monkeytype.com/)** - Customizable Typing Tests
|
||||||
* ⭐ **[Smassh](https://github.com/kraanzu/smassh)** or [Ttyper](https://github.com/max-niederman/ttyper) - Terminal Typing Tests
|
* [Typing.io](https://typing.io/) - Typing Tests
|
||||||
* [Typing.io](https://typing.io/) - Typing Practice For Programming / Sign-up Required
|
* [keybr](https://www.keybr.com/) - Typing Tests
|
||||||
* [keybr](https://www.keybr.com/) - Typing Practice
|
* [Typing.com](https://www.typing.com/) - Typing Tests
|
||||||
* [Typing.com](https://www.typing.com/) - Typing Lessons
|
* [Typing Club](https://www.typingclub.com/) - Typing Tests
|
||||||
* [Typing Club](https://www.typingclub.com/) - Touch Typing Lessons
|
* [typing.academy](https://www.typing.academy/) - Typing Tests
|
||||||
* [typing.academy](https://www.typing.academy/) - Typing Lessons / Requires Javascript Enabled
|
* [TypeRacer](https://play.typeracer.com/) - Typing Games
|
||||||
* [Typings](https://typings.gg/) - Typing Tests
|
* [ZType](https://zty.pe/) - Typing Games
|
||||||
* [TypeRacer](https://play.typeracer.com/), [ZType](https://zty.pe/), [TypeRush](https://www.typerush.com/) or [ARRRType](https://www.arrrtype.com/) - Typing Games
|
* [Brevity500](https://brevity500.com/) - Typing Games
|
||||||
|
* [TypeRush](https://www.typerush.com/) - Typing Games
|
||||||
|
* [ARRRType](https://www.arrrtype.com/) - Typing Games
|
||||||
* [NGram Type](https://ranelpadon.github.io/ngram-type/), [Keyzen3](https://adamgradzki.com/keyzen3/) or [Keyzen Colmak](https://ranelpadon.github.io/keyzen-colemak-dh/) - Touch Typing Tests
|
* [NGram Type](https://ranelpadon.github.io/ngram-type/), [Keyzen3](https://adamgradzki.com/keyzen3/) or [Keyzen Colmak](https://ranelpadon.github.io/keyzen-colemak-dh/) - Touch Typing Tests
|
||||||
|
* [Ttyper](https://github.com/max-niederman/ttyper) or [TermTyper](https://github.com/kraanzu/termtyper) - Terminal Typing Tests
|
||||||
* [TypeLit.io](https://www.typelit.io/) - Book Typing Tests
|
* [TypeLit.io](https://www.typelit.io/) - Book Typing Tests
|
||||||
* [Colemak Academy](https://www.colemak.academy/) - Alt / Custom Keyboard Tests
|
* [Colemak Academy](https://www.colemak.academy/) - Alt / Custom Keyboard Tests
|
||||||
* [klavaro](https://klavaro.sourceforge.io/), [TypingStudy](https://www.typingstudy.com/) or [TypeFast](https://typefast.io/) - Multilingual Typing Tests
|
* [klavaro](https://klavaro.sourceforge.io/), [TypingStudy](https://www.typingstudy.com/) or [TypeFast](https://typefast.io/) - Multilingual Typing Tests
|
||||||
@ -218,70 +200,57 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Text Editors / Notes
|
# ► Text Editors
|
||||||
|
|
||||||
* 🌐 **[List of Text Editors](https://en.wikipedia.org/wiki/List_of_text_editors)** - Text Editor / Notepad Index
|
* 🌐 **[List of Text Editors](https://en.wikipedia.org/wiki/List_of_text_editors)** or [NoteApps](https://noteapps.info/) - Text Editor / Notepad Indexes
|
||||||
* ↪️ **[Code Editors / IDEs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_ides_.2F_code_editors)**
|
|
||||||
* ⭐ **[Notepad++](https://notepad-plus-plus.org/)** / [Markdown](https://nea.github.io/MarkdownViewerPlusPlus/)
|
* ⭐ **[Notepad++](https://notepad-plus-plus.org/)** / [Markdown](https://nea.github.io/MarkdownViewerPlusPlus/)
|
||||||
|
* ⭐ **[Microsoft Office](https://massgrave.dev/office_c2r_links.html)**, [Office Tool](https://github.com/YerongAI/Office-Tool), [Custom Office](https://massgrave.dev/office_c2r_custom.html), [LibreOffice](https://www.libreoffice.org/) or [Calligra](https://calligra.org/) - Office Suites
|
||||||
|
* ⭐ **Microsoft Office Tools** - [Guide](https://redd.it/1814gmp) / [Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation) / [Hot Keys](https://i.ibb.co/0m9t95b/ebacd47bf83b.png) / [File Search](https://sourceforge.net/projects/office-search/)
|
||||||
* ⭐ **[Obsidian](https://obsidian.md/)**
|
* ⭐ **[Obsidian](https://obsidian.md/)**
|
||||||
* ⭐ **Obsidian Tools** - [Resources](https://github.com/kmaasrud/awesome-obsidian) / [Share Notes](https://noteshare.space/) / [Live Sync](https://github.com/vrtmrz/obsidian-livesync) / [Backup](https://github.com/denolehov/obsidian-git) / [ChatGPT Addon](https://github.com/logancyang/obsidian-copilot), [2](https://github.com/vasilecampeanu/obsidian-weaver)
|
* ⭐ **Obsidian Tools** - [Resources](https://github.com/kmaasrud/awesome-obsidian) / [Share Notes](https://noteshare.space/) / [Live Sync](https://github.com/vrtmrz/obsidian-livesync) / [Backup](https://github.com/denolehov/obsidian-git) / [ChatGPT Addon](https://github.com/logancyang/obsidian-copilot). [2](https://github.com/vasilecampeanu/obsidian-weaver)
|
||||||
* ⭐ **[Notion](https://www.notion.so/)**
|
* ⭐ **[Notion](https://www.notion.so/)**
|
||||||
* ⭐ **Notion Tools** - [Themes](https://notionthemes.yudax.me/) / [Templates](https://notionpages.com/) / [Resources](https://www.notioneverything.com/notion-world), [2](https://chief-ease-8ab.notion.site/List-of-200-Notion-Resources-e1b46cd365094265bd47b8a2b25bb41e) / [Guide](https://easlo.notion.site/Notion-Beginner-to-Advanced-8a492960b049433289c4a8d362204d20) / [Markdown Extractor](https://github.com/souvikinator/notion-to-md)
|
* ⭐ **Notion Tools** - [Themes](https://notionthemes.yudax.me/) / [Templates](https://notionpages.com/) / [Resources](https://www.notioneverything.com/notion-world), [2](https://chief-ease-8ab.notion.site/List-of-200-Notion-Resources-e1b46cd365094265bd47b8a2b25bb41e) / [Guide](https://easlo.notion.site/Notion-Beginner-to-Advanced-8a492960b049433289c4a8d362204d20)
|
||||||
* ⭐ **[Notesnook](https://notesnook.com/)**
|
* ⭐ **[Kludd](https://kludd.co/)** - Collaborative Editor
|
||||||
* ⭐ **[AnyType](https://anytype.io/)**
|
* ⭐ **[AnyType](https://anytype.io/)**
|
||||||
* ⭐ **[Logseq](https://logseq.com/)**
|
* [Calculist](https://calculist.io/) - Note-Taking for Problem-Solving
|
||||||
* [Mochi Cards](https://mochi.cards/) or [Silicon](https://github.com/cu/silicon) - Note-Taking / Study Tools
|
|
||||||
* [BookStack](https://www.bookstackapp.com/) or [Siyuan](https://github.com/siyuan-note/siyuan) - Self-Hosted Information Managers
|
|
||||||
* [Desklamp](https://desklamp.io/) - Reading / Note Taking / Highlighting Tool / [Guide](https://app.desklamp.io/read?id=46b203c6-d8df-453d-b546-95a8fa7a44b9&mode=explore)
|
|
||||||
* [Note Garden](https://notegarden.io/) - Auto Courses
|
|
||||||
* [benotes](https://benotes.org/) - Self-hosted Bookmarks and Note Taking
|
|
||||||
* [Saber](https://saber.adil.hanney.org/) - Crossplatform Handwritten Notes
|
|
||||||
* [Simplenote](https://simplenote.com/) - Crossplatform Note Taking
|
|
||||||
* [Butterfly](https://docs.butterfly.linwood.dev/) - Handwritten Notes / [Discord](https://discord.com/invite/97zFtYN) / [Github](https://github.com/LinwoodDev/Butterfly)
|
|
||||||
* [EncryptPad](https://evpo.net/encryptpad/) - Encrypted Text Editor
|
* [EncryptPad](https://evpo.net/encryptpad/) - Encrypted Text Editor
|
||||||
* [NotebookLM](https://notebooklm.google/) or [Raven](https://www.ravenotes.com/) - AI Note Taking
|
* [Xournal++](https://xournalpp.github.io/) / [GitHub](https://github.com/xournalpp/xournalpp)
|
||||||
* [Xournal++](https://xournalpp.github.io/) - Handwritten Notes / [Github](https://github.com/xournalpp/xournalpp)
|
* [Notepads](https://www.notepadsapp.com/)
|
||||||
* [Notepads](https://www.notepadsapp.com/) - Text Editor
|
* [MicroPad](https://getmicropad.com/)
|
||||||
* [Xed](https://github.com/linuxmint/xed) - GTK3 Text Editor
|
* [Xed](https://github.com/linuxmint/xed)
|
||||||
* [Zim Wiki](https://zim-wiki.org/) - Wiki Text Editor
|
* [Flotes](https://flotes.app/)
|
||||||
* [Flotes](https://flotes.app/) - Markdown Note Taking
|
* [Notes](https://www.get-notes.com/)
|
||||||
* [tomboy-ng](https://github.com/tomboy-notes/tomboy-ng) - TomBoy Based Text Editor
|
* [Left](https://hundredrabbits.itch.io/left) / [GitHub](https://github.com/hundredrabbits/Left)
|
||||||
* [Helix](https://helix-editor.com/) - Kakuone/Neovim Based Text Editor
|
* [BeefText](https://beeftext.org/)
|
||||||
* [cherrytree](https://www.giuspen.net/cherrytree/) - Hierarchical Note Taking
|
* [Quill](https://quilljs.com/)
|
||||||
* [UseMemos](https://usememos.com/) / [Discord](https://discord.gg/tfPJa4UmAv)
|
* [Helix](https://helix-editor.com/) / [GitHub](https://github.com/helix-editor/helix)
|
||||||
|
* [BeaverNotes](https://beavernotes.com/)
|
||||||
|
* [Textreme](https://ash-k.itch.io/textreme) / [GitHub](https://github.com/cis-ash/TEXTREME)
|
||||||
* [Tiddly](https://tiddlywiki.com/) / [Desktop](https://github.com/tiddly-gittly/TidGi-Desktop)
|
* [Tiddly](https://tiddlywiki.com/) / [Desktop](https://github.com/tiddly-gittly/TidGi-Desktop)
|
||||||
* [Joplin](https://joplinapp.org/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/joplin-web-clipper/) / [Chrome](https://chromewebstore.google.com/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfeken-GB)
|
* [Joplin](https://joplinapp.org/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/joplin-web-clipper/) / [Chrome](https://chromewebstore.google.com/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfeken-GB)
|
||||||
* [FromScratch](https://fromscratch.rocks/)
|
* [GoogleKeepClone](https://github.com/anselm94/googlekeepclone)
|
||||||
* [Trilium](https://github.com/zadam/trilium)
|
|
||||||
* [Kompad](https://kompad.vercel.app/)
|
|
||||||
* [MicroPad](https://getmicropad.com/)
|
|
||||||
* [WriteDown](https://writedown.app/)
|
|
||||||
* [Standard Notes](https://standardnotes.com/)
|
|
||||||
* [KeyNote NF](https://github.com/dpradov/keynote-nf)
|
|
||||||
* [Notes](https://www.get-notes.com/)
|
|
||||||
* [TinyList](https://tinylist.app/)
|
* [TinyList](https://tinylist.app/)
|
||||||
* [SilentNotes](https://www.martinstoeckli.ch/silentnotes/)
|
* [Simplenote](https://simplenote.com/)
|
||||||
|
* [SilentNotes](https://www.martinstoeckli.ch/silentnotes/) / [GitHub](https://github.com/martinstoeckli/SilentNotes)
|
||||||
* [QOwnNotes](https://www.qownnotes.org/)
|
* [QOwnNotes](https://www.qownnotes.org/)
|
||||||
* [FastNotes](https://fastedit.frozenassassine.de/)
|
* [Zim Wiki](https://zim-wiki.org/)
|
||||||
* [Google Keep](https://keep.google.com/)
|
* [Laverna](https://laverna.cc/)
|
||||||
* [LockBook](https://github.com/lockbook/lockbook)
|
* [wikidPad](https://wikidpad.sourceforge.net/)
|
||||||
|
* [tomboy-ng](https://github.com/tomboy-notes/tomboy-ng)
|
||||||
***
|
* [FromScratch](https://fromscratch.rocks/)
|
||||||
|
* [Notesnook](https://notesnook.com/)
|
||||||
## ▷ Office Suites
|
* [tuxBoard](https://gitlab.com/graele84/tuxboard)
|
||||||
|
* [AFFiNE](https://affine.pro/)
|
||||||
* ⭐ **[LibreOffice](https://www.libreoffice.org/)** - FOSS Office Suite
|
* [Butterfly](https://github.com/LinwoodDev/Butterfly) / [Discord](https://discord.com/invite/97zFtYN)
|
||||||
* ⭐ **[OnlyOffice](https://www.onlyoffice.com/)** - FOSS Office Suite
|
* [UseMemos](https://usememos.com/)
|
||||||
* ⭐ **[Microsoft Office](https://gravesoft.dev/office_c2r_links)** - Office Suite
|
* [benotes](https://benotes.org/)
|
||||||
* ⭐ **Microsoft Office Tools** - [Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation) / [Activation Guide](https://redd.it/1814gmp) / [Hot Keys](https://support.microsoft.com/en-us/office/keyboard-shortcuts-in-microsoft-365-e765366f-24fc-4054-870d-39b214f223fd), [2](https://i.ibb.co/0m9t95b/ebacd47bf83b.png)
|
* [Saber](https://saber.adil.hanney.org/)
|
||||||
* [Custom Office](https://gravesoft.dev/office_c2r_custom) - FOSS Office Suite
|
* [Trilium](https://github.com/zadam/trilium)
|
||||||
* [Calligra](https://calligra.org/) - FOSS Office Suite
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Online Editors
|
## ▷ Online Editors
|
||||||
|
|
||||||
* ⭐ **[Proton Docs](https://proton.me/drive/docs)** - Local / Cloud Saves
|
|
||||||
* ⭐ **[takenote](https://takenote.dev/)** - Local Saves
|
* ⭐ **[takenote](https://takenote.dev/)** - Local Saves
|
||||||
* ⭐ **[Zen](https://zen.unit.ms/)** - Local Saves
|
* ⭐ **[Zen](https://zen.unit.ms/)** - Local Saves
|
||||||
* [Browserpad](https://browserpad.org/) - Local Saves
|
* [Browserpad](https://browserpad.org/) - Local Saves
|
||||||
@ -291,45 +260,15 @@
|
|||||||
* [ssavr](https://www.ssavr.com/) - Local Saves
|
* [ssavr](https://www.ssavr.com/) - Local Saves
|
||||||
* [notepad-online.com](https://notepad-online.com/) - Local Saves
|
* [notepad-online.com](https://notepad-online.com/) - Local Saves
|
||||||
* [JustNotePad](https://justnotepad.com/) - Local Saves
|
* [JustNotePad](https://justnotepad.com/) - Local Saves
|
||||||
* [PasteePad](https://pasteepad.com/) - Local Saves
|
|
||||||
* [Shrib](https://shrib.com/) - Local / Cloud Saves
|
* [Shrib](https://shrib.com/) - Local / Cloud Saves
|
||||||
* [MemOnNotepad](https://www.memonotepad.com/) - Local / Cloud Saves
|
* [MemOnNotepad](https://www.memonotepad.com/) - Local / Cloud Saves
|
||||||
* [Write Box](https://write-box.appspot.com/) - Local / Cloud Saves
|
* [Write Box](https://write-box.appspot.com/) - Local / Cloud Saves
|
||||||
* [NimbleText](https://nimbletext.com/Live) - Cloud Saves
|
* [NimbleText](https://nimbletext.com/Live) - Cloud Saves
|
||||||
* [ZippyJot](https://www.zippyjot.com/) - Cloud Saves
|
* [ZippyJot](https://www.zippyjot.com/) - Cloud Saves
|
||||||
* [KiloDoc](https://www.kilodoc.com/) - Cloud Saves
|
* [TextSlave](https://www.textslave.com/)
|
||||||
* [Edit-Document](https://edit-document.com/) - Local / Cloud Saves
|
* [GhostText](https://ghosttext.fregante.com/)
|
||||||
* [TextSlave](https://www.textslave.com/) - Cloud Saves
|
* [AnyTextEditor](https://anytexteditor.com/)
|
||||||
* [GhostText](https://ghosttext.fregante.com/) - Cloud Saves
|
* [KiloDoc](https://www.kilodoc.com/), [Edit-Document](https://edit-document.com/) or [GroupDocs](https://products.groupdocs.app/viewer/total) - Online Document Editors
|
||||||
* [AnyTextEditor](https://anytexteditor.com/) - Cloud Saves
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Mind Mapping
|
|
||||||
|
|
||||||
* ⭐ **[Obsidian Canvas](https://obsidian.md/canvas)**
|
|
||||||
* [MindMup](https://www.mindmup.com/)
|
|
||||||
* [FreeMind](https://freemind.sourceforge.net/)
|
|
||||||
* [Kinopio](https://kinopio.club/)
|
|
||||||
* [Freeplane](https://github.com/freeplane/freeplane)
|
|
||||||
* [Mindomo](https://www.mindomo.com/)
|
|
||||||
* [Yuque](https://www.yuque.com/)
|
|
||||||
* [MindMapp](https://mindmapp.cedoor.dev/app)
|
|
||||||
* [are.na](https://www.are.na/)
|
|
||||||
* [Domino](https://kool.tools/domino)
|
|
||||||
* [GitMind](https://gitmind.com/)
|
|
||||||
* [xTiles](https://xtiles.app/en)
|
|
||||||
* [Capacities](https://capacities.io/)
|
|
||||||
* [bubbl](https://bubbl.us/)
|
|
||||||
* [Heimer](https://github.com/juzzlin/Heimer)
|
|
||||||
* [Cubox](https://cubox.cc/)
|
|
||||||
* [vym](https://github.com/insilmaril/vym)
|
|
||||||
* [markmap](https://markmap.js.org/) - Markdown Mind Mapping / [GitHub](https://github.com/markmap/markmap)
|
|
||||||
* [Coggle](https://coggle.it/) - Collaborative
|
|
||||||
* [CardSmith](https://cardsmith.co/) - Collaborative Mind Mapping
|
|
||||||
* [Memrey](https://www.memrey.com/) - Collaborative Mind Mapping
|
|
||||||
* [MindMeister](https://www.mindmeister.com/) - Collaborative Mind Mapping
|
|
||||||
* [Slatebox](https://slatebox.com/) - Collaborative Mind Mapping
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -338,10 +277,7 @@
|
|||||||
* ⭐ **[Google Colaboratory](https://colab.research.google.com/)**
|
* ⭐ **[Google Colaboratory](https://colab.research.google.com/)**
|
||||||
* ⭐ **[Google Docs](https://www.google.com/docs/about/)**
|
* ⭐ **[Google Docs](https://www.google.com/docs/about/)**
|
||||||
* ⭐ **[CryptPad](https://cryptpad.fr/)**
|
* ⭐ **[CryptPad](https://cryptpad.fr/)**
|
||||||
* ⭐ **[Kludd](https://kludd.co/)**
|
|
||||||
* [Stashpad](https://www.stashpad.com/) / [discord](https://discord.gg/ScxPxcN9fK)
|
|
||||||
* [Mattermost](https://mattermost.com/)
|
* [Mattermost](https://mattermost.com/)
|
||||||
* [Codeshare](https://codeshare.io/)
|
|
||||||
* [HackMD](https://hackmd.io/)
|
* [HackMD](https://hackmd.io/)
|
||||||
* [Taskade](https://www.taskade.com/)
|
* [Taskade](https://www.taskade.com/)
|
||||||
* [Socket](https://socket.io/)
|
* [Socket](https://socket.io/)
|
||||||
@ -349,28 +285,25 @@
|
|||||||
* [Firepad](https://firepad.io/)
|
* [Firepad](https://firepad.io/)
|
||||||
* [Etherpad](https://etherpad.org/)
|
* [Etherpad](https://etherpad.org/)
|
||||||
* [SharePad](https://sharepad.io/)
|
* [SharePad](https://sharepad.io/)
|
||||||
* [Pixso](https://pixso.net/)
|
|
||||||
* [FidusWriter](https://www.fiduswriter.org/)
|
* [FidusWriter](https://www.fiduswriter.org/)
|
||||||
* [overleaf](https://www.overleaf.com/)
|
* [overleaf](https://www.overleaf.com/)
|
||||||
* [RustPad](https://github.com/ekzhang/rustpad)
|
* [RustPad](https://github.com/ekzhang/rustpad)
|
||||||
* [AFFiNE](https://affine.pro/)
|
|
||||||
* [OnlineInterview.io](https://onlineinterview.io/)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Spreadsheet Editors
|
## ▷ Spreadsheet Editors
|
||||||
|
|
||||||
* 🌐 **[MTEB Leaderboard](https://huggingface.co/spaces/mteb/leaderboard)** - Text Embedding AI Leaderboard
|
* 🌐 **[MTEB Leaderboard](https://huggingface.co/spaces/mteb/leaderboard)** - Text Embedding AI Leaderboard
|
||||||
* [TinySheet](https://tinysheet.com/), [tad](https://github.com/antonycourtney/tad), [Tree Sheets](https://strlen.com/treesheets/), [Gnumeric](http://www.gnumeric.org/) or [Quadratic](https://www.quadratichq.com/) - Spreadsheet Viewers / Editors
|
* [TinySheet](https://tinysheet.com/), [Tree Sheets](https://strlen.com/treesheets/), [Gnumeric](http://www.gnumeric.org/) or [Quadratic](https://www.quadratichq.com/)
|
||||||
* [Baserow](https://gitlab.com/baserow/baserow), [Framacalc](https://framacalc.org/), [NocoDB](https://github.com/nocodb/nocodb) or [AirTable](https://airtable.com/) - Collaborative Spreadsheets
|
* [Baserow](https://gitlab.com/baserow/baserow), [Framacalc](https://framacalc.org/), [NocoDB](https://github.com/nocodb/nocodb) or [AirTable](https://airtable.com/) - Collaborative Spreadsheets
|
||||||
* [Jamovi](https://www.jamovi.org/) - Statistical Spreadsheets
|
* [Jamovi](https://www.jamovi.org/) - Statistical Spreadsheets
|
||||||
|
* [Diagram.codes](https://www.diagram.codes/) - Convert Text to Diagrams
|
||||||
* [Excel Macro Mastery](https://excelmacromastery.com/vba-articles/) - Excel VBA Guides
|
* [Excel Macro Mastery](https://excelmacromastery.com/vba-articles/) - Excel VBA Guides
|
||||||
* [ExcelJet](https://exceljet.net/formulas) or [Excel Functions](https://www.excelfunctions.net/) - Excel Formulas
|
|
||||||
* [Vertex42](https://www.vertex42.com/) - Excel Templates
|
* [Vertex42](https://www.vertex42.com/) - Excel Templates
|
||||||
* [Plain Text Table](https://plaintexttools.github.io/plain-text-table/) - Text Tables
|
* [Plain Text Table](https://plaintexttools.github.io/plain-text-table/) - Text Tables
|
||||||
* [EditCSVOnline](https://www.editcsvonline.com/) - Online CSV Editor
|
* [EditCSVOnline](https://www.editcsvonline.com/) - Online CSV Editor
|
||||||
* [SubjectiveSort](https://wiesenthal.github.io/SubjectiveSort/) - Create Ranked List from CSV
|
* [SubjectiveSort](https://wiesenthal.github.io/SubjectiveSort/) - Create Ranked List from CSV
|
||||||
* [VisiData](https://www.visidata.org/) - Spreadsheet CLI Editor
|
* [VisiData](https://github.com/saulpw/visidata) - Spreadsheet CLI Editor
|
||||||
* [Structifi](https://structifi.com/) - Convert Files to Structured Data
|
* [Structifi](https://structifi.com/) - Convert Files to Structured Data
|
||||||
* [TadViewer](https://www.tadviewer.com/) - View and Analyze Tabular Data
|
* [TadViewer](https://www.tadviewer.com/) - View and Analyze Tabular Data
|
||||||
|
|
||||||
@ -379,45 +312,35 @@
|
|||||||
## ▷ Writing Tools
|
## ▷ Writing Tools
|
||||||
|
|
||||||
* ↪️ **[AI Text Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_text_generators)**
|
* ↪️ **[AI Text Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_text_generators)**
|
||||||
* ⭐ **[Writer](https://www.gibney.org/writer)**, [FocusWriter](https://gottcode.org/focuswriter/), [Writemonkey](https://writemonkey.com/), [blank.page](https://blank.page/), [Telegra.ph](https://telegra.ph/) or [WriteNext](https://www.writenext.io/) - Distraction-Free Writing
|
* ⭐ **[Writer](https://www.gibney.org/writer)**, [FocusWriter](https://gottcode.org/focuswriter/), [Writemonkey](https://writemonkey.com/) or [WriteNext](https://www.writenext.io/) - Distraction-Free Writing
|
||||||
* ⭐ **[Manuskript](https://www.theologeek.ch/manuskript/)** - Writing Organizer / Planner
|
* ⭐ **[Manuskript](https://www.theologeek.ch/manuskript/)** - Writing Organizer / Planner
|
||||||
* ⭐ **[NovelWriter](https://novelwriter.io/)** or [Bibisco](https://bibisco.com/) - Novel Editors
|
* ⭐ **[NovelWriter](https://novelwriter.io/)** or [Bibisco](https://bibisco.com/) - Novel Editors
|
||||||
* ⭐ **[Linked](https://uselinked.com/)**, [journaltxt](https://journaltxt.github.io/), [Gekri](https://gekri.com/), [Microsoft Journal](https://www.microsoft.com/en-us/garage/profiles/journal/), [Diarium](https://diariumapp.com/), [Gemlog](https://gemlog.blue/) or [jrnl.sh](https://jrnl.sh/) - Journal Apps / [Songs](https://deardiary.ai/)
|
* ⭐ **[Linked](https://uselinked.com/)**, [journaltxt](https://journaltxt.github.io/), [Gekri](https://gekri.com/), [Microsoft Journal](https://www.microsoft.com/en-us/garage/profiles/journal/), [Gemlog](https://gemlog.blue/) or [jrnl.sh](https://jrnl.sh/) - Journal Apps / [Songs](https://deardiary.ai/)
|
||||||
* ⭐ **[ChaoticShiny](http://chaoticshiny.com/)**, [Seventh Sanctum](https://www.seventhsanctum.com/), [Notebook.ai](https://www.notebook.ai/) or [WorldAnvil](https://www.worldanvil.com/) - Fantasy Writing Generators
|
* ⭐ **[ChaoticShiny](http://chaoticshiny.com/)**, [Seventh Sanctum](https://www.seventhsanctum.com/), [Notebook.ai](https://www.notebook.ai/) or [WorldAnvil](https://www.worldanvil.com/) - Fantasy Writing Generators
|
||||||
* [Tuesday JS](https://kirill-live.itch.io/tuesday-js) - Visual Novel Editor / [GitHub](https://github.com/Kirilllive/tuesday-js)
|
|
||||||
* [RenPy](https://www.renpy.org/) - Visual Novel Editor / [GitHub](https://github.com/renpy/renpy)
|
|
||||||
* [Fortelling](https://www.fortelling.app/) - Novel Plotting & Editing Workspace
|
|
||||||
* [Infinite Story](https://infinite-story.com/), [Strand](https://strand.jinay.dev/), [Agora](https://www.agorawriter.com/) or [WriteAlong](https://www.writealong.io/) - Collaborative Writing / Feedback
|
|
||||||
* [LanguageIsAVirus](https://www.languageisavirus.com/) - Writing Prompts
|
* [LanguageIsAVirus](https://www.languageisavirus.com/) - Writing Prompts
|
||||||
* [Storylines](https://github.com/morning4coffe-dev/storylines) - Chapter Based Story Writing
|
|
||||||
* [Twinery](https://twinery.org/) - Interactive Non-Linear Story Creator
|
* [Twinery](https://twinery.org/) - Interactive Non-Linear Story Creator
|
||||||
* [TextUSM](https://textusm.com/) - User Story Map Generator / [GitHub](https://github.com/harehare/textusm)
|
* [Infinite Story](https://infinite-story.com/) or [WriteAlong](https://www.writealong.io/) - Collaborative Story Writing
|
||||||
* [Blackout Poetry](https://blackoutpoetry.glitch.me/) - Blackout Poetry Creator
|
* [Blackout Poetry](https://blackoutpoetry.glitch.me/) - Blackout Poetry Creator
|
||||||
* [Idyll](https://idyll-lang.org/editor) - Create Interactive Essays / [Github](https://github.com/idyll-lang/idyll)
|
* [Idyll](https://idyll-lang.org/editor) - Create Interactive Essays / [GitHub](https://github.com/idyll-lang/idyll)
|
||||||
* [Papyrus Author](https://www.papyrusauthor.com/) - Creative Writing Suite
|
* [Papyrus Author](https://www.papyrusauthor.com/) - Creative Writing Suite
|
||||||
* [STARC](https://starc.app/) - Screen Writing Tool
|
* [STARC](https://starc.app/) - Screen Writing Tool
|
||||||
* [Unsell](https://www.unsell.design/) - Portfolio / Magazine Templates
|
* [Unsell](https://www.unsell.design/) - Portfolio / Magazine Templates
|
||||||
* [Rarebit](https://rarebit.neocities.org/) - Webcomics Template
|
* [Rarebit](https://rarebit.neocities.org/) - Webcomics Template
|
||||||
* [watchout4snakes](http://watchout4snakes.com/) - Generate Random Sentences, Phrases, Words etc.
|
|
||||||
* [Glossary Generator](https://www.jamesmurdo.com/glossary_generator.html) - Generate Glossaries
|
* [Glossary Generator](https://www.jamesmurdo.com/glossary_generator.html) - Generate Glossaries
|
||||||
* [Fantasy Name Generators](https://www.fantasynamegenerators.com/) - Fantasy Name Generators
|
* [Fantasy Name Generators](https://www.fantasynamegenerators.com/) - Fantasy Name Generators
|
||||||
* [PolyGlot](https://draquet.github.io/PolyGlot/) or [VulgarLang](https://www.vulgarlang.com/) - Spoken Language Construction Tools
|
* [PolyGlot](https://draquet.github.io/PolyGlot/) or [VulgarLang](https://www.vulgarlang.com/) - Spoken Language Construction Tools
|
||||||
* [How to annotate literally everything](https://beepb00p.xyz/annotating.html) - Annotation Tools / Resources
|
* [How to annotate literally everything](https://beepb00p.xyz/annotating.html) - Annotation Tools / Resources
|
||||||
* [Label Buddy](https://jeromedockes.github.io/labelbuddy/labelbuddy/current/) - Annotation Tool / [GitHub](https://github.com/jeromedockes/labelbuddy)
|
* [Label Buddy](https://github.com/jeromedockes/labelbuddy) - Annotation Tool
|
||||||
* [MonsterWriter](https://www.monsterwriter.app/) - Thesis Writing / Note-Taking
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ To Do Lists
|
## ▷ To Do Lists
|
||||||
|
|
||||||
* ⭐ **[Goblin.tools](https://goblin.tools/)** - Automatic Task Breakdown and more
|
* ⭐ **[Goblin.tools](https://goblin.tools/)** - Automatic Task Breakdown and more
|
||||||
* ⭐ **[TickTick](https://www.ticktick.com/)** / [Premium](https://rentry.co/FMHYBase64#tiktik)
|
|
||||||
* [Columns](https://columns.app/) or [ChecklistGenerator](https://checklistgenerator.co/) - Checklists
|
* [Columns](https://columns.app/) or [ChecklistGenerator](https://checklistgenerator.co/) - Checklists
|
||||||
* [Wonder](https://wonder-bot.com/) - Remember Things Easily
|
* [Wonder](https://wonder-bot.com/) - Remember Things Easily
|
||||||
* [YearCompass](https://yearcompass.com/) - New Years Resolution Booklet
|
* [YearCompass](https://yearcompass.com/) - New Years Resolution Booklet
|
||||||
* [daily.place](https://www.daily.place/)
|
* [daily.place](https://www.daily.place/)
|
||||||
* [SuperList](https://www.superlist.com/)
|
|
||||||
* [Diry AI](https://www.diry.ai/)
|
|
||||||
* [Fokus](https://fokus-website.netlify.app/)
|
* [Fokus](https://fokus-website.netlify.app/)
|
||||||
* [OpenToDoList](https://gitlab.com/rpdev/opentodolist)
|
* [OpenToDoList](https://gitlab.com/rpdev/opentodolist)
|
||||||
* [Microsoft To Do](https://apps.microsoft.com/store/detail/microsoft-to-do-lists-tasks-reminders/9NBLGGH5R558)
|
* [Microsoft To Do](https://apps.microsoft.com/store/detail/microsoft-to-do-lists-tasks-reminders/9NBLGGH5R558)
|
||||||
@ -428,24 +351,29 @@
|
|||||||
* [Super Productivity](https://super-productivity.com/)
|
* [Super Productivity](https://super-productivity.com/)
|
||||||
* [Tasks](https://github.com/BaldissaraMatheus/Tasks.md)
|
* [Tasks](https://github.com/BaldissaraMatheus/Tasks.md)
|
||||||
* [Taskwarrior](https://taskwarrior.org/)
|
* [Taskwarrior](https://taskwarrior.org/)
|
||||||
|
* [TickTick](https://www.ticktick.com/)
|
||||||
* [Vikunja](https://vikunja.io/)
|
* [Vikunja](https://vikunja.io/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ 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/)**
|
||||||
* [REXPaint](https://www.gridsagegames.com/rexpaint/), [Playscii](https://jp.itch.io/playscii) or [PabloDraw](https://picoe.ca/products/pablodraw/) - ASCII Editors
|
* [Text Smileys](https://lenny-face-generator.textsmilies.com/)
|
||||||
* [Kakikun](https://github.com/file-acomplaint/kakikun) - ASCII Terminal Editor
|
* [ASCII Today](https://ascii.today/)
|
||||||
* [ASCII Paint](https://ascii.alienmelon.com/) - ASCII Paint Tool
|
* [REXPaint](https://www.gridsagegames.com/rexpaint/)
|
||||||
|
* [PabloDraw](https://picoe.ca/products/pablodraw/)
|
||||||
|
* [ASCII Paint](https://ascii.alienmelon.com/)
|
||||||
|
* [DeepAA](https://github.com/OsciiArt/DeepAA)
|
||||||
|
* [Kakikun](https://github.com/file-acomplaint/kakikun)
|
||||||
|
* [Playscii](https://jp.itch.io/playscii)
|
||||||
|
* [Kammerl](https://www.kammerl.de/ascii/AsciiSignature.php) - ASCII Text Generator
|
||||||
* [ascii-art-generator](https://www.ascii-art-generator.org/), [ascii-generator](https://ascii-generator.site/), [asciiart](https://asciiart.club/), [ascii-image-converter](https://github.com/TheZoraiz/ascii-image-converter) or [ASCII-art-creator](https://github.com/CherryPill/ASCII-art-creator) - Image to ASCII Art
|
* [ascii-art-generator](https://www.ascii-art-generator.org/), [ascii-generator](https://ascii-generator.site/), [asciiart](https://asciiart.club/), [ascii-image-converter](https://github.com/TheZoraiz/ascii-image-converter) 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/), [16colors](https://16colo.rs/), [ascii.co](https://ascii.co.uk/art) or [RoySAC](http://www.roysac.com/sitemap.html) - Copy ASCII Art
|
||||||
* [ASCII Flow](https://asciiflow.com/) or [tree](https://tree.nathanfriend.io/) - Create ASCII Diagrams
|
* [ASCII Flow](https://asciiflow.com/) or [Tree](https://tree.nathanfriend.io/) - Create ASCII Diagrams
|
||||||
* [Video Ascii Art](http://www.kickjs.org/example/video_ascii_art/Video_Ascii_Art.html) - Video to Ascii Art
|
* [Video Ascii Art](http://www.kickjs.org/example/video_ascii_art/Video_Ascii_Art.html) - Video to Ascii Art
|
||||||
* [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
|
* [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
|
|
||||||
* [lvllvl](https://lvllvl.com/) or [Petmate](https://nurpax.github.io/petmate/) - C64 PETSCII Image Editor
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -455,10 +383,9 @@
|
|||||||
* ⭐ **[TypeTrials](https://typetrials.com/)** - Variable Font Playground
|
* ⭐ **[TypeTrials](https://typetrials.com/)** - Variable Font Playground
|
||||||
* ⭐ **[Nerd Fonts](https://www.nerdfonts.com/)** - Iconic Font Aggregator
|
* ⭐ **[Nerd Fonts](https://www.nerdfonts.com/)** - Iconic Font Aggregator
|
||||||
* ⭐ **[Make WordArt](https://www.makewordart.com/)**, [FlameText](https://www10.flamingtext.com/), [MakeText](https://maketext.io/), [TextGiraffe](https://www.textgiraffe.com/), [Text Pro](https://textpro.me/) or [CoolText](https://cooltext.com/) - WordArt Generators
|
* ⭐ **[Make WordArt](https://www.makewordart.com/)**, [FlameText](https://www10.flamingtext.com/), [MakeText](https://maketext.io/), [TextGiraffe](https://www.textgiraffe.com/), [Text Pro](https://textpro.me/) or [CoolText](https://cooltext.com/) - WordArt Generators
|
||||||
* ⭐ **[WhatTheFont](https://www.myfonts.com/WhatTheFont/)**, [Identifont](http://www.identifont.com/), [WhatFont](https://whatfonttool.com/) or [What Font Is](https://www.whatfontis.com/) - Font Identification Tools
|
* ⭐ **[WhatTheFont](https://www.myfonts.com/WhatTheFont/)**, [Identifont](http://www.identifont.com/), [WhatFont](https://www.chengyinliu.com/whatfont.html), [Fonty.io](https://fonty.io/) or [What Font Is](https://www.whatfontis.com/) - Font Identification Tools
|
||||||
* ⭐ **[FontDrop](https://fontdrop.info/)** - Analyze Font Files
|
* ⭐ **[FontDrop](https://fontdrop.info/)** - Analyze Font Files
|
||||||
* [Fork-Awesome](https://forkaweso.me/Fork-Awesome/) - Font Toolkit
|
* [Fork-Awesome](https://forkaweso.me/Fork-Awesome/) - Font Toolkit
|
||||||
* [OpenDyslexic](https://opendyslexic.org/) - Increase Page Readability
|
|
||||||
* [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
|
||||||
* [DS Fusion](https://ds-fusion.github.io/) - AI Typography Generator
|
* [DS Fusion](https://ds-fusion.github.io/) - AI Typography Generator
|
||||||
* [Formito](https://formito.com/tools/logo) - Typography Logo Maker
|
* [Formito](https://formito.com/tools/logo) - Typography Logo Maker
|
||||||
@ -505,6 +432,7 @@
|
|||||||
* [GooFonts](https://goofonts.com/)
|
* [GooFonts](https://goofonts.com/)
|
||||||
* [DaFont](https://www.dafont.com/)
|
* [DaFont](https://www.dafont.com/)
|
||||||
* [Dafont Free](https://www.dafontfree.net/)
|
* [Dafont Free](https://www.dafontfree.net/)
|
||||||
|
* [graphicex](https://graphicex.com/font/)
|
||||||
* [FontSpace](https://www.fontspace.com/)
|
* [FontSpace](https://www.fontspace.com/)
|
||||||
* [Font Store](https://t.me/fontsstore)
|
* [Font Store](https://t.me/fontsstore)
|
||||||
* [NetFontes](https://www.netfontes.com.br/)
|
* [NetFontes](https://www.netfontes.com.br/)
|
||||||
@ -512,13 +440,10 @@
|
|||||||
* [FONToMASS](https://m.vk.com/topic-178186634_39300099?offset=0)
|
* [FONToMASS](https://m.vk.com/topic-178186634_39300099?offset=0)
|
||||||
* [Font Squirrel](https://www.fontsquirrel.com/)
|
* [Font Squirrel](https://www.fontsquirrel.com/)
|
||||||
* [Free Fonts Family](https://freefontsfamily.com/)
|
* [Free Fonts Family](https://freefontsfamily.com/)
|
||||||
* [DFonts](https://www.dfonts.org/)
|
|
||||||
* [FontSpark](https://fontspark.com/)
|
* [FontSpark](https://fontspark.com/)
|
||||||
* [Velvetyne](https://velvetyne.fr/)
|
* [Velvetyne](https://velvetyne.fr/)
|
||||||
* [FontPair](https://www.fontpair.co/fonts)
|
* [FontPair](https://www.fontpair.co/fonts)
|
||||||
* [FontsHub](https://fontshub.pro/)
|
* [FontsHub](https://fontshub.pro/)
|
||||||
* [CDNFonts](https://www.cdnfonts.com/)
|
|
||||||
* [Fontesk](https://fontesk.com/)
|
|
||||||
* [CandyFonts](https://candyfonts.com/)
|
* [CandyFonts](https://candyfonts.com/)
|
||||||
* [uncut.wtf](https://uncut.wtf/)
|
* [uncut.wtf](https://uncut.wtf/)
|
||||||
* [Lost Type Co-op](https://losttype.com/browse/)
|
* [Lost Type Co-op](https://losttype.com/browse/)
|
||||||
@ -577,14 +502,15 @@
|
|||||||
* [Font Meme](https://fontmeme.com/)
|
* [Font Meme](https://fontmeme.com/)
|
||||||
* [Font Generator Online](https://www.fontgeneratoronline.com/)
|
* [Font Generator Online](https://www.fontgeneratoronline.com/)
|
||||||
* [Getfancy](https://getfancy.io/)
|
* [Getfancy](https://getfancy.io/)
|
||||||
|
* [Font Generator](https://www.toulr.com/)
|
||||||
* [DiscordFonts](https://lingojam.com/DiscordFonts)
|
* [DiscordFonts](https://lingojam.com/DiscordFonts)
|
||||||
* [MessLetters](https://www.messletters.com/)
|
* [MessLetters](https://www.messletters.com/)
|
||||||
* [Fancy Text](https://fancy-text.net/)
|
* [Fancy Text](https://fancy-text.net/)
|
||||||
* [FontGenerator](https://fontgenerator.cc/)
|
|
||||||
* [YayText](https://yaytext.com/)
|
* [YayText](https://yaytext.com/)
|
||||||
* [Font-Generator](https://www.font-generator.com/)
|
* [Font-Generator](https://www.font-generator.com/)
|
||||||
* [LingoJam](https://lingojam.com/WeirdTextGenerator)
|
* [lingojam](https://lingojam.com/WeirdTextGenerator)
|
||||||
* [fSymbols](https://fsymbols.com/generators/)
|
* [fSymbols](https://fsymbols.com/generators/)
|
||||||
* [fontchangerguru](https://fontchangerguru.com/)
|
* [fontchangerguru](https://fontchangerguru.com/)
|
||||||
|
* [fontgenerator](https://fontgenerator.in/)
|
||||||
* [tell.wtf](https://tell.wtf/)
|
* [tell.wtf](https://tell.wtf/)
|
||||||
* [fancytextdecorator](https://fancytextdecorator.com/)
|
* [fancytextdecorator](https://fancytextdecorator.com/)
|
||||||
|
@ -4,20 +4,83 @@
|
|||||||
***
|
***
|
||||||
***
|
***
|
||||||
|
|
||||||
|
# ► [VPN Guide](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
# ► Torrent Clients
|
||||||
|
|
||||||
|
**Warning** - Make sure you [BIND](https://redd.it/ssy8vv) your VPN to your client to avoid ISP letters.
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
* ⭐ **[qBittorrent](https://www.qbittorrent.org/)** - [Screenshot](https://i.ibb.co/ZBWZLvB/8519077d9320.png) / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools)
|
||||||
|
* ⭐ **[Deluge](https://www.deluge-torrent.org/)** - [Screenshot](https://i.ibb.co/HdwCH5Q/678a01f3b439.png) / [Plugins](https://dev.deluge-torrent.org/wiki/Plugins) / [Config](https://github.com/ratanakvlun/deluge-ltconfig/releases) / [Telegram Plugin](https://github.com/noam09/deluge-telegramer)
|
||||||
|
* ⭐ **[Transmission](https://transmissionbt.com/)** - [Screenshot](https://i.ibb.co/z550kRy/571b08f4981e.png)
|
||||||
|
* ⭐ **[torrent-control](https://github.com/Mika-/torrent-control)** or [Remote Torrent Adder](https://github.com/bogenpirat/remote-torrent-adder) - Easily Send Torrents to Client
|
||||||
|
* [Tixati](https://tixati.com/) - [Screenshot](https://i.ibb.co/tPfyPRQ/b0683ce2eb49.png)
|
||||||
|
* [Motrix](https://motrix.app/) - [Screenshot](https://i.ibb.co/SQqrdpW/2950c09df08a.png) / [GitHub](https://github.com/agalwood/Motrix)
|
||||||
|
* [WizTorrent](https://wiztorrent.com/) - [Screenshot](https://i.imgur.com/O3VbklP.jpg) / Torrent Player / WebShare
|
||||||
|
* [Picotorrent](https://picotorrent.org/) - [Screenshot](https://i.ibb.co/Pz4qb8Q/df96c0ff3912.png)
|
||||||
|
* [BiglyBT](https://www.biglybt.com/) - [Screenshot](https://i.ibb.co/5TRkt1t/bfe91a771679.png)
|
||||||
|
* [LIII](https://codecpack.co/download/LIII-BitTorrent-Client.html) - [Screenshot](https://i.ibb.co/jRJR1cX/cecb8c47451d.png)
|
||||||
|
* [PikaTorrent](https://www.pikatorrent.com/) - [Screenshot](https://ibb.co/zGyT1tc) / [GitHub](https://github.com/G-Ray/pikatorrent)
|
||||||
|
* [Distribyted](https://distribyted.com/) - [Screenshot](https://i.ibb.co/m8TQBPh/f5dfcb4b192f.png) / [GitHub](https://github.com/distribyted/distribyted)
|
||||||
|
* [Crawfish](https://github.com/drakonkat/Crawfish) - [Screenshot](https://i.ibb.co/DVVVdpG/8406bc7e0a39.png)
|
||||||
|
* [GoSpeed](https://github.com/GopeedLab/gopeed) - [Screenshot](https://github.com/GopeedLab/gopeed/blob/main/_docs/img/ui-demo.png)
|
||||||
|
* [Tribler](https://www.tribler.org/) - Tor-inspired Client / [Screenshot](https://i.ibb.co/k4jt0FJ/20d3bd279896.png) / [GitHub](https://github.com/Tribler/tribler)
|
||||||
|
* [aria2](https://aria2.github.io/) - Terminal Torrent Client / [Screenshot](https://i.ibb.co/SmsxmW3/3e213c54b148.png) / [GitHub](https://github.com/aria2/aria2) / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [GUI](https://github.com/persepolisdm/persepolis) / [Frontend](https://ariang.mayswind.net/) / [WebUI](https://github.com/ziahamza/webui-aria2) / [GUI](https://persepolisdm.github.io/)
|
||||||
|
* [XD-Torrent](https://xd-torrent.github.io/) - Anonymous P2P Torrent Client
|
||||||
|
* [BitSwarm](https://github.com/SuRGeoNix/BitSwarm/) - Bittorrent Client Library
|
||||||
|
* [Instant.io](https://instant.io/) - Stream Torrents in Browser
|
||||||
|
* [BTorrent](https://btorrent.xyz/) - Stream Torrents in Browser
|
||||||
|
* [Magnet Player](https://ferrolho.github.io/magnet-player/) - Stream Torrents in Browser
|
||||||
|
* [BitFord](https://github.com/astro/bitford) - Chrome
|
||||||
|
* [Rats Search](https://github.com/DEgITx/rats-search) - Torrent Search Client / [Screenshot](https://github.com/DEgITx/rats-search#screenshots)
|
||||||
|
* [Download Torrents Through I2P](https://decentnet.github.io/blog/20200329-download-torrents-through-i2p.html)
|
||||||
|
* [flood](https://flood.js.org/) - rTorrent, Transmission & qBittorrent WebUI / [GitHub](https://github.com/jesec/flood)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ Remote Torrenting
|
||||||
|
|
||||||
|
* ↪️ **[Torrent to GDrive](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_torrent_to_gdrive)**
|
||||||
|
* ⭐ **[Multi-Up](https://multiup.io/en/upload/from-torrent)** - Torrent to DDL Sites / [Bypass 10GB Limit](https://pastebin.com/0aPaPqN9)
|
||||||
|
* ⭐ **[Seedr](https://www.seedr.cc/)** - [Telegram Bot](https://t.me/TorrentSeedrBot) / [API Wrapper](https://github.com/theabbie/seedr-api), [2](https://github.com/AnjanaMadu/SeedrAPI) - Torrent to Cloud and Stream
|
||||||
|
* ⭐ **[webtor](https://webtor.io/)** - Torrent to Cloud and Stream / [Send Magnets](https://greasyfork.org/en/scripts/481975)
|
||||||
|
* [Bitport](https://bitport.io/welcome) - Torrent to Cloud and Stream
|
||||||
|
* [TorrentSafe](https://www.torrentsafe.com/) - Torrent to Cloud and Stream
|
||||||
|
* [TorrentCheap](https://my.torrentcheap.com/) - Torrent to Cloud and Stream
|
||||||
|
* [ZBIGZ](https://zbigz.com/) - Torrent to Cloud and Stream
|
||||||
|
* [Loadbt](https://www.loadbt.com/) - Torrent to Cloud and Stream
|
||||||
|
* [TorBox](https://torbox.app/) - Torrent to Cloud
|
||||||
|
* [Demagnetize](http://demagnetize.link/) - Torrent to DDL
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ [Android Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_torrenting)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
## ▷ [iOS Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_ios_torrenting)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# ► Torrent Sites
|
# ► Torrent Sites
|
||||||
|
|
||||||
**Warning** - It's best to avoid sites that allow anyone to make accounts when getting both software and games. Avoid users in the [Unsafe](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/unsafe-sites/) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists.
|
**Warning** - It's best to avoid sites that allow anyone to upload without consequences when getting both software and games. Avoid users in the [Unsafe](https://fmhy.net/unsafesites) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.nl/), [3](https://rutracker.net/) - Video / Audio / Games / Software / Android / Comics / Magazines
|
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.nl/), [3](https://rutracker.net/) - Video / Audio / Games / Software / Android / Comics / Magazines
|
||||||
* ⭐ **RuTracker Tools** - [Addon](https://addons.mozilla.org/en-US/firefox/addon/rutracker_torrent_search/) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
* ⭐ **RuTracker Tools** - [Addon](https://addons.mozilla.org/en-US/firefox/addon/rutracker_torrent_search/) / [Search API](https://github.com/nikityy/rutracker-api) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
||||||
* ⭐ **[TorrentGalaxy](https://torrentgalaxy.to/)** - Video / Audio / NSFW / [.onion](http://galaxy3yrfbwlwo72q3v2wlyjinqr2vejgpkxb22ll5pcpuaxlnqjiid.onion)
|
* ⭐ **[TorrentGalaxy](https://torrentgalaxy.to/)** - Video / Audio / NSFW / [Mirrors](https://proxygalaxy.me/)
|
||||||
* ⭐ **[m0nkrus](https://w14.monkrus.ws/)** - Adobe Software Archive / [Search Engine](https://monkrus.dvuzu.com/) / [Block Adobe](https://github.com/ignaciocastro/a-dove-is-dumb), [2](https://rentry.co/psnfoandhostblock)
|
* ⭐ **[m0nkrus](https://w14.monkrus.ws/)** - Adobe Software Archive / [Search Engine](https://dvuzu.github.io/monkrus-search) / [How-to](https://rentry.co/adobesoftware)
|
||||||
* ⭐ **[Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search
|
* ⭐ **[Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search
|
||||||
* [1337x](https://1337x.to/) - Video / Audio / NSFW
|
* [1337x](https://1337x.to/) - Video / Audio / NSFW / [Avoid Software](https://pastebin.com/8AaMuz5u)
|
||||||
* 1337x Tools - [Mirrors](https://1337x-status.org/), [2](https://1337x.to/about) / [User Ranks](https://i.ibb.co/WfNhvtB/ebc2def26433.png) / [Telegram Bot](https://t.me/search_content_bot), [2](https://github.com/xbIm/1337x-torrent-telegram-bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Proxy](https://redd.it/tz7nyx), [2](https://pastebin.com/3n5K0QrP) [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [Magnets](https://greasyfork.org/en/scripts/373230) / [Timezone Fix](https://greasyfork.org/en/scripts/421635)
|
* 1337x Tools - [Mirrors](https://1337x.to/about) / [User Ranks](https://i.ibb.co/WfNhvtB/ebc2def26433.png) / [Discord Bot](https://github.com/brandongallagher1999/1337x-Bot) / [Telegram Bot](https://t.me/search_content_bot), [2](https://github.com/xbIm/1337x-torrent-telegram-bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Proxy](https://redd.it/tz7nyx), [2](https://pastebin.com/3n5K0QrP) / [Enhancements](https://greasyfork.org/en/scripts/33379) / [Magnets](https://greasyfork.org/en/scripts/373230) / [Subtitles](https://greasyfork.org/en/scripts/29467) / [Timezone Fix](https://greasyfork.org/en/scripts/421635)
|
||||||
* [GloTorrents](https://glodls.to) - Video / Audio / Books / NSFW
|
* [GloTorrents](https://glodls.to) - Video / Audio / Books / NSFW
|
||||||
|
* [MagnetDL](https://www.magnetdl.com/), [2]( https://www.magnetdl.org/) - Video / Audio / Books / [Onion](http://r5cena7erxpnxomyvoybuxh6fkgs55qqdg7bobf6yjx4j6vmywrqvlid.onion/)
|
||||||
* [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books
|
* [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books
|
||||||
* [IsoHunt](https://isohunts.to/) or [IsoHunt.nz](https://isohunt.nz/) - Video / Audio / Books
|
* [IsoHunt](https://isohunts.to/) or [IsoHunt.nz](https://isohunt.nz/) - Video / Audio / Books
|
||||||
* [ExT](https://ext.to/), [2](https://search.extto.com/) - Video / Audio / Books
|
* [ExT](https://ext.to/), [2](https://search.extto.com/) - Video / Audio / Books
|
||||||
@ -25,7 +88,7 @@
|
|||||||
* [rutor.info](https://rutor.info/) or [rutor.is](https://rutor.is/) - Video / Audio / Books / ROMs / Magazines / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
* [rutor.info](https://rutor.info/) or [rutor.is](https://rutor.is/) - Video / Audio / Books / ROMs / Magazines / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
||||||
* [NNM-Club](https://nnmclub.to/) - Video / Audio / [Note](https://i.ibb.co/MPRttDC/6a35c3c79cde.png)
|
* [NNM-Club](https://nnmclub.to/) - Video / Audio / [Note](https://i.ibb.co/MPRttDC/6a35c3c79cde.png)
|
||||||
* [Torrentz2k](https://torrentz2k.xyz/) - Video / Audio / NSFW
|
* [Torrentz2k](https://torrentz2k.xyz/) - Video / Audio / NSFW
|
||||||
* [Torrenting](https://www.torrenting.com/) - Video / Audio / Books / NSFW / Signup Required
|
* [Torrenting](https://www.torrenting.com/) - Video / Audio / Books / NSFW
|
||||||
* [Tigole](https://infogalactic.com/info/Tigole#Getting_Tigole_torrents) - Torrent Index
|
* [Tigole](https://infogalactic.com/info/Tigole#Getting_Tigole_torrents) - Torrent Index
|
||||||
* [ZeroTorrent](http://127.0.0.1:43110/ZeroTorrent.bit/) - [ZeroNet Required](https://zeronet.io/) / Video / Audio
|
* [ZeroTorrent](http://127.0.0.1:43110/ZeroTorrent.bit/) - [ZeroNet Required](https://zeronet.io/) / Video / Audio
|
||||||
* [4chan /t/](https://boards.4chan.org/t/) - Torrents / Imageboard / Some NSFW
|
* [4chan /t/](https://boards.4chan.org/t/) - Torrents / Imageboard / Some NSFW
|
||||||
@ -34,30 +97,29 @@
|
|||||||
|
|
||||||
## ▷ Aggregators
|
## ▷ Aggregators
|
||||||
|
|
||||||
**Warning** - Aggregators include many sources, so it's best to avoid using them for software and games. Avoid users in the [Unsafe](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/unsafe-sites/) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists.
|
**Warning** - Aggregators include many sources, so it's best to avoid using them for software and games. Avoid users in the [Unsafe](https://fmhy.net/unsafesites) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
* ⭐ **[BTDigg](https://btdig.com/index.htm)** - [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/), [2](https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion.ly/) / [i2p](http://btdigg.i2p/)
|
* ⭐ **[BTDigg](https://btdig.com/index.htm)** - [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/), [2](https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion.ly/) / [i2p](http://btdigg.i2p/)
|
||||||
* ⭐ **[snowfl](https://snowfl.com/)**
|
* ⭐ **[snowfl](https://snowfl.com/)**
|
||||||
* ⭐ **[Knaben](https://knaben.eu/)**
|
* ⭐ **[Knaben](https://knaben.eu/)**
|
||||||
* ⭐ **[SolidTorrents](https://solidtorrents.to/)**, [2](https://solidtorrents.eu/)
|
* ⭐ **[SolidTorrents](https://solidtorrents.to/)**
|
||||||
* ⭐ **[Torrentz2](https://torrentz2.nz/)**
|
* ⭐ **[Torrentz2](https://torrentz2.nz/)**
|
||||||
|
* [iDope](https://idope.se)
|
||||||
* [Bitsearch](https://bitsearch.to/)
|
* [Bitsearch](https://bitsearch.to/)
|
||||||
* [Torrent Finder](https://torrent-finder.com/)
|
* [Torrent Finder](https://torrent-finder.com/)
|
||||||
* [TorrentDownload](https://www.torrentdownload.info/)
|
* [TorrentDownload](https://www.torrentdownload.info/)
|
||||||
|
* [Dirty Torrents](https://dirtytorrents.com/)
|
||||||
* [TorrentQuest](https://torrentquest.com/)
|
* [TorrentQuest](https://torrentquest.com/)
|
||||||
* [TorrentCORE](https://torrentcore.xyz/)
|
|
||||||
* [DaMag](https://damag.net/)
|
* [DaMag](https://damag.net/)
|
||||||
* [Cleanbay](https://cleanbay.netlify.app/)
|
* [Cleanbay](https://cleanbay.netlify.app/)
|
||||||
* [Torrends](https://torrends.to/)
|
* [Torrends](https://torrends.to/)
|
||||||
* [CloudTorrents](https://cloudtorrents.com/)
|
* [CloudTorrents](https://cloudtorrents.com/)
|
||||||
* [BTMET](https://btmet.com/)
|
* [BTMET](https://btmet.com/)
|
||||||
* [Torrents-CSV](https://torrents-csv.com/)
|
|
||||||
* [FileMood](https://filemood.com/)
|
|
||||||
* [BT4G](https://bt4gprx.com/)
|
* [BT4G](https://bt4gprx.com/)
|
||||||
* [Torlock](https://www.torlock.com/), [2](https://www.torlock2.com/)
|
* [Torlock](https://www.torlock.com/), [2](https://www.torlock2.com/)
|
||||||
* [TorrentProject](https://torrentproject.cc/), [2](https://torrentproject2.net/)
|
* [TorrentProject2](https://torrentproject2.com/), [2](https://torrentproject2.net/)
|
||||||
* [0Mag](https://www.0mag.net/), [2](https://16mag.net/)
|
* [0Mag](https://www.0mag.net/), [2](https://16mag.net/)
|
||||||
* [TorrentDownloads](https://www.torrentdownloads.pro/)
|
* [TorrentDownloads](https://www.torrentdownloads.pro/)
|
||||||
* [concen](https://www.concen.org/torrents)
|
* [concen](https://www.concen.org/torrents)
|
||||||
@ -68,7 +130,7 @@
|
|||||||
* [Veoble](https://veoble.com/torrent/)
|
* [Veoble](https://veoble.com/torrent/)
|
||||||
* [TorrentSearchRobot](https://t.me/TorrentSearchRoBot) - Telegram Torrent Search
|
* [TorrentSearchRobot](https://t.me/TorrentSearchRoBot) - Telegram Torrent Search
|
||||||
* [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Magnet Web App Search
|
* [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Magnet Web App Search
|
||||||
* [Torrentinim](https://github.com/sergiotapia/torrentinim) or [BitMagnet](https://bitmagnet.io/) - Self-Hosted Torrent Search Engines
|
* [Torrentinim](https://github.com/sergiotapia/torrentinim) - Self-Hosted Torrent Search Engine
|
||||||
* [torrentsearcher_bot](https://t.me/torrentsearcher_bot), [torrenthuntbot](https://t.me/torrenthuntbot) or [FDTorrentSearchBot](https://t.me/FDTorrentSearchBot) - Telegram Torrent Search Bot
|
* [torrentsearcher_bot](https://t.me/torrentsearcher_bot), [torrenthuntbot](https://t.me/torrenthuntbot) or [FDTorrentSearchBot](https://t.me/FDTorrentSearchBot) - Telegram Torrent Search Bot
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -93,90 +155,21 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Torrent Clients
|
|
||||||
|
|
||||||
**Warning** - Make sure you [BIND](https://redd.it/ssy8vv) your [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) to your client to avoid ISP letters.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
* ⭐ **[qBittorrent](https://www.qbittorrent.org/)** or [QBT Enhanced](https://github.com/c0re100/qBittorrent-Enhanced-Edition) - [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_qbittorrent_tools)
|
|
||||||
* ⭐ **[Deluge](https://www.deluge-torrent.org/)** - [Plugins](https://dev.deluge-torrent.org/wiki/Plugins) / [Config](https://github.com/ratanakvlun/deluge-ltconfig/releases) / [Telegram Plugin](https://github.com/noam09/deluge-telegramer)
|
|
||||||
* ⭐ **[Transmission](https://transmissionbt.com/)**
|
|
||||||
* ⭐ **[Tixati](https://tixati.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
|
|
||||||
* [Motrix](https://motrix.app/) - [GitHub](https://github.com/agalwood/Motrix)
|
|
||||||
* [WizTorrent](https://wiztorrent.com/) - Torrent Player / WebShare
|
|
||||||
* [Picotorrent](https://picotorrent.org/)
|
|
||||||
* [BiglyBT](https://www.biglybt.com/)
|
|
||||||
* [LIII](https://codecpack.co/download/LIII-BitTorrent-Client.html)
|
|
||||||
* [PikaTorrent](https://www.pikatorrent.com/) - [GitHub](https://github.com/G-Ray/pikatorrent)
|
|
||||||
* [Distribyted](https://distribyted.com/) - [GitHub](https://github.com/distribyted/distribyted)
|
|
||||||
* [Crawfish](https://github.com/drakonkat/Crawfish)
|
|
||||||
* [Tribler](https://www.tribler.org/) - Tor-inspired Client / [GitHub](https://github.com/Tribler/tribler)
|
|
||||||
* [XD-Torrent](https://xd-torrent.github.io/) - Anonymous P2P Torrent Client
|
|
||||||
* [BitSwarm](https://github.com/SuRGeoNix/BitSwarm/) - Bittorrent Client Library
|
|
||||||
* [Instant.io](https://instant.io/) - Stream Torrents in Browser
|
|
||||||
* [BTorrent](https://btorrent.xyz/) - Stream Torrents in Browser
|
|
||||||
* [Magnet Player](https://ferrolho.github.io/magnet-player/) - Stream Torrents in Browser
|
|
||||||
* [BitFord](https://github.com/astro/bitford) - Chrome
|
|
||||||
* [Rats Search](https://github.com/DEgITx/rats-search) - Torrent Search Client
|
|
||||||
* [Download Torrents Through I2P](https://decentnet.github.io/blog/20200329-download-torrents-through-i2p.html)
|
|
||||||
* [flood](https://flood.js.org/) - rTorrent, Transmission & qBittorrent WebUI / [GitHub](https://github.com/jesec/flood)
|
|
||||||
* [/r/Seedboxes](https://www.reddit.com/r/seedboxes/) - Seedbox Subreddit
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ qBittorrent Tools
|
|
||||||
|
|
||||||
* 🌐 **[QBT Plugins](https://github.com/qbittorrent/search-plugins?tab=readme-ov-file#search-plugins)** - Plugins Index
|
|
||||||
* 🌐 **[QBT Themes](https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-qBittorrent-themes)** - Themes Index
|
|
||||||
* [qBitMF](https://github.com/qBitMF/qBitMF) - Multi-Connection Tool
|
|
||||||
* [VueTorrent](https://github.com/WDaan/VueTorrent) - Web Clients
|
|
||||||
* [qBitController](https://github.com/Bartuzen/qBitController) - Mobile Controllers
|
|
||||||
* [Docker QBT](https://github.com/linuxserver/docker-qbittorrent) or [QBT VPN](https://github.com/binhex/arch-qbittorrentvpn) - Docker Builds
|
|
||||||
* [QBT Mega](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent_MEGA.ipynb) - Mega Upload Script
|
|
||||||
* [QBT Gdrive](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent.ipynb) - Gdrive Upload Script
|
|
||||||
* [Dark Theme](https://draculatheme.com/qbittorrent) or [iOS Style](https://github.com/ntoporcov/iQbit/) - QBT Themes
|
|
||||||
* [qBitEndpoints](https://rentry.co/qBitEndpoints) - API Endpoints
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Remote Torrenting
|
|
||||||
|
|
||||||
* ↪️ **[Torrent to GDrive](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_torrent_to_gdrive)**
|
|
||||||
* ⭐ **[Multi-Up](https://multiup.io/en/upload/from-torrent)** - Torrent to DDL Sites
|
|
||||||
* ⭐ **[webtor](https://webtor.io/)** - Torrent to Cloud and Stream / [Send Magnets](https://greasyfork.org/en/scripts/481975)
|
|
||||||
* ⭐ **[Seedr](https://www.seedr.cc/)** - [Telegram Bot](https://t.me/TorrentSeedrBot) / [API Wrapper](https://github.com/theabbie/seedr-api), [2](https://github.com/AnjanaMadu/SeedrAPI) - Torrent to Cloud and Stream
|
|
||||||
* [Bitport](https://bitport.io/welcome) - Torrent to Cloud and Stream
|
|
||||||
* [TorrentSafe](https://www.torrentsafe.com/) - Torrent to Cloud and Stream
|
|
||||||
* [ZBIGZ](https://zbigz.com/) - Torrent to Cloud and Stream
|
|
||||||
* [TorBox](https://torbox.app/) - Torrent to Cloud
|
|
||||||
* [Demagnetize](http://demagnetize.link/) - Torrent to DDL
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ [Android Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_torrenting)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ [iOS Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_ios_torrenting)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# ► Tracker Invites
|
# ► Tracker Invites
|
||||||
|
|
||||||
* 🌐 **[Private Trackers General](https://rentry.co/private-trackers)** or [Private Trackers Guide](https://wiki.installgentoo.com/wiki/Private_trackers) - Private Tracker Guides
|
* 🌐 **[Private Trackers General](https://rentry.co/private-trackers)** or [Private Trackers Guide](https://wiki.installgentoo.com/wiki/Private_trackers) - Private Tracker Guides
|
||||||
* 🌐 **[Scene Related](https://opentrackers.org/links/warez-scene/#scenerelated)** - Warez / Scene Site Index
|
* 🌐 **[Scene Related](https://opentrackers.org/links/warez-scene/#scenerelated)** - Warez / Scene Site Index
|
||||||
* ⭐ **[The Sheet](https://inviteroute.github.io/sheet/)** or [Graph](https://inviteroute.github.io/graph/) - Private Tracker Guides
|
* ⭐ **[Graph](https://inviteroute.github.io/graph/)** - Private Tracker Connections Guide
|
||||||
* ⭐ **[TrackerStatus](https://trackerstatus.info/)** - Tracker Status Updates
|
* ⭐ **[TrackerStatus](https://trackerstatus.info/)** - Tracker Status Updates
|
||||||
* [TrackerChecker](https://github.com/NDDDDDDDDD/TrackerChecker) - Check if Private Trackers Open Signups
|
* [TrackerChecker](https://github.com/NDDDDDDDDD/TrackerChecker) - Check if Private Trackers Open Signups
|
||||||
* [/r/trackers](https://reddit.com/r/trackers) - Tracker Discussion
|
* [/r/trackers](https://reddit.com/r/trackers) - Tracker Discussion
|
||||||
* [/r/OpenSignups](https://www.reddit.com/r/OpenSignups/) or [/r/OpenedSignups](https://www.reddit.com/r/OpenedSignups/) - Open Tracker Signup Subs
|
|
||||||
* [TheShow](https://theshow.click/login.php) - Open Registrations
|
* [TheShow](https://theshow.click/login.php) - Open Registrations
|
||||||
* [MyAnonaMouse](https://www.myanonamouse.net/) - Open Applications
|
* [MyAnonaMouse](https://www.myanonamouse.net/) - Open Applications
|
||||||
* [hdvinnie](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/) - Private Tracker List
|
* [hdvinnie](https://hdvinnie.github.io/Private-Trackers-Spreadsheet/) - Open Tracker Invites
|
||||||
|
* [Tracker Tracker](https://docs.google.com/spreadsheets/d/1zYZ2107xOZwQ37AjLTc5A4dUJl0ilg8oMrZyA0BGvc0/) - Open Tracker Invites
|
||||||
* [OpenSignups](https://t.me/trackersignup) - Open Signups Private Trackers / Telegram
|
* [OpenSignups](https://t.me/trackersignup) - Open Signups Private Trackers / Telegram
|
||||||
* [Upload-Assistant](https://github.com/L4GSP1KE/Upload-Assistant) - Private Tracker Auto-Upload
|
* [Upload-Assistant](https://github.com/L4GSP1KE/Upload-Assistant) - Private Tracker Auto-Upload
|
||||||
|
* [Bemaniso](https://bemaniso.ws/) - Torrent Tracker
|
||||||
* [TrackerScreenshot](https://github.com/KlevGG/TrackerScreenshot) - Auto Screenshot Tracker Stats
|
* [TrackerScreenshot](https://github.com/KlevGG/TrackerScreenshot) - Auto Screenshot Tracker Stats
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -184,9 +177,8 @@
|
|||||||
# ► Helpful Sites / Apps
|
# ► Helpful Sites / Apps
|
||||||
|
|
||||||
* 🌐 **[ngosang](https://ngosang.github.io/trackerslist/)** / [2](https://ngosang.github.io/trackerslist/trackers_all.txt), [trackerslist](https://trackerslist.com/) / [GitHub](https://github.com/XIU2/TrackersListCollection) or [NewTrackOn](https://newtrackon.com/list) - Tracker Lists
|
* 🌐 **[ngosang](https://ngosang.github.io/trackerslist/)** / [2](https://ngosang.github.io/trackerslist/trackers_all.txt), [trackerslist](https://trackerslist.com/) / [GitHub](https://github.com/XIU2/TrackersListCollection) or [NewTrackOn](https://newtrackon.com/list) - Tracker Lists
|
||||||
* 🌐 **[Auto Torrent Tools List](https://redd.it/hbwnb2)** / [2](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps)
|
* 🌐 **[Auto Torrent Tools List](https://redd.it/hbwnb2)**, [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [/r/softwarr](https://reddit.com/r/softwarr)
|
||||||
* ⭐ **[Milkie](https://milkie.cc)** / [Discord](https://discord.com/invite/E4khNy5dz3), [Scnlog](https://scnlog.me) or [PreDB.me](https://predb.me) - Scene Release Download
|
* ⭐ **[PreDB.me](https://predb.me/)** / [PreDB.net](https://predb.de/), [M2V](https://m2v.ru/), [Xrel](https://www.xrel.to/) or [srrDB](https://www.srrdb.com/) - Scene Release Tracker
|
||||||
* ⭐ **[PreDataBA](https://predataba.se)**, [Xrel](https://www.xrel.to), [PreDB.net](https://predb.de), [srrDB](https://www.srrdb.com) or [M2V](https://m2v.ru) - Scene Release İnfo
|
|
||||||
* ⭐ **[T2M](https://nutbread.github.io/t2m/)** / [2](https://github.com/nutbread/t2m), [btsow](https://btsow.motorcycles/) or [Torrent Kitty](https://www.torrentkitty.tv/) / [2](https://www.torrentkitty.net/) / [3](https://www.torrentkitty.lol/) - Torrent to Magnet Converters
|
* ⭐ **[T2M](https://nutbread.github.io/t2m/)** / [2](https://github.com/nutbread/t2m), [btsow](https://btsow.motorcycles/) or [Torrent Kitty](https://www.torrentkitty.tv/) / [2](https://www.torrentkitty.net/) / [3](https://www.torrentkitty.lol/) - Torrent to Magnet Converters
|
||||||
* ⭐ **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter
|
* ⭐ **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter
|
||||||
* ⭐ **[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country
|
* ⭐ **[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
**[Adblock Filter List](https://windowsaurora.github.io/FMHYFilterlist/site/index.html)** / [GitHub](https://github.com/WindowsAurora/FMHYFilterlist/)
|
# Untrusted Sites / Software
|
||||||
|
|
||||||
^ Filter list with the sites listed below for adblockers.
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -8,9 +6,7 @@
|
|||||||
|
|
||||||
**Note** - Scene groups do not have their own sites, so it's best to avoid anything claiming to represent one.
|
**Note** - Scene groups do not have their own sites, so it's best to avoid anything claiming to represent one.
|
||||||
|
|
||||||
* 🌐 **[Untrusted Uploaders](https://rentry.org/pgames#untrusted-uploaders)**
|
* IGG / LoadGames - Caught with [malware](https://redd.it/bzczk6) / [2](https://i.imgur.com/jyFj8Kh.png) / [3](https://i.imgur.com/9w5dyTU.png), doxxed member, added DRM to games
|
||||||
* 🌐 **[Fake FitGirl Sites](https://rentry.co/FakeFitgirlwebsites)**
|
|
||||||
* IGG / LoadGames - Caught with [malware](https://redd.it/bzczk6) / [2](https://i.ibb.co/fkXpgsq/jyFj8Kh.png) / [3](https://i.ibb.co/xmj2Vqh/9w5dyTU.png), doxxed member, added DRM to games
|
|
||||||
* OceanOfGames - Caught with malware multiple times
|
* OceanOfGames - Caught with malware multiple times
|
||||||
* CrackingPatching - Caught with [malware](https://redd.it/qy6z3c)
|
* CrackingPatching - Caught with [malware](https://redd.it/qy6z3c)
|
||||||
* xGIROx - Caught with malware
|
* xGIROx - Caught with malware
|
||||||
@ -19,7 +15,9 @@
|
|||||||
* cracked-games - Caught with malware
|
* cracked-games - Caught with malware
|
||||||
* Wifi4Games - Caught with malware
|
* Wifi4Games - Caught with malware
|
||||||
* GameFabrique - IGG uploads + [adware installers](https://rentry.co/GameFabrique_Adware/)
|
* GameFabrique - IGG uploads + [adware installers](https://rentry.co/GameFabrique_Adware/)
|
||||||
* SteamUnlocked - [IGG uploads](https://i.ibb.co/VgW2ymY/YUnRNpN.png) + very slow file host
|
* SteamUnlocked - [IGG uploads](https://i.imgur.com/YUnRNpN.png) + very slow file host
|
||||||
|
* [Untrusted Uploaders](https://rentry.org/pgames#untrusted-uploaders)
|
||||||
|
* [Fake FitGirl Sites](https://rentry.co/FakeFitgirlwebsites)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -40,9 +38,9 @@
|
|||||||
* MainRepo / MRepo - Caught with [malware](https://rentry.co/zu3i6) / Note that Magisk Module MRepo is unrelated
|
* MainRepo / MRepo - Caught with [malware](https://rentry.co/zu3i6) / Note that Magisk Module MRepo is unrelated
|
||||||
* YASDL - Uploaded versions of stardock / jetbrains with malware
|
* YASDL - Uploaded versions of stardock / jetbrains with malware
|
||||||
* AllPCWorld - Uploaded KMS Matrix which is known malware
|
* AllPCWorld - Uploaded KMS Matrix which is known malware
|
||||||
* RSLOAD - Uploaded the same version of malwarebytes that got FileCR in trouble / [utorrent malware](https://i.ibb.co/QXrCfqQ/Untitled.png)
|
* RSLOAD - Uploaded the same version of malwarebytes that got FileCR in trouble
|
||||||
* AppValley / TutuBox / Ignition - History of [ddos attacks](https://github.com/nbats/FMHYedit/pull/307)
|
* AppValley / TutuBox / Ignition - History of [ddos attacks](https://github.com/nbats/FMHYedit/pull/307)
|
||||||
* CNET / Download.com / ZDNET / Softonic - History of [adware](https://www.reddit.com/r/software/comments/9s7wyb/whats_the_deal_with_sites_like_cnet_softonic_and/e8mtye9/) / [2](https://ibb.co/tLc5KR7)
|
* CNET / Download.com / ZDNET - History of [adware](https://www.reddit.com/r/software/comments/9s7wyb/whats_the_deal_with_sites_like_cnet_softonic_and/e8mtye9/)
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -71,7 +69,8 @@
|
|||||||
* Gen Digital / Norton - Owned by Avast
|
* Gen Digital / Norton - Owned by Avast
|
||||||
* Avira - Owned by Gen Digital
|
* Avira - Owned by Gen Digital
|
||||||
* CCleaner - Owned by Avast, best to use built-in win 11 tool or bleachbit
|
* CCleaner - Owned by Avast, best to use built-in win 11 tool or bleachbit
|
||||||
* Private Internet Access / ExpressVPN / ZenMate / CyberGhost - Owned by [adware distributor Kape](https://redd.it/q3lepv)
|
* Private Internet Access / ExpressVPN / ZenMate / CyberGhost - Owned by [malware distributor Kape](https://redd.it/q3lepv)
|
||||||
|
* Acord (discord mod) - Has remote eval backdoor [backdoor](https://gist.github.com/Vendicated/fef37323939e930b52a0e5ec379052bc)
|
||||||
* BlueKik / Bluecord (chat mods) - History of [spam](https://redd.it/12h2v6n) / [spying](https://rentry.co/tvrnw)
|
* BlueKik / Bluecord (chat mods) - History of [spam](https://redd.it/12h2v6n) / [spying](https://rentry.co/tvrnw)
|
||||||
* Kik (messaging app) - App used by mostly [predators / scammers](https://youtu.be/9sPaJxRmIPc)
|
* Kik (messaging app) - App used by mostly [predators / scammers](https://youtu.be/9sPaJxRmIPc)
|
||||||
* TLauncher (minecraft launcher) - [Shady](https://redd.it/zmzzrt) business practices / Note that TLauncher Legacy is unrelated
|
* TLauncher (minecraft launcher) - [Shady](https://redd.it/zmzzrt) business practices / Note that TLauncher Legacy is unrelated
|
||||||
@ -81,8 +80,18 @@
|
|||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
### [Fake Z-Lib Sites](https://redd.it/16xtm67) / [2](https://ibb.co/MhfGTWx)
|
### [Fake Z-Lib Sites](https://i.imgur.com/z4Ku77B.png)
|
||||||
|
|
||||||
### [Fake Windows Activators](https://web.archive.org/web/20240529222658/https://pastebin.com/gCmWs2GR)
|
### [Fake Windows Activators](https://i.imgur.com/Lv2FYbw.png)
|
||||||
|
|
||||||
### [Unsafe Wayback Machine Links](https://rentry.co/ue9qk)
|
***
|
||||||
|
|
||||||
|
### How-to Send Reports
|
||||||
|
|
||||||
|
* To suggest something for the list, please leave a comment on [this thread](https://www.reddit.com/r/FREEMEDIAHECKYEAH/comments/10bh0h9/unsafe_sites_software_thread/), or contact us via [Discord](https://discord.gg/Stz6y6NgNg).
|
||||||
|
|
||||||
|
* Never include a URL, just the name of the site / software, and the reason you feel people should avoid it.
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
[Wayback Machine Links](https://rentry.co/ue9qk)
|
||||||
|
258
Video-Tools.md
258
Video-Tools.md
@ -6,51 +6,51 @@
|
|||||||
|
|
||||||
# ► Video Tools
|
# ► Video Tools
|
||||||
|
|
||||||
* ↪️ **[AI Video Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_video_generation)**
|
* ⭐ **[PixVerse](https://pixverse.ai/)** / [Discord](https://discord.com/invite/MXHErdJHMg) or [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - AI Video Generators
|
||||||
* ⭐ **[Waifu2x GUI](https://github.com/AaronFeng753/Waifu2x-Extension-GUI)**, [Video2x](https://github.com/k4yt3x/video2x), [Enhancr](https://github.com/mafiosnik777/enhancr) or [Dandere2x](https://github.com/akai-katto/dandere2x) - Video Upscalers
|
* ⭐ **[Video2x](https://github.com/k4yt3x/video2x/)** or [Enhancr](https://github.com/mafiosnik777/enhancr) - Video Upscalers
|
||||||
* ⭐ **[PlayPhrase](https://playphrase.me/)**, [clip.cafe](https://clip.cafe/), [ClipBase](https://clipbase.xyz/), [Filmot](https://filmot.com/) or [Yarn](https://yarn.co/) / [2](https://getyarn.io/) - Internet Clip Quote Search
|
* ⭐ **[PlayPhrase](https://playphrase.me/)**, [ClipBase](https://clipbase.xyz/), [Filmot](https://filmot.com/) or [Yarn](https://yarn.co/) / [2](https://getyarn.io/) - Internet Clip Quote Search
|
||||||
* [VCSI](https://github.com/amietn/vcsi) - Create Video Contact Sheets / Thumbnails
|
* [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab), [text-to-video](https://text-to-video.vercel.app), [Text2Video-Zero](https://github.com/Picsart-AI-Research/Text2Video-Zero), [LensGo](https://lensgo.ai/), [Pika Labs](https://www.pika.art/) or [Damo](https://huggingface.co/spaces/damo-vilab/modelscope-text-to-video-synthesis) - Text to Video AIs
|
||||||
* [VMAF](https://github.com/Netflix/vmaf) - Video Quality Assessment
|
* [Rollideo](https://rollideo.com/) - Text to Subbed Video
|
||||||
* [Video Llava](https://replicate.com/nateraw/video-llava) - Video Description AI
|
* [Video Llava](https://replicate.com/nateraw/video-llava) - Video Description AI
|
||||||
* [VideoSmaller](https://www.videosmaller.com/), [YouCompress](https://www.youcompress.com/), [Compress Video Online](https://compress-video-online.com/), [8mb.video](https://8mb.video/) or [MP4Compress](https://www.mp4compress.com/) - Video Compressors
|
* [Anime4K](https://github.com/bloc97/Anime4K) - Anime Video Upscaler
|
||||||
|
* [TinyVid](https://kamua.com/tinyvid), [VideoSmaller](https://www.videosmaller.com/), [Compress Video Online](https://compress-video-online.com/), [8mb.video](https://8mb.video/) or [MP4Compress](https://www.mp4compress.com/) - Video Compressors
|
||||||
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
|
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
|
||||||
* [SimSwap](https://github.com/neuralchen/SimSwap) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
|
* [SimSwap](https://github.com/neuralchen/SimSwap) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
|
||||||
|
* [deepware](https://scanner.deepware.ai/) - Detect Deepfake Videos
|
||||||
* [ImgBurn](https://www.majorgeeks.com/files/details/imgburn.html), [DVDStyler](https://www.dvdstyler.org/en/), [DeepBurner](https://www.deepburner.com/) or [Alcohol Soft](https://www.alcohol-soft.com/) - CD / DVD Burning
|
* [ImgBurn](https://www.majorgeeks.com/files/details/imgburn.html), [DVDStyler](https://www.dvdstyler.org/en/), [DeepBurner](https://www.deepburner.com/) or [Alcohol Soft](https://www.alcohol-soft.com/) - CD / DVD Burning
|
||||||
* [MakeMKV](https://www.makemkv.com/) - Create MKV From Blu-ray / DVD
|
* [MakeMKV](https://www.makemkv.com/) - Create MKV From Blu-ray / DVD
|
||||||
* [VidCoder](https://vidcoder.net/) or [DVDDecrypter](http://dvddecrypter.org.uk/) - DVD / Blu-ray Ripping
|
* [VidCoder](https://vidcoder.net/) or [DVDDecrypter](http://dvddecrypter.org.uk/) - DVD / Blu-ray Ripping
|
||||||
* [DGDemux](https://www.rationalqm.us/dgdemux/dgdemux.html) - Blu-Ray/UHD Disk Demuxer
|
|
||||||
* [PgcDemux](https://www.videohelp.com/software/PgcDemux) - DVD Disk Demuxer
|
|
||||||
* [BatchGuy](https://github.com/yaboy58/BatchGuy) - Blu-Ray Ripping
|
* [BatchGuy](https://github.com/yaboy58/BatchGuy) - Blu-Ray Ripping
|
||||||
* [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder
|
* [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Video File Hosts
|
## ▷ Video Hosting
|
||||||
|
|
||||||
* **Note** - Most file hosts remove files after inactivity, while some delete them regardless. Check each host if you're concerned about file expiry.
|
* ⭐ **[doodstream](https://doodstream.com/)**
|
||||||
|
* ⭐ **[mixdrop](https://mixdrop.ag/)**
|
||||||
***
|
* ⭐ **[voe.sx](https://voe.sx/)**
|
||||||
|
* ⭐ **[catbox](https://catbox.moe/)**
|
||||||
* ⭐ **[UpStream](https://upstream.to/)** - 10GB / 30 Days / Account Required
|
* ⭐ **[streamtape](https://streamtape.com/)** / [2](https://streamtape.to/)
|
||||||
* ⭐ **[DoodStream](https://doodstream.com/)** - 5GB / 60 Days / Account Required
|
* ⭐ **[upstream](https://upstream.to/)**
|
||||||
* ⭐ **[Litterbox](https://litterbox.catbox.moe/)** - 1GB / Temporary
|
* [HoraHora](https://github.com/horahoradev/horahora) or [minv](https://sr.ht/~thecashewtrader/minv/) - Self-Hosted
|
||||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever
|
* [vudeo](https://vudeo.co/)
|
||||||
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 Days
|
* [vidyard](https://www.vidyard.com/)
|
||||||
* ⭐ **[Send.cm](https://send.cm/)** - 100GB / 15 Days
|
* [supervideo](https://supervideo.tv/)
|
||||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX)
|
* [ydb](https://youdboox.com/)
|
||||||
* [VOE](https://voe.sx/) - Unlimited / 60 Days / 720p / Account Required
|
* [cloudvideo](https://cloudvideo.tv/)
|
||||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / 720p / Account Required
|
* [powvideo](https://powvideo.net/)
|
||||||
* [WolfStream](https://wolfstream.tv/) 30GB / 80 Days / Account Required
|
* [streamable](https://streamable.com/)
|
||||||
* [FEX.NET](https://fex.net/) - 100GB / 7 Days
|
* [abyss](https://abyss.to/)
|
||||||
* [Hexupload](https://www.hexupload.net/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
* [videy](https://videy.co/)
|
||||||
* [Fastupload.io](https://fastupload.io/en) - 10GB / 30 Days (60 Days With Account)
|
* [wolfstream](https://wolfstream.tv/)
|
||||||
* [Vidoza](https://vidoza.net/) - 15GB / 15 Days / Account Required
|
* [vidcloud](https://vidcloud.co/)
|
||||||
* [Streamtape](https://streamtape.com/) - 15GB / Account Required / [.to](https://streamtape.to/)
|
* [vidoza](https://vidoza.net/)
|
||||||
* [Dubz](https://dubz.co/) - 200MB / Forever
|
* [fileone](https://fileone.tv/)
|
||||||
* [Streamable](https://streamable.com/) - 250MB / 2 Days (90 Days With Account)
|
* [uqload](https://uqload.co/)
|
||||||
* [webmshare](https://webmshare.com/) - WebM & GIF Hosting / 20MB / Forever
|
* [media.cm](https://media.cm/)
|
||||||
* [Videy](https://videy.co/) - MP4 only
|
* [sendvid](https://sendvid.com/)
|
||||||
* [minv](https://sr.ht/~thecashewtrader/minv/) - Self-Hosted
|
* [WebMShare](https://webmshare.com/) - WebM Hosting
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -75,38 +75,40 @@
|
|||||||
|
|
||||||
## ▷ Convert / Encode
|
## ▷ Convert / Encode
|
||||||
|
|
||||||
* ⭐ **[HandBrake](https://handbrake.fr/)** - Video Encoding Software / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake)
|
* ⭐ **[Encoding Guide](https://sometimes-archives-things.github.io/archived-things/)** / [2](https://encoding-guide.neocities.org/), [MDbook](https://silentaperture.gitlab.io/mdbook-guide/) or [Disc Rip](https://nullish.cat/blog/disc-rip) / [2](https://rentry.org/disc-rip) - Video Encoding / Ripping Guides
|
||||||
* ⭐ **[FFmpeg](https://github.com/FFmpeg/FFmpeg)** or [Axiomui](https://axiomui.github.io/) - Tools to Process Multimedia
|
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** or [fs927](https://rentry.org/fs927) - Learn how to Remux Videos
|
||||||
* ⭐ **FFmpeg Tools** - [Autobuild](https://github.com/BtbN/FFmpeg-Builds), [2](https://github.com/m-ab-s/media-autobuild_suite) / [Guide](https://github.com/leandromoreira/ffmpeg-libav-tutorial), [2](https://ffmpeg.guide/) / [Cheat Sheet](https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730) / [Commands](https://alfg.dev/ffmpeg-commander/), [2](https://evanhahn.github.io/ffmpeg-buddy/) / [WebM Converter](https://argorar.github.io/WebMConverter/) / [Info Copy](https://github.com/4ndrs/PureMPV) / [Preview Filters](https://ffmpeg.lav.io/) / [AI Commands](https://github.com/gstrenge/llmpeg), [2](https://github.com/TejasQ/idli)
|
|
||||||
* ⭐ **[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools
|
* ⭐ **[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools
|
||||||
* ⭐ **[archived-things](https://sometimes-archives-things.github.io/archived-things/)**, [The Encoding Guide](https://encoding-guide.neocities.org/) or [Silentaperture](https://silentaperture.gitlab.io/mdbook-guide/) - Video Encoding Guides
|
* ⭐ **[HandBrake](https://handbrake.fr/)** / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake)
|
||||||
* ⭐ **[Disc Rip](https://nullish.cat/blog/disc-rip)** - Disc Ripping Guide / [Mirror](https://rentry.org/disc-rip)
|
* ⭐ **[FFmpeg](https://github.com/FFmpeg/FFmpeg)** or [Axiomui](https://axiomui.github.io/)
|
||||||
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** - Learn how to Remux Videos
|
* ⭐ **FFmpeg Tools** - [Autobuild](https://github.com/BtbN/FFmpeg-Builds), [2](https://github.com/m-ab-s/media-autobuild_suite) / [Guide](https://github.com/leandromoreira/ffmpeg-libav-tutorial), [2](https://ffmpeg.guide/) / [Cheat Sheet](https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730) / [Commands](https://alfg.dev/ffmpeg-commander/), [2](https://evanhahn.github.io/ffmpeg-buddy/) / [WebM Converter](https://argorar.github.io/WebMConverter/) / [Preview Filters](https://ffmpeg.lav.io/)
|
||||||
* [Swivel](https://www.newgrounds.com/wiki/creator-resources/flash-resources/swivel) - SWF to Video Converter
|
* [Swivel](https://www.newgrounds.com/wiki/creator-resources/flash-resources/swivel) - SWF to Video Converter
|
||||||
* [DDVT](https://forum.doom9.org/showthread.php?t=183479) - Dolby Vision RPU Demuxing / Injecting / Editing
|
* [DDVT](https://forum.doom9.org/showthread.php?t=183479) - Dolby Vision RPU Demuxing / Injecting / Editing
|
||||||
* [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos
|
* [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos
|
||||||
* [XMedia Recode](https://www.xmedia-recode.de/en/) - Video Conversion
|
* [XMedia Recode](https://www.xmedia-recode.de/en/)
|
||||||
* [staxrip](https://github.com/staxrip/staxrip/) - Video Encoding
|
* [staxrip](https://github.com/staxrip/staxrip/) / [Guide](https://telegra.ph/HEVC-Encoding-with-StaxRip-Settings-for-best-compression-included-05-12 )
|
||||||
* [IFME](https://github.com/Anime4000/IFME) - Video Encoding
|
* [FastFlix](https://fastflix.org/)
|
||||||
* [Voukoder](https://www.voukoder.org/) - Video Encoding Plugin
|
* [NEAV1E](https://github.com/Alkl58/NotEnoughAV1Encodes)
|
||||||
* [FastFlix](https://fastflix.org/) - Video Conversion / [GitHub](https://github.com/cdgriffith/FastFlix)
|
* [Video2Edit](https://www.video2edit.com/)
|
||||||
* [NEAV1E](https://github.com/Alkl58/NotEnoughAV1Encodes), [Av1an](https://github.com/master-of-zen/Av1an) - AV1 Encoding
|
* [Winnydows](https://winnydows.com/en/)
|
||||||
* [Winnydows](https://winnydows.com/en/) - Video Conversion Software
|
* [sickbeard_mp4_automator](https://github.com/mdhiggins/sickbeard_mp4_automator)
|
||||||
* [sickbeard_mp4_automator](https://github.com/mdhiggins/sickbeard_mp4_automator) - Automate Video Processing
|
* [FastFlix](https://github.com/cdgriffith/FastFlix)
|
||||||
* [Video Express Converter](https://vc.germanov.dev/) - Online Video Conversion
|
* [Video Express Converter](https://vc.germanov.dev/)
|
||||||
* [Seven Converter](https://converter.sevenbytes.com/) - Video Conversion / [GitHub](https://github.com/SevenbytesSoftware/SevenConverter)
|
* [Av1an](https://github.com/master-of-zen/Av1an)
|
||||||
* [nmkoder](https://github.com/n00mkrad/nmkoder) - Media Encoding And Muxing
|
* [Seven Converter](https://converter.sevenbytes.com/) / [GitHub](https://github.com/SevenbytesSoftware/SevenConverter)
|
||||||
* [VideoConverter](https://videoconverter.com/) - Online Video Conversion
|
* [nmkoder](https://github.com/n00mkrad/nmkoder)
|
||||||
* [selur](https://www.selur.de/) - Video Encoding
|
* [VideoConverter](https://videoconverter.com/)
|
||||||
|
* [Boram](https://github.com/Kagami/boram/)
|
||||||
|
* [selur](https://www.selur.de/)
|
||||||
* [vvenc](https://github.com/fraunhoferhhi/vvenc), [vvdec](https://github.com/fraunhoferhhi/vvdec), [VVCEasy](https://github.com/MartinEesmaa/VVCEasy) - VVC Encode / Decode
|
* [vvenc](https://github.com/fraunhoferhhi/vvenc), [vvdec](https://github.com/fraunhoferhhi/vvdec), [VVCEasy](https://github.com/MartinEesmaa/VVCEasy) - VVC Encode / Decode
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Live Streaming
|
## ▷ Live Streaming
|
||||||
|
|
||||||
* 🌐 **[Awesome Streaming](https://github.com/juancarlospaco/awesome-streaming-tools)** or [StreamerFreebies](https://streamerfreebies.com/) - Live Streaming Resources
|
* 🌐 **[Awesome Streaming](https://github.com/juancarlospaco/awesome-streaming-tools)**, [StreamerFreebies](https://streamerfreebies.com/) or [VDO Ninja](https://vdo.ninja/) - Live Streaming Resources
|
||||||
|
* 🌐 **[Best VTuber](https://gist.github.com/emilianavt/cbf4d6de6f7fb01a42d4cce922795794)** or [VTuber References](https://docs.google.com/spreadsheets/d/15UpI8GEqv22T45AD3L1EgcPB4l2Tvr64aDgLq7xZfMA/htmlview) - VTuber Tool Indexes
|
||||||
* ⭐ **[OBS](https://obsproject.com/)** - Live Stream Manager
|
* ⭐ **[OBS](https://obsproject.com/)** - Live Stream Manager
|
||||||
* ⭐ **OBS Tools** - [Virtual Cam](https://obsproject.com/forum/resources/obs-virtualcam.949/) / [Tweaks](https://discord.gg/CTT) / [Effects](https://github.com/exeldro/obs-shaderfilter/) / [Keyboard Visualiser](https://github.com/ThoNohT/NohBoard) / [Background Remover](https://github.com/occ-ai/obs-backgroundremoval) / [Phone Controller](https://github.com/Kounex/obs_blade) / [WebRTC Server](https://github.com/GRVYDEV/Project-Lightspeed) / [Plugin Updater](https://ko-fi.com/s/0b5bd4536d)
|
* ⭐ **OBS Tools** - [Virtual Cam](https://obsproject.com/forum/resources/obs-virtualcam.949/) / [Tweaks](https://discord.gg/CTT) / [Effects](https://github.com/Xaymar/obs-StreamFX) / [Keyboard Visualiser](https://github.com/ThoNohT/NohBoard) / [Background Remover](https://github.com/occ-ai/obs-backgroundremoval) / [Phone Controller](https://github.com/Kounex/obs_blade) / [WebRTC Server](https://github.com/GRVYDEV/Project-Lightspeed)
|
||||||
* [Stream Elements](https://streamelements.com/) - Streaming Service Manager
|
* [Stream Elements](https://streamelements.com/) - Streaming Service Manager
|
||||||
* [Streamlabs-OBS](https://github.com/stream-labs/desktop) - Live Stream Manager
|
* [Streamlabs-OBS](https://github.com/stream-labs/desktop) - Live Stream Manager
|
||||||
* [SteamLabs](https://streamlabs.com/) - Live Stream Manager
|
* [SteamLabs](https://streamlabs.com/) - Live Stream Manager
|
||||||
@ -114,32 +116,17 @@
|
|||||||
* [Twitch Studio](https://www.twitch.tv/broadcast/studio) - Live Stream Manager
|
* [Twitch Studio](https://www.twitch.tv/broadcast/studio) - Live Stream Manager
|
||||||
* [FBX](https://fbx.gg/) - Live Stream Manager
|
* [FBX](https://fbx.gg/) - Live Stream Manager
|
||||||
* [XSplit](https://www.xsplit.com/) - Live Stream Manager
|
* [XSplit](https://www.xsplit.com/) - Live Stream Manager
|
||||||
* [TwitchChat](https://twitchat.fr/) - Live Stream Manager / [Discord](https://discord.com/invite/fmqD2xUYvP)
|
* [TwitchChat](https://twitchat.fr/) - Live Stream Manager
|
||||||
* [VDO Ninja](https://vdo.ninja/) - Live Stream Colab Tool
|
|
||||||
* [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) / [Display Chat](https://github.com/MrBrax/twitch-vod-chat) - Live Stream Recorders
|
* [LiveStreamDVR](https://github.com/MrBrax/LiveStreamDVR) / [Display Chat](https://github.com/MrBrax/twitch-vod-chat) - Live Stream Recorders
|
||||||
* [Owncast](https://owncast.online/), [Restreamer](https://github.com/datarhei/restreamer) or [OpenStreamingPlatform](https://openstreamingplatform.com/) - Self-Hosted Live Streaming
|
* [Owncast](https://owncast.online/) or [OpenStreamingPlatform](https://openstreamingplatform.com/) - Self-Hosted Live Streaming
|
||||||
* [WDFlat](https://www.wdflat.com/) - Stream Elements
|
* [WDFlat](https://www.wdflat.com/) - Stream Elements
|
||||||
* [Strem](https://github.com/strem-app/strem) - Stream Automation
|
* [Strem](https://github.com/strem-app/strem) - Stream Automation
|
||||||
* [ppInk](https://github.com/PubPub-zz/ppInk/), [glnk](https://github.com/geovens/gInk), [Annotate Screen](https://annotatescreen.com/) or [Live Draw](https://github.com/antfu/live-draw) - Screen Annotation
|
* [ppInk](https://github.com/PubPub-zz/ppInk/), [glnk](https://github.com/geovens/gInk), [Annotate Screen](https://annotatescreen.com/) or [Live Draw](https://github.com/antfu/live-draw) - Screen Annotation
|
||||||
* [Songify](https://songify.overcode.tv/) - Current Playing Song App
|
* [VTuber Kit](https://kyuppin.itch.io/vtuber-kit) or [Vtube Studio](https://denchisoft.com/) - VTuber Apps
|
||||||
* [StreamPi](https://stream-pi.com/) or [ODeck](https://github.com/willianrod/ODeck) - ElGato Streamdeck Alternatives
|
|
||||||
* [real-url](https://github.com/wbt5/real-url) - Copy Live Stream URLs
|
|
||||||
* [Chat-Downloader](https://github.com/xenova/chat-downloader) - Retrieve Chat Messages from Livestreams
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ VTuber Tools
|
|
||||||
|
|
||||||
* 🌐 **[Runa's Archive](https://kekuwi.github.io/Runa-Archive)** - VTuber Resources
|
|
||||||
* [Best VTuber](https://gist.github.com/emilianavt/cbf4d6de6f7fb01a42d4cce922795794) - VTuber Resources
|
|
||||||
* [VTResources](https://vtresources.carrd.co/) - VTuber Resources
|
|
||||||
* [VTuber Assets](https://discord.gg/acU3dFRtvC) - VTuber Resources
|
|
||||||
* [VTuber Kit](https://kyuppin.itch.io/vtuber-kit) - VTuber App
|
|
||||||
* [Inochi2D](https://inochi2d.com/) - VTuber App / [Discord](https://discord.com/invite/abnxwN6r9v)
|
|
||||||
* [Vtube Studio](https://denchisoft.com/) - VTuber App
|
|
||||||
* [Kalidoface 3D](https://3d.kalidoface.com/), [VRoid](https://vroid.com/en/studio), [Animaze](https://www.animaze.us/) or [TransTube](https://girkovarpa.itch.io/transtube) - VTuber Characters
|
* [Kalidoface 3D](https://3d.kalidoface.com/), [VRoid](https://vroid.com/en/studio), [Animaze](https://www.animaze.us/) or [TransTube](https://girkovarpa.itch.io/transtube) - VTuber Characters
|
||||||
* [avatarify-python](https://github.com/alievk/avatarify-python) or [veadotube](https://olmewe.itch.io/veadotube-mini) - Video Call Avatars
|
* [avatarify-python](https://github.com/alievk/avatarify-python) or [veadotube](https://olmewe.itch.io/veadotube-mini) - Video Call Avatars
|
||||||
* [VTuberized Logos](https://vtuber-style-logos.vercel.app/) - VTuber Style Logos
|
* [real-url](https://github.com/wbt5/real-url) - Copy Live Stream URLs
|
||||||
|
* [Chat-Downloader](https://github.com/xenova/chat-downloader) - Retrieve Chat Messages from Livestreams
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -147,21 +134,21 @@
|
|||||||
|
|
||||||
* 🌐 **[Awesome Video](https://github.com/krzemienski/awesome-video)** - Video Streaming Resources
|
* 🌐 **[Awesome Video](https://github.com/krzemienski/awesome-video)** - Video Streaming Resources
|
||||||
* 🌐 **[Video Help](https://www.videohelp.com/software/sections/video-players?orderby=Rating)** - Video Player Index
|
* 🌐 **[Video Help](https://www.videohelp.com/software/sections/video-players?orderby=Rating)** - Video Player Index
|
||||||
* ⭐ **[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
|
* ⭐ **[MPC-HC](https://github.com/clsid2/mpc-hc/)** or [MPC-BE](https://sourceforge.net/projects/mpcbe/) - Video Player
|
||||||
* ⭐ **[MPV](https://mpv.io/)** / [GUI](https://mpv-net.github.io/mpv.net-web-site/), [MPV-EASY-Player](https://github.com/422658476/MPV-EASY-Player) - Video Player / [Frontends](https://github.com/mpv-player/mpv/wiki/Applications-using-mpv)
|
* ⭐ **[MPV](https://mpv.io/)** / [2](https://mpv-net.github.io/mpv.net-web-site/), [MPV-EASY-Player](https://github.com/422658476/MPV-EASY-Player) - Video Player / [GUI](https://github.com/mpvnet-player/mpv.net)
|
||||||
* ⭐ **[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
|
||||||
* [Video Player Codecs](https://www.codecguide.com/)
|
* [Video Player Codecs](https://www.codecguide.com/)
|
||||||
* [AVPlayer](http://www.awesomevideoplayer.com/) or [GridPlayer](https://github.com/vzhd1701/gridplayer) - Multi-Video Players
|
* [AVPlayer](http://www.awesomevideoplayer.com/) or [GridPlayer](https://github.com/vzhd1701/gridplayer) - Multi-Video Players
|
||||||
* [SPlayer](https://www.splayer.org/) - Video Player w/ Smart Translation
|
* [SPlayer](https://www.splayer.org/) - Video Player w/ 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
|
||||||
* [ImPlay](https://github.com/tsl0922/ImPlay) - Video Player
|
* [ImPlay](https://github.com/tsl0922/ImPlay) - Video Player
|
||||||
* [SMPlayer](https://www.smplayer.info/) / [2](https://sourceforge.net/projects/smplayer/) - Video Player / [YouTube](https://www.smtube.org/)
|
* [SMPlayer](https://www.smplayer.info/) / [2](https://sourceforge.net/projects/smplayer/) - Video Player / [YouTube](https://www.smtube.org/)
|
||||||
* [uView](https://www.idruf.com/) - Video Player
|
* [uView](https://www.idruf.com/) - Video Player
|
||||||
* [Rise Media Player](https://github.com/Rise-Software/Rise-Media-Player) - Video Player
|
* [Rise Media Player](https://github.com/Rise-Software/Rise-Media-Player) - Video Player
|
||||||
* [Flyleaf](https://github.com/SuRGeoNix/Flyleaf) - Video Player
|
* [Flyleaf](https://github.com/SuRGeoNix/Flyleaf) - Video Player
|
||||||
* [MoonPlayer](https://github.com/coslyk/moonplayer) - Video Player
|
|
||||||
* [KikoPlay](https://kikoplay.fun/) - Video Player
|
* [KikoPlay](https://kikoplay.fun/) - Video Player
|
||||||
|
* [HTML5 video player enhanced script](https://greasyfork.org/en/scripts/381682-html5)
|
||||||
* [Plyr](https://plyr.io/) - Online HTML5, YouTube and Vimeo Player / [GitHub](https://github.com/sampotts/plyr)
|
* [Plyr](https://plyr.io/) - Online HTML5, YouTube and Vimeo Player / [GitHub](https://github.com/sampotts/plyr)
|
||||||
* [PiP-Tool](https://github.com/LionelJouin/PiP-Tool) - Use Picture-in-Picture on All Videos
|
* [PiP-Tool](https://github.com/LionelJouin/PiP-Tool) - Use Picture-in-Picture on All Videos
|
||||||
* [PlayVideo](https://playvideos.pages.dev/) - GDrive Video Players
|
* [PlayVideo](https://playvideos.pages.dev/) - GDrive Video Players
|
||||||
@ -185,14 +172,14 @@
|
|||||||
* [Metastream](https://getmetastream.com/)
|
* [Metastream](https://getmetastream.com/)
|
||||||
* [Caracal Club](https://caracal.club/)
|
* [Caracal Club](https://caracal.club/)
|
||||||
* [CyTube](https://cytu.be/)
|
* [CyTube](https://cytu.be/)
|
||||||
* [VideoTogether](https://2gether.video/en-us/)
|
|
||||||
* [baked.live](https://baked.live/)
|
* [baked.live](https://baked.live/)
|
||||||
* [Rave.io](https://rave.io/)
|
* [Rave.io](https://rave.io/)
|
||||||
* [twoseven](https://twoseven.xyz/)
|
* [twoseven](https://twoseven.xyz/)
|
||||||
* [WatchPubs](https://watchpubs.com/)
|
* [WatchPubs](https://watchpubs.com/)
|
||||||
* [MovieNight](https://github.com/zorchenhimer/MovieNight) / [Discord](https://discord.gg/F2VSgjJ)
|
* [MovieNight](https://github.com/zorchenhimer/MovieNight)
|
||||||
* [WatchParty](https://www.watchparty.me/)
|
* [WatchParty](https://www.watchparty.me/)
|
||||||
* [Kast](https://kast.gg/)
|
* [Kast](https://kast.gg/)
|
||||||
|
* [Surge](https://surge.live/)
|
||||||
* [Screen Share Party](https://ba.net/screen/)
|
* [Screen Share Party](https://ba.net/screen/)
|
||||||
* [TurtleTV](https://turtletv.app/)
|
* [TurtleTV](https://turtletv.app/)
|
||||||
* [OpenTogetherTube](https://opentogethertube.com/)
|
* [OpenTogetherTube](https://opentogethertube.com/)
|
||||||
@ -201,12 +188,13 @@
|
|||||||
|
|
||||||
## ▷ MPV Tools
|
## ▷ MPV Tools
|
||||||
|
|
||||||
* ↪️ **[MPV Shaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_mpv_shaders)** -
|
|
||||||
* [MPV Config Guide](http://thewiki.moe/tutorials/mpv/), [2](https://iamscum.wordpress.com/guides/videoplayback-guide/mpv-conf/), [3](https://kokomins.wordpress.com/2019/10/14/), [4](https://hooke007-github-io.translate.goog/unofficial/index.html?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp)
|
* [MPV Config Guide](http://thewiki.moe/tutorials/mpv/), [2](https://iamscum.wordpress.com/guides/videoplayback-guide/mpv-conf/), [3](https://kokomins.wordpress.com/2019/10/14/), [4](https://hooke007-github-io.translate.goog/unofficial/index.html?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp)
|
||||||
|
* [MPV Frontends](https://github.com/mpv-player/mpv/wiki/Applications-using-mpv)
|
||||||
* [ModernX](https://github.com/cyl0/ModernX), [tethys](https://github.com/Zren/mpv-osc-tethys) or [uosc](https://github.com/tomasklaen/uosc) - Alt User Interfaces
|
* [ModernX](https://github.com/cyl0/ModernX), [tethys](https://github.com/Zren/mpv-osc-tethys) or [uosc](https://github.com/tomasklaen/uosc) - Alt User Interfaces
|
||||||
* [Simple MPV WebUI](https://github.com/open-dynaMIX/simple-mpv-webui) - WebUI Controller
|
* [Simple MPV WebUI](https://github.com/open-dynaMIX/simple-mpv-webui) - WebUI Controller
|
||||||
* [MPV Context Menu](https://gitlab.com/carmanaught/mpvcontextmenu)
|
* [MPV Context Menu](https://gitlab.com/carmanaught/mpvcontextmenu)
|
||||||
* [MPV Scripts](https://github.com/mpv-player/mpv/wiki/User-Scripts) - Userscripts
|
* [MPV Scripts](https://github.com/mpv-player/mpv/wiki/User-Scripts) - Userscripts
|
||||||
|
* [MPlug](https://github.com/Nudin/mplug) - Plugin Manager
|
||||||
* [VideoClip](https://github.com/Ajatt-Tools/videoclip), [2](https://github.com/f0e/mpv-cut) - Clip Tool
|
* [VideoClip](https://github.com/Ajatt-Tools/videoclip), [2](https://github.com/f0e/mpv-cut) - Clip Tool
|
||||||
* [MPV WebM](https://github.com/ekisu/mpv-webm) - WebM Tool
|
* [MPV WebM](https://github.com/ekisu/mpv-webm) - WebM Tool
|
||||||
* [Play With MPV](https://greasyfork.org/en/scripts/416271) or [ff2mpv](https://github.com/woodruffw/ff2mpv) - Open Videos with MPV
|
* [Play With MPV](https://greasyfork.org/en/scripts/416271) or [ff2mpv](https://github.com/woodruffw/ff2mpv) - Open Videos with MPV
|
||||||
@ -214,6 +202,7 @@
|
|||||||
* [AutoSubSync MPV](https://github.com/joaquintorres/autosubsync-mpv) - Sub Sync
|
* [AutoSubSync MPV](https://github.com/joaquintorres/autosubsync-mpv) - Sub Sync
|
||||||
* [MPV SponsorBlock](https://github.com/po5/mpv_sponsorblock), [2](https://codeberg.org/jouni/mpv_sponsorblock_minimal) - SponsorBlock for MPV
|
* [MPV SponsorBlock](https://github.com/po5/mpv_sponsorblock), [2](https://codeberg.org/jouni/mpv_sponsorblock_minimal) - SponsorBlock for MPV
|
||||||
* [ThumbFast](https://github.com/po5/thumbfast) - MPV Thumbnails
|
* [ThumbFast](https://github.com/po5/thumbfast) - MPV Thumbnails
|
||||||
|
* [FSR](https://gist.github.com/agyild/82219c545228d70c5604f865ce0b0ce5), [NNEDI / Ravu](https://github.com/bjin/mpv-prescalers/) or [FSRCNNX](https://github.com/igv/FSRCNN-TensorFlow/) - MPV Shaders
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
@ -231,13 +220,11 @@
|
|||||||
* 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)**
|
* 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)**
|
||||||
* ⭐ **[Plex](https://www.plex.tv/)** - Media Server
|
* ⭐ **[Plex](https://www.plex.tv/)** - Media Server
|
||||||
* ⭐ **[Jellyfin](https://jellyfin.org/)** - Media Server
|
* ⭐ **[Jellyfin](https://jellyfin.org/)** - 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
|
|
||||||
* [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [/r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
|
* [Prowlarr](https://github.com/Prowlarr/Prowlarr), [FlexGet](https://flexget.com/) or [/r/softwarr](https://reddit.com/r/softwarr) - Autodownload Tools
|
||||||
* [Organizr](https://github.com/causefx/Organizr), [Reiverr](https://github.com/aleksilassila/reiverr) or [Homarr](https://github.com/ajnart/homarr) - Media Server Managers
|
* [Organizr](https://github.com/causefx/Organizr), [Reiverr](https://github.com/aleksilassila/reiverr) or [Homarr](https://github.com/ajnart/homarr) - Media Server Managers
|
||||||
* [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
|
||||||
|
* [Kodi](https://kodi.tv/) - Media Server
|
||||||
* [Emby](https://emby.media/) - Media Server
|
* [Emby](https://emby.media/) - 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
|
||||||
@ -246,16 +233,12 @@
|
|||||||
* [Gerbera](https://gerbera.io/) - Media Server
|
* [Gerbera](https://gerbera.io/) - Media Server
|
||||||
* [Homehost](https://github.com/ridhwaans/homehost) - Media Server
|
* [Homehost](https://github.com/ridhwaans/homehost) - Media Server
|
||||||
* [Dim](https://github.com/Dusk-Labs/dim) - Media Server
|
* [Dim](https://github.com/Dusk-Labs/dim) - Media Server
|
||||||
* [Kyoo](https://github.com/zoriya/Kyoo) - Media Server
|
|
||||||
* [WatchIt](https://github.com/ZorrillosDev/watchit-app) - Media Server
|
* [WatchIt](https://github.com/ZorrillosDev/watchit-app) - Media Server
|
||||||
* [SimpleDLNA](https://nmaier.github.io/simpleDLNA/) - Media Server
|
* [SimpleDLNA](https://nmaier.github.io/simpleDLNA/) - Media Server
|
||||||
* [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server
|
* [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server
|
||||||
* [SeaAnime](https://seanime.rahim.app/) - Anime Server
|
|
||||||
* [Frames](https://github.com/Eleven-am/frames) - GDrive Server
|
* [Frames](https://github.com/Eleven-am/frames) - GDrive Server
|
||||||
* [HTPC](https://r-htpc.github.io/wiki/) - Home Theater PC guides / [Subreddit](https://www.reddit.com/r/htpc/)
|
|
||||||
* [MSX](https://msx.benzac.de/info/) - Web App
|
|
||||||
* [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/) - Add YouTube Channels to Media Servers
|
* [YTDL-Sub](https://github.com/jmbannon/ytdl-sub) - Add YouTube Channels to Media Servers
|
||||||
* [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy
|
* [xTeVe](https://github.com/xteve-project/xTeVe) - Plex / Emby M3U Proxy
|
||||||
* [Autoscan](https://github.com/Cloudbox/autoscan) - Real-Time Plex & Emby File Changes
|
* [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
|
||||||
@ -264,14 +247,15 @@
|
|||||||
|
|
||||||
## ▷ Plex Tools
|
## ▷ Plex Tools
|
||||||
|
|
||||||
* [Plxplainers](https://www.plxplainers.xyz/) or [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides
|
* [Plxplainers](https://www.plxplainers.xyz/), [Hoarding.me](https://hoarding.me/) or [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides
|
||||||
* [Tautulli](https://tautulli.com/) - Server Monitor
|
* [Tautulli](https://tautulli.com/) - Server Monitor
|
||||||
|
* [Free Plex Server](https://discord.gg/8Jv792Rs7m)
|
||||||
* [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
|
||||||
* [PlexDrive](https://github.com/plexdrive/plexdrive) or [mergerfs](https://docs.ultra.cc/books/rclone/page/rclone-vfs-and-mergerfs-setup) - Mount GDrive
|
* [PlexDrive](https://github.com/plexdrive/plexdrive) or [mergerfs](https://docs.ultra.cc/books/rclone/page/rclone-vfs-and-mergerfs-setup) - Mount GDrive
|
||||||
* [SyncLounce](https://synclounge.tv/) - Media Sync
|
* [SyncLounce](https://synclounge.tv/) - Media Sync
|
||||||
* [PseudoTV](https://github.com/DEFENDORe/pseudotv) - Create TV Channels
|
* [PseudoTV](https://github.com/DEFENDORe/pseudotv) - Create TV Channels
|
||||||
* [Overseerr](https://overseerr.dev/) - User Requests / [IMDb Extension](https://chromewebstore.google.com/detail/overseerr-assistant/hopnjiadheaagfhpipecoamoegijhnij)
|
* [Overseerr](https://overseerr.dev/) - User Requests
|
||||||
* [Pasta Tool](https://www.pastatool.com/) - Audio / Sub Changer
|
* [Pasta Tool](https://www.pastatool.com/) - Audio / Sub Changer
|
||||||
* [Plex Debrid](https://github.com/itsToggle/plex_debrid) - Debrid for Plex
|
* [Plex Debrid](https://github.com/itsToggle/plex_debrid) - Debrid for Plex
|
||||||
|
|
||||||
@ -279,66 +263,56 @@
|
|||||||
|
|
||||||
## ▷ Jellyfin Tools
|
## ▷ Jellyfin Tools
|
||||||
|
|
||||||
* 🌐 **[Awesome Jellyfin](https://github.com/awesome-jellyfin/awesome-jellyfin)** - Jellyfin Resources
|
|
||||||
* ⭐ **[Blink](https://github.com/prayag17/Blink)** or [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Clients
|
|
||||||
* [/r/JellyfinShare](https://www.reddit.com/r/JellyfinShare/) - Jellyfin Server Sharing
|
|
||||||
* [Jellyfin Forum](https://forum.jellyfin.org/) - Official Jellyfin Forum
|
|
||||||
* [Jellyfin Vue](https://github.com/jellyfin/jellyfin-vue) - Jellyfin Web Client
|
|
||||||
* [Jellyfin Setup Guide](https://www.fuzzygrim.com/posts/media-server)
|
* [Jellyfin Setup Guide](https://www.fuzzygrim.com/posts/media-server)
|
||||||
* [Jellyfin Customization Guide](https://youtu.be/F85qMyBeiDI)
|
* [Jellyfin Customization Guide](https://youtu.be/F85qMyBeiDI)
|
||||||
* [Jellyfin Themes](https://jellyfin.org/docs/general/clients/css-customization/#community-themes)
|
* [Jellyfin Themes](https://jellyfin.org/docs/general/clients/css-customization.html##community-themes)
|
||||||
|
* [/r/JellyfinShares](https://www.reddit.com/r/JellyfinShares/) - Server Sharing
|
||||||
|
* [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Client
|
||||||
* [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) - User Requests
|
* [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) - User Requests
|
||||||
* [jellyfin-plugin-anime](https://github.com/jellyfin-archive/jellyfin-plugin-anime) - Anime Plugin
|
* [jellyfin-plugin-anime](https://github.com/jellyfin-archive/jellyfin-plugin-anime) - Anime Plugin
|
||||||
* [Jellyfin RPC](https://github.com/Radiicall/jellyfin-rpc) - Jellyfin Discord Rich Presence
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
## ▷ Kodi Tools
|
## ▷ Kodi Tools
|
||||||
|
|
||||||
* ⭐ **[Elementum](https://elementum.surge.sh/)** - Torrent Streaming / Trakt Sync
|
* ⭐ [Kodi Setup Guide](https://redd.it/zzfdtb)
|
||||||
* [EverythingKodi](https://rumble.com/c/EverythingKodi) - Kodi Addon Tutorials
|
|
||||||
* [Kodi Builds Chart](https://kodiapps.com/builds-chart)
|
* [Kodi Builds Chart](https://kodiapps.com/builds-chart)
|
||||||
* [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons
|
* [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons
|
||||||
* [Plex For Kodi](https://github.com/plexinc/plex-for-kodi) or [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) - Plex Connect
|
* [Plex For Kodi](https://github.com/plexinc/plex-for-kodi) or [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) - Plex Connect
|
||||||
* [quasar](https://quasar.surge.sh/) - Torrent Plugin
|
* [quasar](https://quasar.surge.sh//) - orrent Plugin
|
||||||
* [IPTV Client](https://kodi.wiki/view/Add-on:PVR_IPTV_Simple_Client)
|
* [IPTV Client](https://kodi.wiki/view/Add-on:PVR_IPTV_Simple_Client)
|
||||||
* [Simkl](https://simkl.com/) - Media Tracker
|
* [Simkl](https://simkl.com/) - Media Tracker
|
||||||
|
* [Elementum](https://elementum.surge.sh/) - Trakt Sync
|
||||||
|
|
||||||
|
|
||||||
It integrates with kodi to play movies from torrents. It is something like torrentio + stremio
|
|
||||||
|
|
||||||
* [mediaelch](https://github.com/komet/mediaelch) - Media Manager
|
* [mediaelch](https://github.com/komet/mediaelch) - Media Manager
|
||||||
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
# ► Video Download
|
# ► Video Download
|
||||||
|
|
||||||
* ↪️ **[YouTube Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)**
|
* ↪️ **[YouTube Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)**
|
||||||
* ↪️ **[Twitch Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_downloaders)**
|
* ↪️ **[Twitch Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_downloaders)**
|
||||||
* ⭐ **[Download Helper](https://www.downloadhelper.net/)**, [Cococut](https://cococut.net/), [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
|
* ⭐ **[Download Helper](https://www.downloadhelper.net/)**, [AddonCrop Downloader](https://addoncrop.com/v25/youtube-downloader/), [Cococut](https://cococut.net/), [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
|
||||||
* ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** - Multi-Site / CLI / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [GUI](https://github.com/StefanLobbenmeier/youtube-dl-gui)
|
* ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** - Multi-Site / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [2](https://github.com/StefanLobbenmeier/youtube-dl-gui)
|
||||||
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online / [Instances](https://instances.hyper.lol/)
|
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site
|
||||||
* ⭐ **[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.online/), [3](https://9xbuddy.in/) - Multi-Site / Online
|
* ⭐ **[9xbuddy](https://9xbuddy.xyz/)**, [2](https://9xbuddy.com/) - Multi-Site
|
||||||
* ⭐ **[Lux](https://github.com/iawia002/lux)** - Multi-Site / CLI
|
* ⭐ **[Lux](https://github.com/iawia002/lux)** - Multi-Site
|
||||||
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media
|
* [How-to Rip Videos from Amazon](https://web.archive.org/web/20210102125108/https://www.reddit.com/r/Piracy/comments/kmodia/improved_text_video_tutorial_on_how_to_rip_from/)
|
||||||
* [CD(R)M-Project](https://discord.gg/SYyvPxVyyW) - StreamFab Downloading Discord
|
* [CD(R)M-Project](https://discord.gg/cdrm-project) - StreamFab Crack
|
||||||
* [TubeOffline](https://www.tubeoffline.com/) - Multi-Site / Online
|
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site
|
||||||
* [VideoFK](https://www.videofk.com/) - Multi-Site / Online
|
* [ytDownloader](https://ytdn.netlify.app/) - Multi-Site
|
||||||
* [SASRIP](https://sasrip.sas41.com/) - Multi-Site / Online
|
* [TubeOffline](https://www.tubeoffline.com/) - Multi-Site
|
||||||
* [you-get](https://you-get.org/) - Multi-Site / CLI
|
* [you-get](https://you-get.org/) - Multi-Site
|
||||||
* [Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site / Software
|
* [Yout](https://yout.com/) - Multi-Site - Multi-Site
|
||||||
* [Yout](https://yout.com/) - Multi-Site / Online
|
* [pastedownload](https://pastedownload.com/)
|
||||||
* [pastedownload](https://pastedownload.com/) - Multi-Site / Online
|
* [weibomiaopai](https://weibomiaopai.com/download-video-parser.php) - Multi-Site
|
||||||
* [weibomiaopai](https://weibomiaopai.com/download-video-parser.php) - Multi-Site / Online
|
* [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site
|
||||||
* [SCrawler](https://github.com/AAndyProgram/SCrawler) - Multi-Site / Software / [Discord](https://discord.gg/uFNUXvFFmg)
|
* [webvideo-downloader](https://github.com/jaysonlong/webvideo-downloader) - Multi-Site
|
||||||
* [webvideo-downloader](https://github.com/jaysonlong/webvideo-downloader) - Multi-Site / CLI
|
* [TikTok Scraper](https://github.com/drawrowfly/tiktok-scraper), [myfaveTT](https://myfavett.com/), [SnapTik](https://snaptik.app/), [tiktok-to-ytdlp](https://github.com/Dinoosauro/tiktok-to-ytdlp) or [urlescraper](https://github.com/Tomeriko96/urlescraper) - TikTok
|
||||||
* [TikTok Scraper](https://github.com/drawrowfly/tiktok-scraper), [myfaveTT](https://myfavett.com/), [SnapTik](https://snaptik.app/), [tiktok-to-ytdlp](https://github.com/Dinoosauro/tiktok-to-ytdlp) - TikTok
|
* [DMVideo](https://dmvideo.download/) - DailyMotion
|
||||||
* [Threads Downloader](https://threadsdownloader.com/) - Threads
|
* [PinCase](https://pincase.xyz/) - Pinterest
|
||||||
* [urlescraper](https://github.com/Tomeriko96/urlescraper) - Urlebird
|
* [kmttg](https://www.videohelp.com/software/kmttg) - TivoToGo Download Manager
|
||||||
* [DMVideo](https://dmvideo.download/) - DailyMotion / Online
|
* [hls-downloader](https://github.com/puemos/hls-downloader), [hls extension](https://webextension.org/listing/hls-downloader.html) or [hlsloader.com](https://www.hlsloader.com/) - HLS Downloaders
|
||||||
* [PinCase](https://pincase.xyz/) - Pinterest / Online
|
|
||||||
* [hls-downloader](https://github.com/puemos/hls-downloader), [hls extension](https://webextension.org/listing/hls-downloader.html) or [hlsloader](https://www.hlsloader.com/) - HLS Downloaders
|
|
||||||
* [GetWVKeys](https://getwvkeys.cc/) - Send Widevine Requests / [GitHub](https://github.com/GetWVKeys/)
|
* [GetWVKeys](https://getwvkeys.cc/) - Send Widevine Requests / [GitHub](https://github.com/GetWVKeys/)
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -347,7 +321,7 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
|||||||
|
|
||||||
* 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)** - AI Video Tools Index
|
* 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)** - AI Video Tools Index
|
||||||
* 🌐 **[Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers)** or [Free-Codecs](https://www.free-codecs.com/) - Video Editing Codecs
|
* 🌐 **[Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers)** or [Free-Codecs](https://www.free-codecs.com/) - Video Editing Codecs
|
||||||
* ⭐ **[Eyecandy](https://eycndy.co/)** - Visual Technique Examples
|
* ⭐ **[EyeCndy](https://eycndy.co/)** - Visual Technique Examples
|
||||||
* [MotionFactory](https://www.motionfactory.io/) - Video Editing Workflow Manager
|
* [MotionFactory](https://www.motionfactory.io/) - Video Editing Workflow Manager
|
||||||
* [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums
|
* [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums
|
||||||
* [Blaine's Movie Maker Blog](https://movies.blainesville.com/p/wmm-60-on-windows-7.html) - Windows Movie Maker Tutorials
|
* [Blaine's Movie Maker Blog](https://movies.blainesville.com/p/wmm-60-on-windows-7.html) - Windows Movie Maker Tutorials
|
||||||
@ -361,10 +335,10 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
|||||||
* [Auto-Editor](https://auto-editor.com/) - CLI Editor
|
* [Auto-Editor](https://auto-editor.com/) - CLI Editor
|
||||||
* [MoviePy](https://zulko.github.io/moviepy/) - Python Editor
|
* [MoviePy](https://zulko.github.io/moviepy/) - Python Editor
|
||||||
* [Webm Generator](https://github.com/dfaker/WebmGenerator) - Webm Editor
|
* [Webm Generator](https://github.com/dfaker/WebmGenerator) - Webm Editor
|
||||||
* [avisynth](http://avisynth.nl/index.php/Main_Page) or [VapourSynth](https://www.vapoursynth.com/) - Video Processors
|
* [avisynth](http://avisynth.nl/index.php/Main_Page) - Video Processor
|
||||||
* [Source Filmmaker](https://store.steampowered.com/app/1840/Source_Filmmaker/) - Steam Movie-Making Tool / [Resources](https://sfmlab.com/)
|
* [Source Filmmaker](https://store.steampowered.com/app/1840/Source_Filmmaker/) - Steam Movie-Making Tool / [Resources](https://sfmlab.com/)
|
||||||
* [OpenRV](https://github.com/AcademySoftwareFoundation/OpenRV) or [xSTUDIO](https://www.dneg.com/xstudio/) - Image / Sequence Playback Review
|
* [OpenRV](https://github.com/AcademySoftwareFoundation/OpenRV) or [xSTUDIO](https://www.dneg.com/xstudio/) - Image / Sequence Playback Review
|
||||||
* [Remotion](https://www.remotion.dev/) - Video Editor
|
* [Remotion](https://www.remotion.dev/) - Video Editor
|
||||||
* [Olive](https://www.olivevideoeditor.org/) - Video Editor
|
* [Olive](https://www.olivevideoeditor.org/) - Video Editor
|
||||||
* [VirtualDub2](https://sourceforge.net/projects/vdfiltermod/) - Video Editor
|
* [VirtualDub2](https://sourceforge.net/projects/vdfiltermod/) - Video Editor
|
||||||
* [LosslessCut](https://github.com/mifi/lossless-cut) - Video Editor
|
* [LosslessCut](https://github.com/mifi/lossless-cut) - Video Editor
|
||||||
@ -384,7 +358,7 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
|||||||
* [OpenColorIO](https://opencolorio.org/) - Video Color Manager
|
* [OpenColorIO](https://opencolorio.org/) - Video Color Manager
|
||||||
* [FreshLUTs](https://freshluts.com/) - Free LUTs (Color Filters)
|
* [FreshLUTs](https://freshluts.com/) - Free LUTs (Color Filters)
|
||||||
* [Avidemux](http://fixounet.free.fr/avidemux/) - Cut / Filter / Encode
|
* [Avidemux](http://fixounet.free.fr/avidemux/) - Cut / Filter / Encode
|
||||||
* [suckless-cut](https://github.com/couleur-tweak-tips/suckless-cut) or [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos
|
* [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos
|
||||||
* [Opus](https://www.opus.pro/) - Clip Creator
|
* [Opus](https://www.opus.pro/) - Clip Creator
|
||||||
* [blur](https://github.com/f0e/blur) or [Smoothie](https://github.com/couleur-tweak-tips/smoothie-rs) - Add Motion Blur to Videos / [Tutorial](https://youtu.be/16-KU4r3BcA)
|
* [blur](https://github.com/f0e/blur) or [Smoothie](https://github.com/couleur-tweak-tips/smoothie-rs) - Add Motion Blur to Videos / [Tutorial](https://youtu.be/16-KU4r3BcA)
|
||||||
* [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting
|
* [ProPainter](https://github.com/sczhou/ProPainter) - Video Inpainting
|
||||||
@ -395,21 +369,25 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
|||||||
|
|
||||||
## ▷ Online Editors
|
## ▷ Online Editors
|
||||||
|
|
||||||
* ⭐ **[Pikimov](https://pikimov.com/)**
|
|
||||||
* ⭐ **[Mastershot](https://mastershot.app/)**
|
* ⭐ **[Mastershot](https://mastershot.app/)**
|
||||||
* [VideoInu](https://videoinu.com/)
|
* [VideoInu](https://videoinu.com/)
|
||||||
* [Clideo](https://clideo.com/)
|
* [Clideo](https://clideo.com/)
|
||||||
* [Kapwing](https://www.kapwing.com/)
|
* [Kapwing](https://www.kapwing.com/)
|
||||||
|
* [InVideo](https://invideo.io/)
|
||||||
* [Panzoid](https://panzoid.com/)
|
* [Panzoid](https://panzoid.com/)
|
||||||
|
* [KeepChangeIt](https://keepchangeit.com/)
|
||||||
|
* [veed.io](https://www.veed.io/tools/video-editor)
|
||||||
* [Convert2Video](https://convert2video.com/)
|
* [Convert2Video](https://convert2video.com/)
|
||||||
* [Omniclip](https://omniclip.app/) - [GitHub](https://github.com/aegir-assembly/omni-clip)
|
|
||||||
* [Video Cutter](https://video-cutter-js.com/)
|
* [Video Cutter](https://video-cutter-js.com/)
|
||||||
|
* [FlexClip](https://www.flexclip.com/)
|
||||||
* [Vididoo](https://vididoo.vercel.app/)
|
* [Vididoo](https://vididoo.vercel.app/)
|
||||||
* [VideoToolbox](https://www.videotoolbox.com/)
|
* [VideoToolbox](https://www.videotoolbox.com/)
|
||||||
* [VideoCandy](https://videocandy.com/)
|
* [VideoCandy](https://videocandy.com/)
|
||||||
|
* [Animoto](https://animoto.com/)
|
||||||
|
* [Flixier](https://editor.flixier.com/)
|
||||||
|
* [descript](https://www.descript.com/)
|
||||||
* [vidmix](https://vidmix.app/)
|
* [vidmix](https://vidmix.app/)
|
||||||
* [mebm](https://bwasti.github.io/mebm/)
|
* [mebm](https://bwasti.github.io/mebm/)
|
||||||
* [Video2Edit](https://www.video2edit.com/)
|
|
||||||
* [Crop Video](https://crop-video.com/) - Crop Videos
|
* [Crop Video](https://crop-video.com/) - Crop Videos
|
||||||
* [LoopVid](https://loopvid.kastden.org/) - Loop Videos
|
* [LoopVid](https://loopvid.kastden.org/) - Loop Videos
|
||||||
* [Crossfade](https://crossfade.io/) - Video and Audio Crossfading
|
* [Crossfade](https://crossfade.io/) - Video and Audio Crossfading
|
||||||
@ -428,9 +406,8 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
|||||||
* [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
|
||||||
* [AERiver](https://aeriver.com/) - After Effects
|
* [AERiver](https://aeriver.com/) - After Effects
|
||||||
* [MSRTC](https://msrtc-maharashtra.in/) - After Effects / [Telegram](https://t.me/aftereffectsplugins01)
|
|
||||||
* [AEDownloadPro](https://aedownloadpro.com/) - After Effects
|
|
||||||
* [Intro HD](https://intro-hd.net/) - After Effects
|
* [Intro HD](https://intro-hd.net/) - After Effects
|
||||||
|
* [AEDownloadPro](https://aedownloadpro.com/) - After Effects
|
||||||
* [Adobe After Effects Collection](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - After Effects
|
* [Adobe After Effects Collection](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - After Effects
|
||||||
|
|
||||||
***
|
***
|
||||||
@ -439,7 +416,7 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
|||||||
|
|
||||||
* 🌐 **[Creator Resources](https://www.newgrounds.com/wiki/creator-resources/)** - Art & Animation Resource Index
|
* 🌐 **[Creator Resources](https://www.newgrounds.com/wiki/creator-resources/)** - Art & Animation Resource Index
|
||||||
* ⭐ **[Unreal Engine](https://www.unrealengine.com/)**, [MoonRay](https://openmoonray.org/), [cgsoftbox](https://t.me/cgsoftbox), [SketchUp](https://www.sketchup.com/) or [Twinmotion](https://www.twinmotion.com/en-US) - 3D Creation Tools
|
* ⭐ **[Unreal Engine](https://www.unrealengine.com/)**, [MoonRay](https://openmoonray.org/), [cgsoftbox](https://t.me/cgsoftbox), [SketchUp](https://www.sketchup.com/) or [Twinmotion](https://www.twinmotion.com/en-US) - 3D Creation Tools
|
||||||
* ⭐ **[Immersity AI](https://www.immersity.ai/)** - 2D Image to 3D Animation Tool
|
* ⭐ **[LeiaPix](https://www.leiapix.com/)** - 2D Image to 3D Animation Tool
|
||||||
* [OpenToonz](https://opentoonz.github.io/e/), [Wick Editor](https://www.wickeditor.com/editor/), [Clipnote Studio](https://calcium-chan.itch.io/clipnote) or [Pencil2D](https://www.pencil2d.org/) - Animation Tools
|
* [OpenToonz](https://opentoonz.github.io/e/), [Wick Editor](https://www.wickeditor.com/editor/), [Clipnote Studio](https://calcium-chan.itch.io/clipnote) or [Pencil2D](https://www.pencil2d.org/) - Animation Tools
|
||||||
* [Animaker](https://www.animaker.com/) - Animated Video Creator
|
* [Animaker](https://www.animaker.com/) - Animated Video Creator
|
||||||
* [CG_Hacker](https://t.me/CG_Hacker), [cg_tuts](https://t.me/cg_tuts) or [cgreferenceshub](https://t.me/cgreferenceshub) - CG Tutorials
|
* [CG_Hacker](https://t.me/CG_Hacker), [cg_tuts](https://t.me/cg_tuts) or [cgreferenceshub](https://t.me/cgreferenceshub) - CG Tutorials
|
||||||
@ -448,7 +425,6 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
|||||||
* [Mixer](https://quixel.com/mixer) - 3D Texture Creation Tool
|
* [Mixer](https://quixel.com/mixer) - 3D Texture Creation Tool
|
||||||
* [PlanetSide](https://planetside.co.uk/) - CG Environment Generator
|
* [PlanetSide](https://planetside.co.uk/) - CG Environment Generator
|
||||||
* [cgplugdump](https://t.me/cgplugdump) - CG Software Plugins
|
* [cgplugdump](https://t.me/cgplugdump) - CG Software Plugins
|
||||||
* [Physically Based](https://physicallybased.info/) - RGB Values of Elements
|
|
||||||
* [AnimeEffects](https://github.com/AnimeEffectsDevs/AnimeEffects), [enve](https://maurycyliebner.github.io/), [Expressive](https://www.expressivesuite.com/), [Cavalry](https://cavalry.scenegroup.co/), [TupiTube](https://tupitube.com/) or [Synfig](https://www.synfig.org/) - 2D Animation Tools
|
* [AnimeEffects](https://github.com/AnimeEffectsDevs/AnimeEffects), [enve](https://maurycyliebner.github.io/), [Expressive](https://www.expressivesuite.com/), [Cavalry](https://cavalry.scenegroup.co/), [TupiTube](https://tupitube.com/) or [Synfig](https://www.synfig.org/) - 2D Animation Tools
|
||||||
* [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork
|
* [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork
|
||||||
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool
|
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool
|
||||||
@ -461,7 +437,7 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
|||||||
* [LibreSprite](https://libresprite.github.io/), [Pixel Compresor](https://makham.itch.io/pixel-composer), [JPixel](https://emad.itch.io/jpixel) or [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Animation Tools
|
* [LibreSprite](https://libresprite.github.io/), [Pixel Compresor](https://makham.itch.io/pixel-composer), [JPixel](https://emad.itch.io/jpixel) or [SpookyGhost](https://encelo.itch.io/spookyghost) - Pixel Art Animation Tools
|
||||||
* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings
|
* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home) or [MotorPen](https://motorpen.com/) - Animate Drawings
|
||||||
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks
|
* [FlipAnim](https://flipanim.com/) - Create Animated Flipbooks
|
||||||
* [Viggle](https://viggle.ai/) / [Discord](https://discord.com/invite/viggle) or [Picrew](https://picrew.me/) - Animated Character Creators
|
* [Picrew](https://picrew.me/) - Animated Character Maker
|
||||||
* [Mixamo](https://www.mixamo.com/) or [Cascadeur](https://cascadeur.com/) - 3D Character Animation Tools
|
* [Mixamo](https://www.mixamo.com/) or [Cascadeur](https://cascadeur.com/) - 3D Character Animation Tools
|
||||||
* [MMHuman3D](https://github.com/open-mmlab/mmhuman3d) - 3D Human Model Creator
|
* [MMHuman3D](https://github.com/open-mmlab/mmhuman3d) - 3D Human Model Creator
|
||||||
* [Talking Face Avatar](https://github.com/saba99/Talking_Face_Avatar) - Talking Avatar Generator
|
* [Talking Face Avatar](https://github.com/saba99/Talking_Face_Avatar) - Talking Avatar Generator
|
||||||
|
1130
VideoPiracyGuide.md
1130
VideoPiracyGuide.md
File diff suppressed because it is too large
Load Diff
32
biome.json
32
biome.json
@ -1,32 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
|
||||||
"extends": ["@taskylizard/biome-config"],
|
|
||||||
"files": {
|
|
||||||
"ignore": [".vitepress/**/*.vue", ".vitepress/vue-shim.d.ts"]
|
|
||||||
},
|
|
||||||
"formatter": {
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
"javascript": {
|
|
||||||
"globals": [
|
|
||||||
"defineNitroConfig",
|
|
||||||
"eventHandler",
|
|
||||||
"useRuntimeConfig",
|
|
||||||
"readValidatedBody",
|
|
||||||
"defineEventHandler"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"linter": {
|
|
||||||
"rules": {
|
|
||||||
"style": {
|
|
||||||
"useFilenamingConvention": {
|
|
||||||
"level": "info",
|
|
||||||
"options": {
|
|
||||||
"filenameCases": ["camelCase", "PascalCase"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"noDefaultExport": "off"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
8
eslint.config.js
Normal file
8
eslint.config.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
// @ts-check
|
||||||
|
import tasky from '@taskylizard/eslint-config'
|
||||||
|
|
||||||
|
export default tasky({
|
||||||
|
vue: true,
|
||||||
|
browser: true,
|
||||||
|
typescript: true
|
||||||
|
})
|
@ -39,5 +39,3 @@ outline: false
|
|||||||
* *"I love having an extreme amount of privacy. And it's not just for piracy, so this is REALLY useful. Thanks!"*
|
* *"I love having an extreme amount of privacy. And it's not just for piracy, so this is REALLY useful. Thanks!"*
|
||||||
|
|
||||||
* *"Every person I share this sub with is always completely grateful, and it's no wonder why."*
|
* *"Every person I share this sub with is always completely grateful, and it's no wonder why."*
|
||||||
|
|
||||||
* *"Finding out about FMHY's wiki is the best thing that has happened to me, it has helped me so much in every way imaginable, i'm very grateful, keep it up!"*
|
|
||||||
|
805
gaming-tools.md
805
gaming-tools.md
@ -1,805 +0,0 @@
|
|||||||
***
|
|
||||||
***
|
|
||||||
**[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)**
|
|
||||||
***
|
|
||||||
***
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# ► Gaming Tools
|
|
||||||
|
|
||||||
* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_covers_.2F_posters)**
|
|
||||||
* ↪️ **[Game Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_game_soundtracks)**
|
|
||||||
* ⭐ **[Library of Codexes](https://libraryofcodexes.com/)** - Game Codex Library
|
|
||||||
* ⭐ **[HowLongToBeat](https://howlongtobeat.com/)** - Find Average Game Lengths
|
|
||||||
* ⭐ **[/r/tipofmyjoystick](https://www.reddit.com/r/tipofmyjoystick/)** - Find Games via Screenshot or Description
|
|
||||||
* ⭐ **[Game Pauser](https://madebyjase.com/game-pauser/)** - Pause Unpausable Cutscenes
|
|
||||||
* ⭐ **[Valve Archive](https://valvearchive.com/)** - Rare Valve Data Archive
|
|
||||||
* [NIWA](https://www.niwanetwork.org/) - Nintendo Independent Wiki Alliance / [Discord](https://discord.gg/59Mq6qB )
|
|
||||||
* [Play Old PC Games](https://www.play-old-pc-games.com/) - Retro PC Game Setup Guides
|
|
||||||
* [humble-cli](https://github.com/smbl64/humble-cli) - Humble Bundle CLI
|
|
||||||
* [Gog To Free](https://greasyfork.org/en/scripts/481134) - Add Piracy Site Links to GOG Store
|
|
||||||
* [Moonlight Stream](https://moonlight-stream.org/) / [Server](https://app.lizardbyte.dev/Sunshine/) - Remote Desktop Client
|
|
||||||
* [The Models Resource](https://www.models-resource.com/) - Game Models
|
|
||||||
* [The Spriters Resource](https://www.spriters-resource.com/) - Video Game Sprites
|
|
||||||
* [MiiCharacters](https://www.miicharacters.com/) - Famous Mii Creation Guides
|
|
||||||
* [Buzz In](https://buzzin.live/) - Online Buzzer System
|
|
||||||
* [Challonge](https://challonge.com/) - Tournament Creator / Manager
|
|
||||||
* [Archipelago](https://archipelago.gg/) - Multi-Game Randomizer
|
|
||||||
* [Medal](https://medal.tv/) - Shadowplay for non Nvidia Cards / [Premium Bypass](https://medalbypass.vercel.app/)
|
|
||||||
* [RePlays](https://github.com/lulzsun/RePlays) - Game Recording Manager
|
|
||||||
* [Moments](https://steelseries.com/gg/moments) - Game Clip Tool
|
|
||||||
* [Scanlines for Windows](https://s4windows.itch.io/scanlines-for-windows) - Add Scanlines to Games / [Discord](https://discord.gg/MqxMj8MT55)
|
|
||||||
* [Keystrokes](https://www.deviantart.com/jaxoriginals/art/Keystrokes-v1-3-889349339) - Keystrokes Overlay
|
|
||||||
* [LP Archives](https://lparchive.org/) - Let's Play Archive
|
|
||||||
* [PSNProfiles](https://psnprofiles.com/) - Trophy Guide / PSN Profile Viewer
|
|
||||||
* [Achievement Watcher](https://rentry.co/FMHYBase64#achievement-watcher-mod) - Achievement File Parser, Notifications & Playtime Tracker - [Note](https://pastebin.com/Sg1SJrRx)
|
|
||||||
* [Shmuplations](https://shmuplations.com/) - Japanese Developer Interviews
|
|
||||||
* [Wiki.gg](https://wiki.gg/wikis/) - Game Wikis / [Redirector](https://support.wiki.gg/wiki/Redirect_to_wiki.gg)
|
|
||||||
* [CSDb](https://csdb.dk/) or [GB64](https://gb64.com/index.php) - Commodore 64 Resources
|
|
||||||
* [MORT](https://github.com/killkimno/MORT) - Real-time Game Text Translation
|
|
||||||
* [Textractor](https://github.com/Artikash/Textractor) - Extract Text from Games / Visual Novels
|
|
||||||
* [GARbro](https://github.com/morkt/GARbro/) - Browse / Extract Visual Novel Resources
|
|
||||||
* [ConceptArt](https://vk.com/conceptart) - Video Game Concept Art
|
|
||||||
* [FatmanTutorial](https://archive.org/details/fatmantutorial) - How-to Repack Games
|
|
||||||
* [How Denuvo Works](https://rentry.co/denuvo)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Steam / Epic
|
|
||||||
|
|
||||||
* 🌐 **[Steam Tool Collection](https://steamcommunity.com/sharedfiles/filedetails/?id=451698754)**, [steam.tools](https://steam.tools/) or [SteamInternals](https://cs.rin.ru/forum/viewtopic.php?f=10&t=65887) - Steam Tool Indexes
|
|
||||||
* 🌐 **[Steam Deck Mods](https://docs.google.com/document/d/1TWhN9nCorKxut5O7UbPQPDhXLb-8C-CIoesB01yfhmY/)** - Steam Deck Mods / [Discord](https://discord.com/invite/SteamDeck)
|
|
||||||
* ↪️ **[Steam Workshop Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders)**
|
|
||||||
* ⭐ **[Koalageddon](https://github.com/acidicoala/Koalageddon/)** / [v2](https://github.com/acidicoala/Koalageddon2) - DLC Unlocker for Steam, Epic, Origin, EA and Uplay
|
|
||||||
* ⭐ **[SmokeAPI](https://github.com/acidicoala/SmokeAPI)** - Steam DLC Unlocker / [Auto Installer](https://github.com/pointfeev/CreamInstaller)
|
|
||||||
* ⭐ **[Goldberg](https://github.com/otavepto/gbe_fork)** / [GUI](https://github.com/brunolee-GIT/GSE-Generator) / [Guide](https://rentry.co/goldberg_emulator) / [SmartSteamEmu](https://cs.rin.ru/forum/viewtopic.php?p=2009102#p2009102) - Offline Steam DRM Bypass / Multiplayer Emulator
|
|
||||||
* ⭐ **[Steamtools](https://github.com/st2024/Steamtools/releases)** / [Guide](https://rentry.co/Steamtools) or [GreenLuma](https://cs.rin.ru/forum/viewtopic.php?f=29&t=103709) / [Manager](https://github.com/BlueAmulet/GreenLuma-2024-Manager) - Offline Steam DRM Bypass / DLC Unlockers
|
|
||||||
* ⭐ **[Unsteam](https://cs.rin.ru/forum/viewtopic.php?f=20&t=134707&hilit=unsteam)** - Online Steam DRM Bypass / Cracked Servers Only / Multiplayer Emulator
|
|
||||||
* ⭐ **[Steamless](https://github.com/atom0s/Steamless)** - Steam DRM Remover
|
|
||||||
* ⭐ **[Steam-Auto-Crack](https://github.com/oureveryday/Steam-auto-crack)** or [SteamAutoCracker](https://github.com/BigBoiCJ/SteamAutoCracker) - Auto Apply Goldberg + Steamless / [Guide](https://codeberg.org/fernbacher/How-To-Crack)
|
|
||||||
* ⭐ **[SteamDB](https://steamdb.info/)** - Steam Insights Tool / [Extension](https://steamdb.info/extension/)
|
|
||||||
* ⭐ **[SDD GUI](https://github.com/mmvanheusden/SteamDepotDownloaderGUI)** or [DepotDownloader](https://github.com/SteamRE/DepotDownloader) - Steam Depot Downloaders
|
|
||||||
* ⭐ **[RedAlt SteamUp](https://cs.rin.ru/forum/viewtopic.php?f=14&t=138413&p=3000090)** - Steam Depot Update Creator
|
|
||||||
* ⭐ **[Heroic Games Launcher](https://heroicgameslauncher.com/)**, [LEGENDARY](https://github.com/derrod/legendary) / [Discord](https://legendary.gl/discord) or [Rare](https://github.com/RareDevs/Rare) - Epic Games Launcher
|
|
||||||
* ⭐ **[Nemirtingas Epic Emulator](https://cs.rin.ru/forum/viewtopic.php?f=29&t=105551)** - Epic Online Service Emulator
|
|
||||||
* ⭐ **[TCNO](https://github.com/TCNOco/TcNo-Acc-Switcher)** - Platform Account Switcher / [Tutorial](https://youtu.be/0h-xjiW9M7Y)
|
|
||||||
* [CreamAPI](https://cs.rin.ru/forum/viewtopic.php?t=70576) - Steam DLC Unlocker / [Auto Setup](https://cs.rin.ru/forum/viewtopic.php?p=2013521)
|
|
||||||
* [DreamAPI](https://cs.rin.ru/forum/viewtopic.php?f=10&t=111520) - DLC Unlocker for Epic, Origin and EA
|
|
||||||
* [Anadius](https://rentry.co/FMHYBase64#anadius) - DLC Unlockers for EA and Origin
|
|
||||||
* [ScreamAPI](https://github.com/acidicoala/ScreamAPI) - Epic DLC Unlocker
|
|
||||||
* [GetDataFromSteam-SteamDB](https://github.com/Sak32009/GetDataFromSteam-SteamDB) - Find SteamDB DLC Data / Create Configs
|
|
||||||
* [SKSAppManifestGenerator](https://github.com/Sak32009/SKSAppManifestGenerator) - Create AppManifest Data
|
|
||||||
* [Superheater](https://superheater.fgsfds.link/) - Fix / Patch Steam Games / [Discord](https://discord.gg/mWvKyxR4et)
|
|
||||||
* [Depressurizer](https://github.com/Depressurizer/Depressurizer) - Steam Library Organizer
|
|
||||||
* [Steam Art Manager](https://github.com/Tormak9970/Steam-Art-Manager) - Find / Manage Game Art
|
|
||||||
* [Steam API Check Bypass](https://github.com/oureveryday/Steam-API-Check-Bypass) - Steam API Check Bypass
|
|
||||||
* [ColdAPI](https://github.com/Rat431/ColdAPI_Steam) - Offline Steam Emulator
|
|
||||||
* [Super Steam Packer](https://cs.rin.ru/forum/viewtopic.php?f=29&t=131328&hilit=super+steam+packer) - Pack and share your Steam games
|
|
||||||
* [Steam Link](https://play.google.com/store/apps/details?id=com.valvesoftware.steamlink) - Stream Steam Library to TV
|
|
||||||
* [Steam Mover](https://www.traynier.com/software/steammover) - Store Steam Games on Multiple Drives
|
|
||||||
* [Steam Piracy](https://greasyfork.org/en/scripts/460862) or [Stream To Free](https://greasyfork.org/en/scripts/481139) - Add Piracy Site Links to Steam Store
|
|
||||||
* [SteamScout](https://www.togeproductions.com/SteamScout/) - Steam Review Analyzer
|
|
||||||
* [BoilR](https://github.com/PhilipK/BoilR) - Sync Game Platforms with Steam
|
|
||||||
* [UWPHook](https://briano.dev/UWPHook/) - Add Windows Store Games to Steam
|
|
||||||
* [Steam Rom Manager](https://github.com/SteamGridDB/steam-rom-manager) - Add ROMs to Steam
|
|
||||||
* [SteamBorrowBypass](https://github.com/benjamin-dev1/SteamBorrowBypass-Windows-10-) - Steam Library Sharing
|
|
||||||
* [HonestSteamBrowser](https://honeststeambrowser.com/) - Steam Server Browser
|
|
||||||
* [The Wheelhaus](https://thewheelhaus.com/) - Find Random Steam Games
|
|
||||||
* [Free Packages](https://steamdb.info/freepackages/) - Mass Activate All Free Steam Games / [Guide](https://youtu.be/svbdw-pYNT8)
|
|
||||||
* [SteamDesktopAuthenticator](https://github.com/Jessecar96/SteamDesktopAuthenticator) - Desktop Implementation of Steam's Mobile Authenticator
|
|
||||||
* [Steam Python](http://steam.readthedocs.io) - Interact with Steam via Python
|
|
||||||
* [Idle Master Extended](https://github.com/JonasNilson/idle_master_extended) or [IdleDaddy](https://play.google.com/store/apps/details?id=com.steevsapps.idledaddy) - Steam Card Automation
|
|
||||||
* [SteamAchievementManager](https://github.com/gibbed/SteamAchievementManager) - Steam Achievement Manager
|
|
||||||
* [Steam Charts](https://steamcharts.com/) - Steam Statistics
|
|
||||||
* [SteamRep](https://steamrep.com/), [SteamID](https://steamid.io/) / [2](https://steamid.uk/), [SteamDetective](https://steamdetective.com/) or [SteamFinder](https://steamidfinder.com/) - Steam ID Lookup
|
|
||||||
* [SteamGuard](https://github.com/dyc3/steamguard-cli) - Generate Steam 2FA Codes
|
|
||||||
* [Watt Toolkit](https://steampp.net/) - Enhance Steam Functionality / [GitHub](https://github.com/BeyondDimension/SteamTools)
|
|
||||||
* [AugmentedSteam](https://augmentedsteam.com/) - Steam Web Enhancement Extension
|
|
||||||
* [Steam Auto Shutdown](https://github.com/diogomartino/steam-auto-shutdown) - Shutdown Steam after Downloads Finish
|
|
||||||
* [Steam URL Opener](https://github.com/veteran29/steam-url-open-extension) - Open URLs Inside Steam Client
|
|
||||||
* [Steam Age Bypass](https://greasyfork.org/en/scripts/18450-steam-bypass-age-confirmation-prompts) - Bypass Age Confirmation
|
|
||||||
* [Steam Currency Converter](https://github.com/Solidet-com/steam-currency-converter) / [Note](https://pastebin.com/rjYe4kjT) - Steam Currency Converter
|
|
||||||
* [Millennium](https://steambrew.app/) - Steam Client Customization / [Discord](https://steambrew.app/discord)
|
|
||||||
* [Adwaita for Steam](https://github.com/tkashkin/Adwaita-for-Steam) - Steam GNOME Skin
|
|
||||||
* [Backgrounds.Gallery](https://backgrounds.gallery/) - Steam Backgrounds
|
|
||||||
* [Steam.Design](https://steam.design/) - Steam Background Cropper
|
|
||||||
* [Center.Steam](https://center.steam.design/) - Center Steam Text
|
|
||||||
* [Wishlist Removals](https://steamcommunity.com/sharedfiles/filedetails/?id=1746978201) - Remove Hidden Items from Steam Wishlist
|
|
||||||
* [Steam Inventory Helper](https://steaminventoryhelper.com/) - Steam Inventory Enhancement Extension
|
|
||||||
* [ArchiFarm](https://github.com/JustArchiNET/ArchiSteamFarm) - Farm Steam Trading Cards
|
|
||||||
* [Fuck Off EA App](https://github.com/p0358/Fuck_off_EA_App) - Use Origin Instead of EA App
|
|
||||||
* [/r/SteamDeckPirates](https://www.reddit.com/r/SteamDeckPirates/) - Steam Deck Piracy Subreddit
|
|
||||||
* [Bazzite](https://bazzite.gg/) - Alt Steam Deck OS
|
|
||||||
* [Decky Loader](https://decky.xyz/) - Steam Deck Plugin Loader / [Plugins](https://plugins.deckbrew.xyz/) / [GitHub](https://github.com/SteamDeckHomebrew/decky-loader)
|
|
||||||
* [Steam Deck Tools](https://steam-deck-tools.ayufan.dev) - Fan Overlay, Power Control and Steam Controller
|
|
||||||
* [great-on-deck-search](https://github.com/cptpiepmatz/great-on-deck-search) - Verified Steam Deck Game Search
|
|
||||||
* [Steam-Deck.Force](https://github.com/scawp/Steam-Deck.Force-SteamOS-On-Boot) - Force SteamOS Boot
|
|
||||||
* [HoloISO](https://github.com/HoloISO/releases) - SteamOS 3 (Holo) Archiso Config / [Telegram](https://t.me/HoloISO)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Game Launchers
|
|
||||||
|
|
||||||
* ⭐ **[Playnite](https://playnite.link/)** - Game Library / Launcher / [Extensions](https://playnite.link/addons.html) / [Achievements](https://github.com/Lacro59/playnite-successstory-plugin) / [Auto-Crack](https://github.com/turusudiro/SteamEmuUtility) / [Discord](https://discord.com/invite/BrtABqe)
|
|
||||||
* ⭐ **[GoG Galaxy](https://www.gog.com/galaxy)** or **[Project GLD](https://github.com/Y0URD34TH/Project-GLD/)** - Game Libraries / Launchers
|
|
||||||
* [Black Pearl Origin](https://github.com/BlackPearlOrigin/blackpearlorigin) - Cross Platform Game Library / Launcher / [Plugins](https://bpo-store.github.io/) / [Discord](https://discord.com/invite/WpBr3hJVf5)
|
|
||||||
* [Launchbox](https://www.launchbox-app.com/) - Retro / Console Game Library / Launcher
|
|
||||||
* [GameHUB Launcher](https://www.deviantart.com/not-finch/art/GameHUB-launcher-2-for-Rainmeter-785369648) - Rainmeter Game Launcher
|
|
||||||
* [Hydra](https://github.com/hydralauncher/hydra) - Game Launcher / Torrent Client
|
|
||||||
* [Arc](https://www.arcgames.com/en/about/client) - Gearbox Game Launcher / Library
|
|
||||||
* [GameVault](https://gamevau.lt) - Self-Hosted Gaming Platform / [Discord](https://discord.gg/NEdNen2dSu)
|
|
||||||
* [XIVLauncher](https://goatcorp.github.io/) - Fixed FFXIV Launcher
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Optimization Tools
|
|
||||||
|
|
||||||
* 🌐 **[PCGamingWiki](https://www.pcgamingwiki.com/)** - Game Optimization Resources / Fixes
|
|
||||||
* 🌐 **[Nvidia Overclocking](https://github.com/LunarPSD/NvidiaOverclocking/blob/main/Nvidia%20Overclocking.md)** - Nvidia Overclocking Resources
|
|
||||||
* ↪️ **[System Optimization Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_hardware_tools)**
|
|
||||||
* ⭐ **[SpecialK](https://www.special-k.info/)** - Game Optimization Tool / [Discord](https://discord.gg/specialk)
|
|
||||||
* ⭐ **[MSI Afterburner](https://www.msi.com/Landing/afterburner)**, [GPU Tweak lll](https://www.asus.com/campaign/GPU-Tweak-III/index.php) or [EVGA Precision X1](https://www.evga.com/precisionx1/) / [Warning](https://ibb.co/VSYtdTW) - GPU Overclocking / [Guide](https://docs.google.com/document/d/14ma-_Os3rNzio85yBemD-YSpF_1z75mZJz1UdzmW8GE/)
|
|
||||||
* ⭐ **[SystemRequirmentsLab](https://www.systemrequirementslab.com/cyri/)** or [PCGameBenchmark](https://www.pcgamebenchmark.com/) - Game Requirements Tests
|
|
||||||
* ⭐ **[MSI Kombustor](https://www.geeks3d.com/furmark/kombustor/)** - GPU Benchmark Test
|
|
||||||
* ⭐ **[ProSettings](https://prosettings.net/)**, [Share Gaming Tweaks](https://www.tenforums.com/gaming/117377-share-gaming-tweaks-chec-my-comprehensive-list-will-blow-your-mind.html), [/r/OptimizedGaming](https://www.reddit.com/r/OptimizedGaming/), [SweetFX](https://sfx.thelazy.net/), [ENBSeries](http://enbdev.com) or [Use Gaming Tweaks](https://github.com/PrincessAkira/Use-Gaming-Tweaks) - Settings Optimization Guides
|
|
||||||
* ⭐ **[DisplayMagician](https://displaymagician.littlebitbig.com/)** or [AutoActions](https://github.com/Codectory/AutoActions) - Per-Game Display Profiles
|
|
||||||
* ⭐ **[Magpie](https://github.com/Blinue/Magpie)** or [Vuenxx](https://discord.gg/ASZjqrjWYf) / [Note](https://pastebin.com/DyQh6K0Q) - Free FSR 3 Mods
|
|
||||||
* [RagnoTech Optimization Catalog](https://ragnos1997.com/optimization-catalog/) or [TroubleChute](https://www.youtube.com/c/TroubleChute/featured) - Gaming Optimization Guides
|
|
||||||
* [Calypto’s Latency Guide](https://docs.google.com/document/d/1c2-lUJq74wuYK1WrA_bIvgb89dUN0sj8-hO3vqmrau4/), [cancerogenoslab](https://sites.google.com/view/cancerogenoslab/) or [MikeMartin](https://www.mikemartin.co/) - FPS / Latency Guides
|
|
||||||
* [OCAT](https://gpuopen.com/ocat/) / [GitHub](https://github.com/GPUOpen-Tools/ocat), [Rivatuner Statistics Server](https://www.guru3d.com/files-details/rtss-rivatuner-statistics-server-download.html), [CapFrameX](https://www.capframex.com/) or [Xbox Game Bar](https://rentry.co/WindowsFPS) - FPS Benchmarking
|
|
||||||
* [SSTap](https://github.com/FQrabbit/SSTap-Rule) - Decrease Ping
|
|
||||||
* [Overclock](https://www.overclock.net/) - Overclocking Forum
|
|
||||||
* [Ryzen Master Utility](https://www.amd.com/en/technologies/ryzen-master) - Overclocking Control for Ryzen Desktop CPU
|
|
||||||
* [AMD-APU-Tuning-Utility](https://github.com/JamesCJ60/Universal-x86-Tuning-Utility) - AMD APU Tuning
|
|
||||||
* [dlss-swap](https://github.com/beeradmoore/dlss-swapper) - Download, Manage & Swap DLSS
|
|
||||||
* [dgVoodoo2](http://dege.freeweb.hu/dgVoodoo2/) - Glide & DirectX Graphics Wrapper
|
|
||||||
* [VibranceGUI](https://vibrancegui.com/) - Automate Digital Vibrance Control
|
|
||||||
* [ReShade](https://reshade.me/) - Generic Post-Processing Injector / [GitHub](https://github.com/crosire/reshade) / [Shaders](https://github.com/BlueSkyDefender/Depth3D) / [Discord](https://discord.com/invite/PrwndfH)
|
|
||||||
* [DLSSG to FSR3](https://github.com/Nukem9/dlssg-to-fsr3) - AMD FSR3 Frame Generation for NVIDIA
|
|
||||||
* [WindowedBorderlessGaming](https://westechsolutions.net/sites/WindowedBorderlessGaming/), [Borderless Gaming](https://github.com/Codeusa/Borderless-Gaming) or [FullScreenizer](http://runtimeterror.com/tools/fullscreenizer/) - Borderless Windows for All Games
|
|
||||||
* [Lossless Scaling](https://rentry.co/FMHYBase64#lossless-scaling) - Windowed Game Scaling
|
|
||||||
* [DxWnd](https://sourceforge.net/projects/dxwnd/) - Play Fullscreen Only Games in Window
|
|
||||||
* [Widescreen Fixes Pack](https://thirteenag.github.io/wfp) / [GitHub](https://github.com/ThirteenAG/WidescreenFixesPack), [Widescreen Fixer v3.4](https://community.pcgamingwiki.com/files/file/1754-widescreen-fixer-v34-r737/) or [Flawless Widescreen](https://www.flawlesswidescreen.org/) - Widescreen Fixes
|
|
||||||
* [4GB Patch](https://ntcore.com/?page_id=371) - Patch x86 executables to use 4GB
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Controller Tools
|
|
||||||
|
|
||||||
* [DS4Windows](https://ryochan7.github.io/ds4windows-site/), [AntiMicroX](https://github.com/AntiMicroX/antimicroX), [DualSenseX](https://github.com/Paliverse/DualSenseX), [PCXSense](https://github.com/Denellyne/PCXSense) or [Input Remapper](https://github.com/sezanzeb/input-remapper) - Gamepad Input Tools / [Steam Note](https://pastebin.com/ycswQGVR)
|
|
||||||
* [x360ce](https://www.x360ce.com/) / [GitHub](https://github.com/x360ce/x360ce) - DS4 / 360 Controller Emulator
|
|
||||||
* [XOutput](https://github.com/csutorasa/XOutput) - DirectInput to Xinput wrapper
|
|
||||||
* [DsHidMini](https://docs.nefarius.at/projects/DsHidMini/) - Use PS3 Controllers on Windows
|
|
||||||
* [JoyToKey](https://joytokey.net/en/) - Controller Emulator
|
|
||||||
* [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays
|
|
||||||
* [PC Remote](https://play.google.com/store/apps/details?id=com.monect.portable) - Use Phone as Controller
|
|
||||||
* [Gamepad-Tester](https://gamepad-tester.com/) or [AresLuna](https://aresluna.org/gamepad-tester/) - Controller Connectivity Testers
|
|
||||||
* [HidHide](https://docs.nefarius.at/projects/HidHide/) - Input Device Firewall
|
|
||||||
* [Whitescent Engine](https://apt.izzysoft.de/fdroid/index/apk/com.github.whitescent.engine) - Use Phone as Joy Stick / [GitHub](https://github.com/whitescent/Engine)
|
|
||||||
* [JoystickGremlin](https://whitemagic.github.io/JoystickGremlin/) - Remap Joystick Devices
|
|
||||||
* [Arcade Controls](http://arcadecontrols.com/arcade.htm) - DIY Arcade Controls
|
|
||||||
* [AltCtrls](https://altctrls.info/) - Custom Controller Crafting Resources
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Game Mods
|
|
||||||
|
|
||||||
* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Side Scrolling Modding Forum / [Games List](https://www.chronocrash.com/forum/resources/categories/openbor.2/)
|
|
||||||
* ⭐ **[ModDB](https://moddb.com/)** - Game Mods
|
|
||||||
* ⭐ **[Nexus Mods](https://www.nexusmods.com/)** - Game Mods / [Bulk Downloader](https://greasyfork.org/en/scripts/483337) / [Redirect Skip](https://greasyfork.org/en/scripts/394039) / [Discord](https://discord.com/invite/nexusmods)
|
|
||||||
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** - Bethesda Game Modding Guides / [Discord](https://discord.com/invite/S99Ary5eba)
|
|
||||||
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) or [WeMod](https://rentry.co/fmhybase64#wemod) - Mod Managers
|
|
||||||
* [Otis_Inf Camera Mods](https://redd.it/hvttbd) - Game Camera Mods Index
|
|
||||||
* [mod.io](https://www.mod.io/) - Cross Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
|
||||||
* [WabbaJack](https://www.wabbajack.org/) / [Discord](https://discord.com/invite/wabbajack) - Automated Modlist Installer
|
|
||||||
* [NextGenUpdate](https://www.nextgenupdate.com/) - Game Mods
|
|
||||||
* [ModWorkshop](https://modworkshop.net/) - Game Mods / [Discord](https://discord.com/invite/Eear4JW)
|
|
||||||
* [GameFront](https://gamefront.com/) - Game Mods / [Discord](https://discord.com/invite/gamefront)
|
|
||||||
* [Video Game Mods](https://videogamemods.com/) - Game Mods / [Discord](https://discord.com/invite/C2JussB8hk)
|
|
||||||
* [GameBanana](https://gamebanana.com/) - Game Mods / [Discord](https://discord.com/invite/h5xJv9M)
|
|
||||||
* [Silent's Blog](https://cookieplmonster.github.io/mods/index/) - Game Mods / Patches
|
|
||||||
* [FlingTrainer](https://flingtrainer.com/) - Game Mods / Trainers
|
|
||||||
* [Top Mods](https://www.top-mods.com/) - PC Game Mods
|
|
||||||
* [ProAsm](http://www.proasm.com/) - Retro Game Mods
|
|
||||||
* [ProWrestlingMods](https://prowrestlingmods.io/) - Wrestling Game Mods / [Discord](https://discord.gg/ctUmSTueV3)
|
|
||||||
* [KSP-CKAN](https://github.com/KSP-CKAN/CKAN/) - Kerbal Space Program Mod Loader
|
|
||||||
* [Pre-Fortress 2](https://prefortress.com/) - TF1 Style TF2 Mod
|
|
||||||
* [Unreal Archive](https://unrealarchive.org/index.html) - Unreal Tournament Mods, Maps, Skins etc.
|
|
||||||
* [Quaddicted](https://www.quaddicted.com/) - Classic Quake Mods, Maps & Tools
|
|
||||||
* [ZagruzkaMods](https://zagruzkamods.com/) or [GameJunkie](https://www.gamejunkie.pro/) - Simulator Game Mods
|
|
||||||
* [ESO Addons](https://github.com/arviceblot/eso-addons) - Elder Scrolls Online Mod Manager
|
|
||||||
* [Funky](https://pukmajster.github.io/funky/) - Left 4 Dead 2 Mod Manager
|
|
||||||
* [Hidden Fallout 4 Mods](https://rentry.co/89gads), [2](https://docs.google.com/document/d/1Im5Mg-l2btRsYVOjaJa0slrjDcXNvi41J5pHw_Zuwqw/edit?usp=sharing) - Fallout 4 Mods Removed from Nexus
|
|
||||||
* [UGX Mods](https://www.ugx-mods.com/) - COD Zombies Mods / [Discord](https://discord.gg/g9S2nSp)
|
|
||||||
* [RimWorldBase](https://www.rimworldbase.com/) - RimWorld Mods
|
|
||||||
* [PvZ Link Server](https://discord.gg/TySsGQWB5A) - Plants vs Zombies Mods
|
|
||||||
* [NFL2KMod](https://www.nfl2kmod.com/) - NFL Game Mods
|
|
||||||
* [StellarisMods](http://stellarismods.net/) - Stellaris Mods
|
|
||||||
* [SMods](https://smods.ru/) - Cities: Skylines Mods
|
|
||||||
* [MDMC](https://mdmc.moe/) - Muse Dash Mods / [Discord](https://discord.com/invite/mdmc)
|
|
||||||
* [BSManager](https://github.com/Zagrios/bs-manager) - Beat Saber Version / Mod Manager / [Discord](https://discord.com/invite/uSqbHVpKdV)
|
|
||||||
* [BSMG](https://bsmg.wiki/) - Beat Saber Mods
|
|
||||||
* [NFSMods](https://nfsmods.xyz/) / [Discord](https://discord.gg/MuC3KKW) or [NFSAddons](https://www.nfsaddons.com/) - Need for Speed Mods
|
|
||||||
* [SimPlaza](https://simplaza.org/) - Microsoft Flight Simulator Addons
|
|
||||||
* [Modding-OpenMW](https://modding-openmw.com/) - Morrowind Mods
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Game Saves
|
|
||||||
|
|
||||||
* ↪️ **[File Backup / Sync](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_backup_.2F_sync)**
|
|
||||||
* [Ludusavi](https://github.com/mtkennerly/ludusavi) or [GameSave Manager](https://www.gamesave-manager.com/) - Video Game Backup Tools
|
|
||||||
* [Save Game World](https://www.savegameworld.com/) - PC / PlayStation / Switch / Xbox / Wii
|
|
||||||
* [SavegameDownload.com](https://www.savegamedownload.com/) - PC / PlayStation / Switch / Xbox / Android
|
|
||||||
* [Save Game Files](https://www.savegamefiles.com/) - PC / PlayStation / Xbox / Wii
|
|
||||||
* [YourSaveGames](https://www.yoursavegames.com/) - PC / PSP
|
|
||||||
* [SaveGame.Pro](https://savegame.pro/) - PC
|
|
||||||
* [Saves For Games](https://savesforgames.com/) - PC
|
|
||||||
* [Save Editor Online](https://www.saveeditonline.com/) - Game Save Editor
|
|
||||||
* [MegaGames](https://megagames.com/), [GTrainers](https://gtrainers.com/) or [GameCopyWorld](https://www.gamecopyworld.com/games/index.php) - Game Trainers
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Game Maps
|
|
||||||
|
|
||||||
* 🌐 **[Map Genie](https://mapgenie.io/)**, [GameMaps](https://www.gamemaps.com/), [THGL](https://www.th.gl/) or [VGMaps](https://www.vgmaps.com/) - Game Map Indexes
|
|
||||||
* [noclip](https://noclip.website/) - Explore Game Maps
|
|
||||||
* [KudosPrime](https://www.kudosprime.com/) - Racing Game Maps
|
|
||||||
* [bspview](https://sbuggay.github.io/bspview) / [GitHub](https://github.com/sbuggay/bspview) - Explore Quake & GoldSRC Maps
|
|
||||||
* [NES Maps](https://www.nesmaps.com/) - NES Game Maps
|
|
||||||
* [SNES Maps](https://www.snesmaps.com/) - SNES Game Maps
|
|
||||||
* [Forgehub](https://www.forgehub.com/) - Halo Maps / [Discord](https://discord.com/invite/ybGX7sv)
|
|
||||||
* [Zelda BotW Street View](https://nassimsoftware.github.io/zeldabotwstreetview/) - Breath of The Wild Map
|
|
||||||
* [Palworld Interactive](https://palworld.th.gl/) - Palworld Map
|
|
||||||
* [Fortnite.gg](https://fortnite.gg/) - Fortnite Map, Guides, Skins etc.
|
|
||||||
* [Hitmaps](https://www.hitmaps.com/) - Hitman Maps / [Discord](https://discord.gg/RssFsajjjX)
|
|
||||||
* [Hallownest](https://www.hallownest.net/) or [Interactive HN Map](https://scripterswar.com/hollowknight/map) - Hollow Knight Maps
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Git Gud
|
|
||||||
|
|
||||||
* 🌐 **[Mousepad Mastersheet](https://docs.google.com/spreadsheets/d/1RAnmZxDNduaGV8kB-GCvZ0MO6d9-0j9jmrU2f8dp0Ww/)** - Mousepad Comparison Chart
|
|
||||||
* 🌐 **[Click Latencies](https://docs.google.com/spreadsheets/d/1-QI7-LY9Ul_DsVE4ZOqBQxqqqqrdJ04Ite8IY3AQMds/)** - Mouse Click Latency Chart
|
|
||||||
* ⭐ **[Before I Play](https://beforeiplay.com/)** - Tips for any Game
|
|
||||||
* ⭐ **[GamingSmart](https://gamingsmart.com/)** or [Mouse Sensitivity](https://www.mouse-sensitivity.com/) - Game Sensitivity Converters / Tools
|
|
||||||
* ⭐ **[Aim400kg](https://aim400kg.com/)**, [3D Aim Trainer](https://www.3daimtrainer.com/), [Aimlabs](https://aimlabs.com/), [Aiming.Pro](https://aiming.pro/) or [AimTrainer](https://aimtrainer.io/) - Aim Training
|
|
||||||
* ⭐ **[Speedrun](https://www.speedrun.com/)** - Speedrunning Streams, Leaderboards, Resources etc.
|
|
||||||
* [GameGuides](https://www.gamerguides.com/), [Retro Guides](https://rentry.co/FMHYBase64#retro-game-strategy-guides), [Game8](https://game8.co/), [StrategyWiki](https://strategywiki.org/), [Samurai Gamers](https://samurai-gamers.com/), [UHS Hints](https://www.uhs-hints.com/) or [Kirklands](https://archive.org/details/kirklands-manual-labor-sony-playstation-2-usa-4k-version) - Game Guides
|
|
||||||
* [Piper](https://github.com/libratbag/piper) - Gaming Mouse Config Tool
|
|
||||||
* [LiveSplit](https://livesplit.org/) - Customizable Speedrun Timer
|
|
||||||
* [TASVideos](https://tasvideos.org/) - Watch and Publish Tool Assisted Speedruns
|
|
||||||
* [Tomatoanus](https://www.youtube.com/@tomatoanus/) - Speedrun Breakdowns
|
|
||||||
* [BakkesMod](https://bakkesmod.com/) - Rocket League Trainer
|
|
||||||
* [ReplacementDocs](http://replacementdocs.com/) or [GamesDatabase](https://www.gamesdatabase.org/) - Game Manuals
|
|
||||||
* [SNES Manuals](https://sites.google.com/view/snesmanuals) - SNES Game Manuals
|
|
||||||
* [FOUR.lol](https://four.lol/) - Tetris Openers Wiki
|
|
||||||
* [Underdogs Cup Lounge](https://discord.gg/QCbC9cA) - Tetris Resources & Coaching Discord
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Tracking / Discovery
|
|
||||||
|
|
||||||
* 🌐 **[Awesome Engineering Games](https://github.com/arcataroger/awesome-engineering-games)** - Engineering Games
|
|
||||||
* ⭐ **[Glitchwave](https://glitchwave.com/)**, [Grouvee](https://www.grouvee.com/), [RankOne](https://www.rankone.global/), [InfiniteBacklog](https://infinitebacklog.net/) or [Backloggd](https://www.backloggd.com/) - Game Trackers
|
|
||||||
* ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings
|
|
||||||
* ⭐ **[IGDB](https://www.igdb.com/)** or **[GiantBomb](https://www.giantbomb.com/games/)** - Game Database
|
|
||||||
* ⭐ **[TasteDive](https://tastedive.com/games )**, [50GamesLike](https://www.50gameslike.com/), [Mythic Maps](https://mythicmap.com/) / [Discord](https://discord.gg/xw6cgmjDzB) or [/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations
|
|
||||||
* [Rec Charts](https://mega.nz/folder/kj5hWI6J#0cyw0-ZdvZKOJW3fPI6RfQ) - Game Recommendation Guides
|
|
||||||
* [Incendar](https://incendar.com/) - Game Release Date Tracker
|
|
||||||
* [GG App](https://ggapp.io/), [Gamelib](https://gamelib.app/explore), [Backloggery](https://backloggery.com/) or [Exophase](https://www.exophase.com/) - Game Trackers
|
|
||||||
* [LaunchBox Games Database](https://gamesdb.launchbox-app.com/), [GameFAQs](https://gamefaqs.gamespot.com/), [Rawg](https://rawg.io/), [Moby Games](https://www.mobygames.com/), [rate.house](https://rate.house/chart/game), [listal](https://www.listal.com/) or [FrontierNav](https://frontiernav.net/) - Game Databases
|
|
||||||
* [IMDb Advanced Search](https://www.imdb.com/search/) - Game Search
|
|
||||||
* [JRGPC](https://jrpgc.com/) - JRPG Databases / [Discord](https://discord.com/invite/jrpgc)
|
|
||||||
* [RPGCodex](https://rpgcodex.net/forums/) - RPG Database / Forum
|
|
||||||
* [SteamPeek](https://steampeek.hu/) or [IndieDB](https://www.indiedb.com/) - Indie Game Databases
|
|
||||||
* [RetroShowcase](https://www.retroshowcase.gr/) or [The Good Old Days](https://www.goodolddays.net/) - Retro Game Databases
|
|
||||||
* [Sega Retro](https://segaretro.org/) - Sega Game Database
|
|
||||||
* [AtariAge](https://atariage.com/) - Atari Game Database
|
|
||||||
* [Polish Pixels](https://polishpixels.com/) - Retro Polish Games Database
|
|
||||||
* [Co-Optimu](https://www.co-optimus.com/) or [PlayCo-opGame](https://playco-opgame.com/) - Co-Op Game Databases
|
|
||||||
* [SvenEvils Playground](https://store.steampowered.com/curator/8485829/) or [Local Multiplayer List](https://docs.google.com/spreadsheets/d/14f6qS2GJy8C-b40Df3dNH_aZq7WfZ4jMggzEajUrX0w/) - Local Multiplayer Game Database
|
|
||||||
* [DoesItPlay?](https://www.doesitplay.org/) - Offline Game Compatibility Database
|
|
||||||
* [Low Spec Games](https://pastebin.com/MTCXZxCN) - Low Spec Game Database
|
|
||||||
* [HOTU](https://www.homeoftheunderdogs.net/) - Rare Game Database
|
|
||||||
* [Delisted Games](https://delistedgames.com/) - Delisted Games Database
|
|
||||||
* [BoardGameGeek](https://boardgamegeek.com/) - Board Game Database
|
|
||||||
* [Board Game Breakdown](https://boardgamebreakdown.com/) - Board Game Reviews
|
|
||||||
* [MoreGamesLike](https://www.moregameslike.com/) or [Games Like Finder](https://gameslikefinder.com/) - Find Similar Games
|
|
||||||
* [DigitalDreamDoor](https://digitaldreamdoor.com/pages/games.html) - List of the Best Games
|
|
||||||
* [Are We Anti-Cheat Yet?](https://areweanticheatyet.com/) - Anti-Cheat Game Database / GNU/Linux or Wine/Proton Compatibility
|
|
||||||
* [Unseen64](https://www.unseen64.net/) - Cancelled / Lost Games
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# ► Multiplayer Tools
|
|
||||||
|
|
||||||
* ⭐ **[Find-PlayDate](https://www.find-playdate.com/)** - Find People to Play Games With
|
|
||||||
* ⭐ **[Nucleus Co-op](https://github.com/SplitScreen-Me/splitscreenme-nucleus)** - Local Split-Screen PC Multiplayer
|
|
||||||
* [Liquipedia](https://liquipedia.net/) - Competitve Gaming / Esports Wiki / [Discord](https://discord.com/invite/liquipedia)
|
|
||||||
* [Overwolf](https://www.overwolf.com/) - Create In-Game Overlay Apps
|
|
||||||
* [Tracker.gg](https://tracker.gg/) - Game Leaderboards / Stats
|
|
||||||
* [StatsVerse](http://statsverse.com/) - Battlefield Leaderboards
|
|
||||||
* [Sym.gg](https://sym.gg/) - Battlefield Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP)
|
|
||||||
* [PaladinsGuru](https://paladins.guru/) - Paladins Leaderboards / [Discord](https://discord.com/invite/5aKtMB7)
|
|
||||||
* [TrueGameData](https://truegamedata.com/) - COD Leaderboards
|
|
||||||
* [Warzone Loadout](https://warzoneloadout.games/) - Warzone Loadouts and Builds
|
|
||||||
* [Rust Labs](https://rustlabs.com/) - Rust Info / Tools
|
|
||||||
* [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Multiplayer Project / [Discord](https://discord.com/invite/UBAZFys)
|
|
||||||
* [Braytech](https://bray.tech/) - Destiny 2 Stats
|
|
||||||
* [Leaf](https://leafapp.co/) or [HaloDataHive](https://halodatahive.com/) - Halo Infinite Leaderboards / Stats
|
|
||||||
* [D4Builds](https://d4builds.gg/) - Diablo 4 Builds
|
|
||||||
* [WoWProgress](https://www.wowprogress.com) or [CheckPVP](https://www.check-pvp.fr/) - WoW Rankings
|
|
||||||
* [RaidPlan](https://raidplan.io/) - WoW Raid Planner / [Discord](https://discord.com/invite/mTuHsfb)
|
|
||||||
* [FallGuysStats](https://github.com/ShootMe/FallGuysStats) or [Fallalytics](https://fallalytics.com/) - Fall Guys Stat Trackers
|
|
||||||
* [Pancake Patcher](https://gamebanana.com/tools/7382) - Fall Guys String Patcher
|
|
||||||
* [FallGuysDB](https://fallguys-db.pages.dev/) - Fall Guys Store & Show Rotations
|
|
||||||
* [Fortnite Tracker](https://fortnitetracker.com/) - Fortnite Leaderboards / Stats
|
|
||||||
* [FortniteEXP](https://www.fortnitexp.net/) - Fortnite XP Progression / Leveling Rates
|
|
||||||
* [SaveTheWorldClaimer](https://github.com/PRO100KatYT/SaveTheWorldClaimer) - Fortnite Auto-Points Claimer
|
|
||||||
* [CrewLink](https://github.com/ottomated/CrewLink) - Among Us Proximity Chat
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Multiplayer Mods
|
|
||||||
|
|
||||||
* 🌐 **[Multiplayer Mods](https://docs.google.com/spreadsheets/d/e/2PACX-1vSV41AswEt3EpzSyd85YRVtoJaIIXWjtBy347dISJg4fs6xSNPqcgfsh76TxX_l-mnT7pjMlSqTW-87/pubhtml)** or [Unmoddable](https://unmoddable.com/) - Multiplayer Mods for Singleplayer Games
|
|
||||||
* [Plutonium](https://plutonium.pw/) - Black Ops 2 / MW3 Mod Project / [Discord](https://discord.gg/d95y8ah) / Requires Legit Copy
|
|
||||||
* [Venice Unleashed](https://veniceunleashed.net/) / [Discord](https://discord.com/invite/dpJwaVZ) or [Warsaw Revamped](https://warsaw-revamped.com/) / [Discord](https://discord.com/invite/C9Zrh4G) - Battlefield Mod Projects
|
|
||||||
* [BF2142 Reclamation](https://battlefield2142.co/) - BF2142 Multiplayer Project / [Discord](https://discord.gg/MEwBW9U)
|
|
||||||
* [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5)
|
|
||||||
* [Marne](https://marne.io/) - BF1 Multiplayer Project / [Discord](https://marne.io/discord)
|
|
||||||
* [Tilted Online](https://wiki.tiltedphoques.com/tilted-online/) / [GitHub](https://github.com/tiltedphoques/TiltedEvolution) - Multiplayer Skyrim & Fallout 4 / [Discord](https://discord.gg/skyrimtogether) / [Setup Guide](https://youtu.be/ytSftFoQQHA)
|
|
||||||
* [NV:MP](https://nv-mp.com/) - Fallout: New Vegas Multiplayer / [Discord](https://discordapp.com/invite/mKVdhmEDrW)
|
|
||||||
* [Nitrox](https://nitrox.rux.gg/) - Subnautica Multiplayer
|
|
||||||
* [CnCNet](https://cncnet.org/) - Multiplayer Command & Conquer / [Discord](https://discord.com/invite/aJRJFe5)
|
|
||||||
* [Old School RuneScape](https://oldschool.runescape.com/) - Classic Runescape / [Discord](https://discord.com/invite/osrs)
|
|
||||||
* [Mega Man Arena](https://www.megamanarena.com/) or [Megaman 2.5D](https://petersjostrand.com/) - Multiplayer Mega Man
|
|
||||||
* [NolfRevival](http://nolfrevival.tk/) - NOLF, NOLF 2 & Contract Jack
|
|
||||||
* [Toontown Rewritten](https://www.toontownrewritten.com/) or [Corporate Clash](https://corporateclash.net/) - Toontown Multiplayer Revivals
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Multiplayer Fixes
|
|
||||||
|
|
||||||
* ⭐ **[Online Fix](https://online-fix.me/)** - LAN Multiplayer Fix / [Discord](https://discord.gg/yExgFYncMD)
|
|
||||||
* ⭐ **[Playit.gg](https://playit.gg/)** - LAN Multiplayer Fix / [Discord](https://discord.gg/AXAbujx)
|
|
||||||
* ⭐ **[zerotier](https://www.zerotier.com/)** - LAN Multiplayer Fix
|
|
||||||
* [Radmin](https://www.radmin-vpn.com/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/8MapDM7m96)
|
|
||||||
* [Hamachi](https://vpn.net/) - LAN Multiplayer Fix
|
|
||||||
* [NetMaker](https://www.netmaker.io/) - LAN Multiplayer Fix
|
|
||||||
* [Team XLink](https://www.teamxlink.co.uk/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/XUS9n73KSP)
|
|
||||||
* [ZLOEmu](https://zloemu.net/) - LAN Multiplayer Fix
|
|
||||||
* [t7patch](https://github.com/shiversoftdev/t7patch) - Black Ops 3 Crash Fix
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Multiplayer Servers
|
|
||||||
|
|
||||||
* ⭐ **[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers
|
|
||||||
* [Server.pro](https://server.pro/) - Game Server Hosting
|
|
||||||
* [Impostor](https://impostor.github.io/Impostor/) - Among Us Private Server / [Discord](https://discord.com/invite/Mk3w6Tb)
|
|
||||||
* [VRCList](https://vrclist.com/) - Find VRChat Worlds / Signup Required
|
|
||||||
* [DiIiS](https://github.com/blizzless/blizzless-diiis) - Open-Source Diablo III Local Server
|
|
||||||
* [Insignia](https://insignia.live/) - Original Xbox Replacement Servers / [Discord](https://discord.gg/CWkdVdc)
|
|
||||||
* [Project Cartographer](https://www.halo2.online/) - Halo 2 Online Servers
|
|
||||||
* [Halo Custom Edition](https://www.haloce.org/) - Halo CE Online Servers
|
|
||||||
* [V4nguard (discord)](https://discord.com/invite/v4nguard-948590455715684393) - Alt Destiny 1 Servers
|
|
||||||
* [Overwatch-Server-Selector](https://github.com/foryVERX/Overwatch-Server-Selector) - Overwatch Server Selector
|
|
||||||
* [Northstar](https://thunderstore.io/c/northstar/), [2](https://northstar.tf/) - Titanfall 2 Server Hosting & Modding / [GitHub](https://github.com/R2Northstar/Northstar/releases) / [Guide](https://rentry.org/northstar-guide) / [Discord](https://discord.gg/CEszSguY3A)
|
|
||||||
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
|
|
||||||
* [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf)
|
|
||||||
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# ► Homebrew
|
|
||||||
|
|
||||||
* 🌐 **[Darthsternie](https://darthsternie.net/)** - Console Firmware / Exploit Archive
|
|
||||||
* 🌐 **[Emulators on Consoles](https://emulation.gametechwiki.com/index.php/Category:Emulators_on_consoles)** - List of Emulators for Consoles
|
|
||||||
* ⭐ **[Hacks.Guide](https://hacks.guide/)**, **[CFW Guide](https://cfw.guide/)**, [ConsoleMods.org](https://consolemods.org/) / [Discord](https://discord.gg/x5vEnkR4C8), [Digiex](https://digiex.net/forums/), [Homebrew Guides](https://rentry.co/Guides), [CFWaifu](https://www.cfwaifu.com/), [Homebrew General](https://www.homebrewgeneral.net/) or [Gamebrew](https://www.gamebrew.org/) - Homebrew Guides
|
|
||||||
* ⭐ **[Nintendo Homebrew](https://discord.gg/C29hYvh)** - Nintendo Homebrew Discord
|
|
||||||
* ⭐ **[GBATemp](https://gbatemp.net/)** - Homebrew Forum
|
|
||||||
* [/r/Homebrew](https://www.reddit.com/r/homebrew/) - Homebrew Subreddit
|
|
||||||
* [Game Boy Tech Page](https://web.archive.org/web/19990209041732/http://home.hiwaay.net/%7Ejfrohwei/gameboy/home.html) - Game Boy Tools
|
|
||||||
* [Game Boy Book Reader](https://www.mqp.com/fun/) - Game Boy Book Reader
|
|
||||||
* [NESC-SNESC-Modifications](https://github.com/KMFDManic/NESC-SNESC-Modifications) - NES, SNES & Playstation Mods
|
|
||||||
* [ModMyClassic](https://modmyclassic.com/) - Classic Console Mods
|
|
||||||
* [N64Brew](https://n64brew.dev/wiki/Main_Page) - N64 Homebrew Wiki
|
|
||||||
* [/r/XboxModding](https://www.reddit.com/r/XboxModding/) or [/r/XboxRetailHomebrew](https://www.reddit.com/r/XboxRetailHomebrew/) - Xbox Homebrew Subreddits
|
|
||||||
* [/r/XboxHomebrew](https://www.reddit.com/r/XboxHomebrew/) - Xbox One/Series Homebrew Subreddit
|
|
||||||
* [/r/360Hacks Guide](https://redd.it/8y9jql) - Xbox 360 Modding Guide
|
|
||||||
* [C-Xbox Tool](https://gbatemp.net/download/c-xbox-tool.7615/) - .XBE to ISO File Converter
|
|
||||||
* [NKit](https://wiki.gbatemp.net/wiki/NKit) - Disc Image Processor
|
|
||||||
* [NASOS](https://download.digiex.net/Consoles/GameCube/Apps/NASOSbeta1.rar) - Gamecube iso.dec to ISO Converter
|
|
||||||
* [NESDev](https://www.nesdev.org/) - NES / SNES Dev Homebrew Guides / Forum
|
|
||||||
* [hakchi2 CE](https://github.com/TeamShinkansen/Hakchi2-CE) / [Discord](https://discord.gg/UUvqsAR) - Add More Roms to NES/SNES Classic Mini
|
|
||||||
* [Easy Guide to Making Amiibo](https://redd.it/5ywlol) - How to Make Your Own Amiibo
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Switch Homebrew
|
|
||||||
|
|
||||||
* ⭐ **[Switch Guide](https://nh-server.github.io/switch-guide/)** - Switch Homebrew Guide
|
|
||||||
* ⭐ **[Switchway](https://switchway.net/)** - Switch Homebrew Guide
|
|
||||||
* [Switch Hacking Is Easy](https://rentry.org/SwitchHackingIsEasy) - Switch Homebrew Guide
|
|
||||||
* [/r/SwitchPirates](https://www.reddit.com/r/SwitchPirates/) or [/r/SwitchHacks](https://reddit.com/r/SwitchHacks) - Switch Homebrew Subreddits
|
|
||||||
* [LAN Play Status](http://lan-play.com/) or [Switch-LAN-Play](https://github.com/spacemeowx2/switch-lan-play) / [Discord](https://discord.gg/PUEmfV4) - Switch Multiplayer Servers
|
|
||||||
* [FlagBrew](https://flagbrew.org/) - Switch / [Discord](https://discord.com/invite/4Rv8DTzGFa)
|
|
||||||
* [NSP Forwarder](https://nsp-forwarder.n8.io/) - Switch NSP Forwarder
|
|
||||||
* [DeepSea](https://github.com/Team-Neptune/DeepSea) - Switch CFW Package
|
|
||||||
* [emuiibo](https://github.com/XorTroll/emuiibo) - Amiibo Emulator
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Wii U / Wii Homebrew
|
|
||||||
|
|
||||||
* ⭐ **[WiiBrew](https://wiibrew.org/)** - Wii Homebrew Wiki
|
|
||||||
* ⭐ **[WiiUBrew](https://wiiubrew.org/wiki/Main_Page)** - WiiU Homebrew Wiki
|
|
||||||
* ⭐ **[Wii U Hacks Guide](https://wiiu.hacks.guide/)** - Wii U Jailbreak Guide
|
|
||||||
* ⭐ **[Wii Hacks Guide](https://wii.hacks.guide/)** - Wii Jailbreak Guides
|
|
||||||
* ⭐ **[Wiimmfi](https://wiimmfi.de/)** or [WiiLink](https://wfc.wiilink24.com/) - Wii Multiplayer Servers
|
|
||||||
* [Pretendo](https://pretendo.network/) - Wii U Network Replacement / [Discord](https://invite.gg/pretendo)
|
|
||||||
* [/r/WiiUHacks](https://www.reddit.com/r/WiiUHacks/) - Wii U Homebrew Subreddit
|
|
||||||
* [/r/WiiHacks](https://www.reddit.com/r/WiiHacks/) - Wii Homebrew Subreddit
|
|
||||||
* [Open Shop Channel](https://oscwii.org/) - Wii Homebrew App Library
|
|
||||||
* [WBFStoISO](https://www.wbfstoiso.com/) - WBFS to ISO
|
|
||||||
* [WiiLink](https://www.wiilink24.com/) - WiiConnect24 Replacement
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ 3DS / DS Homebrew
|
|
||||||
|
|
||||||
* 🌐 **[DS Homebrew](https://ds-homebrew.com/)** - DS Homebrew Resources / [Wiki](https://wiki.ds-homebrew.com/) / [Discord](https://discord.com/invite/yD3spjv)
|
|
||||||
* ⭐ **[3DS Jailbreak Guide](https://3ds.hacks.guide/)** - 3DS Jailbreak Guide
|
|
||||||
* ⭐ **[DSi Jailbreak Guide](https://dsi.cfw.guide/)** - DSi Jailbreak Guide
|
|
||||||
* ⭐ **[Wiimmfi](https://wiimmfi.de/)** or [Kaeru Team](https://kaeru.world/) - DS Multiplayer Servers
|
|
||||||
* [Pretendo](https://pretendo.network/) - 3DS Network Replacement / [Discord](https://invite.gg/pretendo)
|
|
||||||
* [Universal DB](https://db.universal-team.net/) - 3DS / DS Modding Apps
|
|
||||||
* [Theme Plaza](https://themeplaza.art/themes) - 3DS Themes / [Discord](https://discord.com/invite/Pz25PX5vr5)
|
|
||||||
* [Artic Base](https://github.com/PabloMK7/ArticBaseServer) - Play Physical 3DS Games on Citra
|
|
||||||
* [BootNTR](https://github.com/Nanquitas/BootNTR) - Stream 3DS to PC or Mac / [Instructions](https://gbatemp.net/threads/3ds-screen-recording-without-a-capture-card-ntr-cfw-method.423445/)
|
|
||||||
* [/r/3DSPiracy](https://www.reddit.com/r/3dspiracy/) or [3DSHacks](https://reddit.com/r/3dshacks/) - 3DS Modding Subreddit
|
|
||||||
* [FlagBrew](https://flagbrew.org/) - 3DS Homebrew Apps / [Discord](https://discord.com/invite/4Rv8DTzGFa)
|
|
||||||
* [Luma3DS](https://github.com/LumaTeam/Luma3DS) - 3DS Custom Firmware
|
|
||||||
* [GodMode9](https://github.com/d0k3/GodMode9) - 3DS File Browser
|
|
||||||
* [Batch CIA 3DS Decryptor](https://gbatemp.net/threads/batch-cia-3ds-decryptor-a-simple-batch-file-to-decrypt-cia-3ds.512385/) - Decrypt 3DS Files
|
|
||||||
* [Rverse](https://discord.gg/wCvJSCxf4G) - 3DS Miiverse Recreation Discord Server
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Playstation Homebrew
|
|
||||||
|
|
||||||
* ⭐ **[PS4 Modding](https://youtu.be/vGhSgogxaG8)**, [PSX Hax](https://www.psxhax.com/), [PSDevWiki](https://www.psdevwiki.com/) or [Wololo](https://wololo.net/) - Playstation Modding Guides
|
|
||||||
* [Chiaki](https://git.sr.ht/~thestr4ng3r/chiaki) - PS4 / PS5 Remote Play Client
|
|
||||||
* [/r/PS5Homebrew](https://www.reddit.com/r/ps5homebrew/) - PS5 Homebrew Subreddit
|
|
||||||
* [/r/PS4Homebrew](https://www.reddit.com/r/ps4homebrew/) - PS4 Homebrew Subreddit
|
|
||||||
* [Exploit Host](https://github.com/Al-Azif/ps4-exploit-host) - PS4 Exploit Hosting
|
|
||||||
* [DarkSoftware](https://www.darksoftware.xyz/) - PS4 / PS3 Firmware
|
|
||||||
* [/r/PS3Homebrew](https://reddit.com/r/ps3homebrew) - PS3 Homebrew Subreddit
|
|
||||||
* [PS3 Disc Dumper](https://github.com/13xforever/ps3-disc-dumper) - Decrypted PS3 Disc Dumper
|
|
||||||
* [PS3 Game Updater](https://www.psx-place.com/threads/ps3-game-updater-v1-5-psn-liberator-v0-96b-rudi-rastelli-adds-ps3p-pkg-ripper-support.3766/), [Rusty Pan](https://github.com/RainbowCookie32/rusty-psn) or [Manually Updated](http://demo.aldostools.org/updates.html) - Update PS3 Games
|
|
||||||
* [PS3Themes](http://www.ps3-themes.com/) - PS3 Themes
|
|
||||||
* [PSONE](https://psone.online/) - Play PS1 Games Online / PS3 Required / [Discord](https://discord.com/invite/uhZuGX9)
|
|
||||||
* [PSXDev](https://www.psxdev.net/) - PS1 Development
|
|
||||||
* [MemcardRex](https://shendosoft.blogspot.com/2014/01/memcardrex-18-released.html?m=1) - PS1 Save Transfer Tools / [Archive](https://archive.org/details/MemcardRex1.8)
|
|
||||||
* [/r/VitaPiracy](https://www.reddit.com/r/VitaPiracy/) / [Discord](https://discord.gg/6Udcx2w) or [/r/VitaHacks](https://reddit.com/r/vitahacks/) - PSVita Homebrew Subreddits
|
|
||||||
* [PSP Archive](https://psp-archive.github.io/) - PSP Homebrew Archive / [Discord](https://discord.gg/VZcjFvy3mT)
|
|
||||||
* [VitaDB](https://vitadb.rinnegatamante.it/) - PS Vita Homebrews
|
|
||||||
* [Vita Volume](https://gitlab.com/sinful-butterfly/vita-volume) - Set PS Vita Volume without Buttons
|
|
||||||
* [PSPunk](https://www.pspunk.com/) - PSP Homebrew Info
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# ► Game Specific
|
|
||||||
|
|
||||||
* 🌐 **[Awesome Trackmania](https://github.com/EvoEsports/awesome-trackmania)** - Trackmania Resources
|
|
||||||
* ⭐ **[Super Mario Wiki](https://www.mariowiki.com/)** - Super Mario Wiki
|
|
||||||
* [Half Life Project Beta](https://hl2-beta.ru/?language=english) - Unreleased / Cut Half-Life Content
|
|
||||||
* [CyberCAT-SimpleGUI](https://github.com/Deweh/CyberCAT-SimpleGUI) - Cyberpunk 2077 Save Editor
|
|
||||||
* [Cyberpunk Hacker](https://cyberpunk-hacker.com/) - Cyberpunk 2077 Hacking Minigame Solver
|
|
||||||
* [Flowey's Time Machine](https://crumblingstatue.github.io/FloweysTimeMachine/) - Undertale Save Editor
|
|
||||||
* [Kirigiri's Palword](https://rentry.co/FMHYBase64#kirigiris-palword) - Palworld Releases
|
|
||||||
* [Palworld.gg](https://palworld.gg/), [PalworldTrainer.com](https://palworldtrainer.com/) or [Paldb.cc](https://paldb.cc/) - Palworld Databases
|
|
||||||
* [Palworld Host Save Fix](https://github.com/xNul/palworld-host-save-fix) - Palworld Save Bug Fix
|
|
||||||
* [The Halo Archive (Discord)](https://discord.gg/feB7RgAHBh) or [405th](https://www.405th.com/) - Halo Assets Archive
|
|
||||||
* [Grim Tools](https://www.grimtools.com/) - Grim Dawn Tools
|
|
||||||
* [Stardew.app](https://stardew.app/) - Stardew Valley Progress Tracker
|
|
||||||
* [Trackmania Replay Viewer](https://gbx.bigbang1112.cz/tool/replay-viewer) - View Trackmania Replays
|
|
||||||
* [ACPatterns](https://acpatterns.com/) - Animal Crossing Pattern Tool / [Discord](https://discord.com/invite/9rGkZNk)
|
|
||||||
* [Hard Drop](https://harddrop.com/wiki/Tetris_Wiki) or [Tetris.wiki](https://tetris.wiki/) - Tetris Wikis
|
|
||||||
* [Fumen](https://harddrop.com/fumen/) - Tetris Field Editor
|
|
||||||
* [Minesweepergame.com](https://minesweepergame.com/) and [Minesweeper.online Wiki](https://minesweeper.online/help/gameplay) - All about Minesweeper
|
|
||||||
* [WRCsetups](https://wrcsetups.com/) - WRC Setups
|
|
||||||
* [Peacock](https://github.com/thepeacockproject/Peacock) - Hitman World of Assassination Server Replacement
|
|
||||||
* [Useful Osu](https://github.com/CarbonUwU/Useful-osu) - Osu! Resources
|
|
||||||
* [Collection Manager](https://github.com/Piotrekol/CollectionManager) - Osu! Collection Manager
|
|
||||||
* [osu trainer](https://github.com/FunOrange/osu-trainer) - Osu! Trainer
|
|
||||||
* [danser-go](https://github.com/Wieku/danser-go) - Osu! Dancing Visualizer
|
|
||||||
* [SpinShare](https://spinsha.re/) - Spin Rhythm XD Custom Charts
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ MOBA Tools
|
|
||||||
|
|
||||||
* ⭐ **[OP.GG](https://www.op.gg/)** - LoL Player Background Check
|
|
||||||
* ⭐ **[U.GG](https://u.gg/)**, [LoLTheory](https://loltheory.gg/ ) or [LoLAlytics](https://lolalytics.com/) / [Discord](https://discord.com/invite/zKyaZ6w) - LoL Champion Builds / Tiers
|
|
||||||
* ⭐ **[Gol.gg](https://gol.gg/esports/home/)** - LoL Competitive Stats, All Regions
|
|
||||||
* ⭐ **[Tactics.tools](https://tactics.tools/)** / [Discord](https://discord.com/invite/K4Z6shucH8) or [MetaTFT](https://www.metatft.com/) / [Discord](https://discord.com/invite/RqN3qPy) - Team Fight Tactic Guides, Stats, Tools etc.
|
|
||||||
* [MobaFire](https://www.mobafire.com/) - LoL Champion Guides
|
|
||||||
* [ProBuilds](https://www.probuilds.net/) - LoL Pro Player Builds
|
|
||||||
* [LoL Math](https://lolmath.net/) - LoL Item Optimizer / [Discord](https://discord.com/invite/BpGpdzw)
|
|
||||||
* [iTero](https://www.itero.gg/) - LoL AI Coach
|
|
||||||
* [DraftGap](https://draftgap.com/) - LoL Draft Analysis Tools
|
|
||||||
* [Mobalytics](https://mobalytics.gg/) - Game Performance & Stats Analyzer
|
|
||||||
* [Porofessor](https://porofessor.gg/) - Live LoL Game Stats
|
|
||||||
* [ProStreams](https://prostreams.gg/) - Watch Pro LoL Twitch Streams
|
|
||||||
* [DotaBuff](https://www.dotabuff.com/), [Stratz](https://stratz.com/), [OpenDota](https://www.opendota.com/), [Dota2ProTracker](https://www.dota2protracker.com/) or [16-Bits](https://16-bits.org/) - Dota 2 Stat Trackers / Hero Guides
|
|
||||||
* [SmiteGuru](https://smite.guru/) - Smite Leaderboards
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Minecraft Tools
|
|
||||||
|
|
||||||
* 🌐 **[MCDOC](https://mcdoc.openm.tech/)** - Minecraft Tools & Unlockers / [Discord](https://dsc.gg/openms)
|
|
||||||
* 🌐 **[Awesome Minecraft](https://github.com/bs-community/awesome-minecraft)**, [Birdflop]( https://www.birdflop.com/resources/) or [Minecraft Tools](https://minecraft.tools/en/) - Minecraft Resources
|
|
||||||
* 🌐 **[Minecraft QOL Mods](https://rentry.co/mc-qol)** or [sk1er.club](https://sk1er.club/) - Quality of Life Mods
|
|
||||||
* 🌐 **[OptiFine Alternatives](https://optifine.alternatives.lambdaurora.dev/)** - OptiFine Alternatives for Fabric
|
|
||||||
* 🌐 **[ChunkBase](https://www.chunkbase.com/apps/)** - Minecraft Map Tools
|
|
||||||
* 🌐 **[TMC Links](https://gist.github.com/JoakimThorsen/e90bd7a588af25ae529530987d9acc8a)** - Technical Minecraft Resources
|
|
||||||
* 🌐 **[ShaderLABS](https://shaderlabs.org/wiki/Main_Page)** - Shader Comparisons and Resources
|
|
||||||
* 🌐 **[Minecraft TAS](https://minecrafttas.com/)** - All about Minecraft Tool-Assisted Speedruns
|
|
||||||
* ↪️ **[Minecraft Server Hosts / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_hosting)**
|
|
||||||
* ↪️ **[Minecraft Launchers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_launchers)** / [Beta](https://betacraft.uk/) / [Bedrock](https://bedrocklauncher.github.io/)
|
|
||||||
* ↪️ **[Minecraft Mods](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_mods)**
|
|
||||||
* ↪️ **[Minecraft Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_optimization_mods)**
|
|
||||||
* ⭐ **[Eaglercraft](https://eaglercraft.com/)** - Browser Minecraft / [Note](https://pastebin.com/wpDZzgN5) / [Source](https://git.eaglercraft.rip/eaglercraft) / [Client](https://eaglercraftx1-8.github.io/1.8/resent4.0/index.html) / [Mod Client](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Code Mods](https://eaglerforge-builder.vercel.app/) / [Servers](https://servers.eaglercraft.com/) / [Eaglercrack](https://eaglercrack.net/)
|
|
||||||
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** or [DigiMinecraft](https://www.digminecraft.com/) - Minecraft Resources / Guides
|
|
||||||
* ⭐ **[MCModdingGuide](https://rentry.org/MCModdingGuide)** - Minecraft Modding Guide
|
|
||||||
* ⭐ **[Couleur Tweak Tips](https://ctt.cx/)** - Minecraft Tweaks / Tips / [Discord](https://discord.gg/CTT)
|
|
||||||
* ⭐ **[spark](https://spark.lucko.me/)** - Minecraft Performance Profiler
|
|
||||||
* ⭐ **[MCPropertyEncyclopedia](https://joakimthorsen.github.io/MCPropertyEncyclopedia/)** - Block Property Encyclopedia
|
|
||||||
* ⭐ **[Villager Trading Cheatsheet](https://i.ibb.co/sKBjbzg/e9f8d80e2376.png)**
|
|
||||||
* ⭐ **[Minecraft Brewing Cheatsheet](https://minecraft.wiki/images/Minecraft_brewing_en.png)**
|
|
||||||
* [GamerGeeks](https://www.gamergeeks.net/) - Minecraft Tools / Calculators
|
|
||||||
* [Charm](https://svenhjol.github.io/Charm/), [Essential](https://essential.gg/) or [Quark](https://quarkmod.net/) - Minecraft Quality of Life Mods
|
|
||||||
* [MCPEDL](https://mcpedl.com/) - Minecraft PE/Bedrock Mods, Maps & Resources
|
|
||||||
* [Pax](https://github.com/froehlichA/pax) or [Mod Manager](https://github.com/kaniol-lck/modmanager) - Minecraft Mod Managers
|
|
||||||
* [Forgix](https://github.com/PacifistMC/Forgix) - Merge Mod Loaders
|
|
||||||
* [r/feedthebeast](https://reddit.com/r/feedthebeast/) - Minecraft Mod Discussion Subreddit
|
|
||||||
* [Vanillatweaks](https://www.vanillatweaks.net/), [Smithed](https://smithed.net/) or [VoodooBeard](https://mc.voodoobeard.com/) / [Discord](https://discord.gg/SnJQcfq) - Minecraft Data Packs
|
|
||||||
* [Minecraft Command Science](https://minecraftcommand.science/) or [MCStacker](https://mcstacker.net/) - Minecraft Command Generators
|
|
||||||
* [Minecraft Performance Flags](https://github.com/Mukul1127/Minecraft-Performance-Flags-Benchmarks) - Java Minecraft Benchmarks
|
|
||||||
* [Report Inspector](https://misode.github.io/report/) - Crash Report / Profiling Inspector
|
|
||||||
* [No Telemetry](https://modrinth.com/mod/no-telemetry) - Disable Telemetry Data
|
|
||||||
* [Data Pack Generators](https://misode.github.io/) - Minecraft Data Pack Generators
|
|
||||||
* [Distant Horizons](https://gitlab.com/jeseibel/distant-horizons) - Increased Minecraft Render Distance
|
|
||||||
* [ViveCraft](https://www.vivecraft.org/) - VR Minecraft
|
|
||||||
* [Skyclient](https://skyclient.co/) - Hypixel Asset Installer
|
|
||||||
* [SkyCrypt](https://sky.shiiyu.moe/) - SkyBlock Stats
|
|
||||||
* [Cubical](https://www.cubical.xyz/) / [Beta](https://beta.cubical.xyz/) - Minecraft Schematic Tool
|
|
||||||
* [Pixelart Builder](https://play.google.com/store/apps/details?id=com.electricfoal.photocrafter&hl=en&gl=US) or [PixelStacker](https://taylorlove.info/pixelstacker/) - Turn Photos into Minecraft Art
|
|
||||||
* [ReplayMod](https://replaymod.com/) - Record Minecraft Game Sessions / [GitHub](https://github.com/ReplayMod/ReplayMod)
|
|
||||||
* [GeyserMC](https://geysermc.org/) - Join Minecraft Java Servers with Bedrock Client / [Consoles](https://wiki.geysermc.org/geyser/using-geyser-with-consoles/)
|
|
||||||
* [Minecraft Server Scanner](https://github.com/Footsiefat/Minecraft-Server-Scanner) - Minecraft Server Info
|
|
||||||
* [Minecraft Server Checker](https://moistcatawumpus.github.io/minecraft-server-checker/) - Simple Server Checker
|
|
||||||
* [NameMC](https://namemc.com/) - Minecraft Name Availability Tracker
|
|
||||||
* [mcsrvstat](https://mcsrvstat.us/) - Server Status Updates
|
|
||||||
* [Forge](https://files.minecraftforge.net/), [Quilt](https://quiltmc.org/) or [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) - Minecraft Modding API
|
|
||||||
* [Mineflayer](https://prismarinejs.github.io/mineflayer/) - Minecraft Bot Creator
|
|
||||||
* [PVPRP](https://pvprp.com/) - Minecraft Texture Packs
|
|
||||||
* [ShadersMods](https://shadersmods.com/) or [MinecraftShader](https://minecraftshader.com/) - Minecraft Shaders
|
|
||||||
* [Iris Shaders](https://modrinth.com/mod/iris) - Fabric Shadermod for Minecraft
|
|
||||||
* [Block Palettes](https://www.blockpalettes.com/) or [Block Colors](https://blockcolors.app/) - Block Color Palettes
|
|
||||||
* [Laby](https://laby.net/) / [Discord](https://discord.com/invite/8JBMHDfWKp), [MinecraftSkins](https://www.minecraftskins.com/) or [MSkins](https://mskins.net/en) - Minecraft Skins
|
|
||||||
* [Ely.by](https://ely.by/) - Skin System / Authorization
|
|
||||||
* [Nova Skin](https://minecraft.novaskin.me/) or [Blockbench](https://www.blockbench.net/)- Minecraft Skin Editor
|
|
||||||
* [MinecraftCapes](https://minecraftcapes.net/) or [Capes](https://modrinth.com/mod/capes) - Minecraft Capes
|
|
||||||
* [Minecraft Armor Stand](https://haselkern.com/Minecraft-ArmorStand/) - Create Poses for Minecraft Armor
|
|
||||||
* [VoxelSphereGenerator](https://oranj.io/blog/VoxelSphereGenerator), [BDStudio](https://eszesbalint.github.io/bdstudio/editor) or [Minecraft Shapes](https://minecraftshapes.com/) - Minecraft Shape Tools / Voxel Editors
|
|
||||||
* [Custom-MC-Render-Cweeper](https://rentry.co/custom-mc-render-cweeper) - Custom 3D Model to Minecraft Render
|
|
||||||
* [MCprep](https://theduckcow.com/dev/blender/mcprep/) - Blender OBJ Import / Texturepacks / Character Rigging / Animations
|
|
||||||
* [DriveBackupV2](https://modrinth.com/plugin/drivebackupv2) - Minecraft Cloud Storage Backup
|
|
||||||
* [Amidst](https://github.com/toolbox4minecraft/amidst) - Minecraft World Overview Display Tool
|
|
||||||
* [The Minecraft Archive Project](https://map.crummy.com/) - Minecraft World Archive
|
|
||||||
* [Amulet](https://www.amuletmc.com/), [MCA Selector](https://github.com/Querz/mcaselector) or [uNmINeD](https://unmined.net/) - Minecraft Map Editors / Viewers
|
|
||||||
* [MineAtlas](http://mineatlas.com/), [Cubiomes Viewer](https://github.com/cubitect/cubiomes-viewer) or [MCSeeder](https://mcseeder.com/) - Minecraft Seeds
|
|
||||||
* [MinecraftMaps](https://www.minecraftmaps.com/) or [Mapcraft](https://mapcraft.me/) - Minecraft Maps
|
|
||||||
* [Minecraft Earth Map](https://earth.motfe.net/) - Earth Maps
|
|
||||||
* [MapartCraft](https://rebane2001.com/mapartcraft/) or [Cartographer](https://cartographer-mc.com/) - Mapart schematic / map.dat Generator
|
|
||||||
* [Chunker](https://chunker.app/) - Minecraft Format Converter (can corrupt worlds)
|
|
||||||
* [ObjtoSchematic](https://objtoschematic.com/) - Converts Minecraft Obj files to Schematics / [Discord](https://discord.com/invite/McS2VrBZPD)
|
|
||||||
* [NBT Studio](https://github.com/tryashtar/nbt-studio/ ) or [webNBT](https://irath96.github.io/webNBT/) - Minecraft NBT File Editors
|
|
||||||
* [TerraForged](https://github.com/TerraForged/TerraForged) - Improved Biomes Mod
|
|
||||||
* [Biomes-O-Plenty](https://github.com/Glitchfiend/BiomesOPlenty) - Extra Biomes Mod
|
|
||||||
* [Fabric-Bedrock-Miner](https://github.com/LXYan2333/Fabric-Bedrock-Miner) - Minecraft Bedrock Miner
|
|
||||||
* [Outvoted](https://modrinth.com/mod/outvoted) - Outvoted Minecraft Live Mobs
|
|
||||||
* [Voyager](https://voyager.minedojo.org/) - Minecraft AI
|
|
||||||
* [Enchant Order](https://iamcal.github.io/enchant-order/) - Minecraft Enchantment Ordering Tool
|
|
||||||
* [MiniMessageViewer](https://webui.advntr.dev/) - Format Plugin Messages
|
|
||||||
* [MinecraftJSON](https://www.minecraftjson.com/) - Minecraft Tellraw Generator
|
|
||||||
* [MCDF](https://mcdf.wiki.gg/) - Discontinued Minecraft Features Wiki
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Pokemon Tools
|
|
||||||
|
|
||||||
* 🌐 **[Awesome Pokémon](https://github.com/tobiasbueschel/awesome-pokemon)** - Curated List of Pokémon Resources
|
|
||||||
* ⭐ **[Bulbapedia](https://bulbapedia.bulbagarden.net/wiki/Main_Page)** - Pokémon Wiki
|
|
||||||
* ⭐ **[Serebii.net](https://www.serebii.net/)**, [Pokémon Database](https://pokemondb.net/) or [PocketMonsters.net](https://pocketmonsters.net/) - Pokémon Databases
|
|
||||||
* ⭐ **[PokeList](https://pokemonlist.netlify.app/)**, [Pokedex](https://github.com/skydoves/Pokedex) or [PokeAPI](https://pokeapi.co/) - Pokedexes
|
|
||||||
* ⭐ **[Pokémon Typechart](https://pokemondb.net/type)** - Pokémon Type Charts / [Image](https://img.pokemondb.net/images/typechart.png)
|
|
||||||
* ⭐ **[PokeMMO](https://pokemmo.com/en/)**, [DelugeRPG](https://www.delugerpg.com/), [Pokémon Legends Gods](https://www.pokemongods.com/) or [Pokémon Revolution Online](https://pokemonrevolution.net/) - Pokémon MMOs
|
|
||||||
* ⭐ **[Pokémon Showdown](https://pokemonshowdown.com/)** - Online Pokémon Battles
|
|
||||||
* [PokeCommunity](https://www.pokecommunity.com/) - Pokémon Community
|
|
||||||
* [Project Pokémon](https://projectpokemon.org/) - Pokémon Tools, Exploits, Saves etc.
|
|
||||||
* [PokeGB](https://github.com/binji/pokegb) - Pokémon Blue Emulator
|
|
||||||
* [PokemonLog](https://pokemonlog.com/), [PokeHarbor](https://www.pokeharbor.com/) or [Pokémon Coders](https://www.pokemoncoders.com/) - Hacked Pokémon ROMs
|
|
||||||
* [pret](https://github.com/orgs/pret/repositories) - Pokémon Disassembly / Decompilation Projects
|
|
||||||
* [PokéRogue](https://pokerogue.net/) - Pokémon Dungeon Crawler / [Discord](https://discord.com/invite/uWpTfdKG49)
|
|
||||||
* [Gearoid Pokémon](https://gearoid.me/pokemon/) - Pokémon Guessing Game
|
|
||||||
* [PKHeX](https://github.com/kwsch/PKHeX) - Pokémon Save File Editor
|
|
||||||
* [GameBanana](https://gamebanana.com/mods/games/14783) - Pokémon Brilliant Diamond / Shining Pearl Mods
|
|
||||||
* [Universal Pokémon Randomizer ZX](https://github.com/Ajarmar/universal-pokemon-randomizer-zx/) - Randomize Pokémon (works for GBA through 3DS)
|
|
||||||
* [NYCPokeMap](https://nycpokemap.com/) - Real-time Pokémon Go Map for NYC
|
|
||||||
* [PkmnCards](https://pkmncards.com/) - Pokémon Card Database
|
|
||||||
* [unite-db](https://unite-db.com/) - Pokémon Unite Database
|
|
||||||
* [HelixChamber](https://helixchamber.com/) - Unused Pokémon Material
|
|
||||||
* [Pokémon Fossil Museum](https://my.matterport.com/show/?m=P9WCbyCBGBM) - Explore Pokémon Fossil Museum
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Counter-Strike Tools
|
|
||||||
|
|
||||||
* ⭐ **[HLTV](https://www.hltv.org/)** - Counter-Strike News
|
|
||||||
* ⭐ **[CsWarzOnE](https://cswarzone.com/)** - Counter-Strike Downloads
|
|
||||||
* [CSGO Trader](https://csgotrader.app/) - CS:GO Trading Enhancements
|
|
||||||
* [ArminC-AutoExec](https://github.com/ArmynC/ArminC-AutoExec) - ArminC's CS2 Config
|
|
||||||
* [CS2 Browser](https://cs2browser.com/) or [CS2 Server Picker](https://github.com/FN-FAL113/cs2-server-picker) - Counter-Strike 2 Server Browser
|
|
||||||
* [Faceit](https://www.faceit.com/) - Matchmaking Client
|
|
||||||
* [Faceit Finder](https://faceitfinder.com/) - Faceit Account Finder
|
|
||||||
* [Repeek](https://repeek.gg/) - Faceit Enhancement Extension
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ GTA Tools
|
|
||||||
|
|
||||||
* 🌐 **[GTAAll](https://www.gtaall.com/)**, [GTAInside](https://gtainside.com/), [GameModding](https://gamemodding.com/), [GTAGarage](https://gtagarage.com/) or [LibertyCity](https://libertycity.net/) - GTA Mods, Walkthroughs & More
|
|
||||||
* 🌐 **[GTA5-Mods](https://www.gta5-mods.com/)** - GTAV Mods
|
|
||||||
* 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods
|
|
||||||
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy
|
|
||||||
* ⭐ **[San Andreas: Multiplayer](https://www.sa-mp.mp/)** - Multiplayer GTA:SA / [Discord](https://discord.com/invite/samp)
|
|
||||||
* ⭐ **[CLEO](https://cleo.li/)** - Extensible Library Plugin For GTA III, VC & SA / [Discord](https://discord.com/invite/d5dZSfgBZr)
|
|
||||||
* ⭐ **[SilentPatch](https://cookieplmonster.github.io/mods/gta/)** - Quality of Life Fixes For GTA III, VC & SA
|
|
||||||
* [Grand Theft Wiki](https://www.grandtheftwiki.com/Main_Page) - GTA Wiki
|
|
||||||
* [GTA Cars](https://gtacars.net/) - GTA Car Database / Stats
|
|
||||||
* [Rainbomizer](https://rainbomizer.com/) - GTA Randomizer Mods
|
|
||||||
* [OpenIV](https://openiv.com/) - Rockstar Game Modding Tool
|
|
||||||
* [Gillian's GTA](https://gillian-guide.github.io/) - GTA IV Modding Guide
|
|
||||||
* [GTA Connected](https://gtaconnected.com/) - Multiplayer Mod / GTA III, IV, VC, SC / [Discord](https://discord.gg/YSyasDa)
|
|
||||||
* [D.E.P](https://www.definitive-edition-project.com/) - Fix GTA PC Port Bugs
|
|
||||||
* [Vice City: Multiplayer](https://vc-mp.org/) - Mutiplayer GTA:VC
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Doom Tools
|
|
||||||
|
|
||||||
* ⭐ **[Doom Wiki](https://doomwiki.org/wiki/Entryway)** - Doom Wiki
|
|
||||||
* ⭐ **[ZDoom](https://www.zdoom.org/downloads)** - Doom Source Port
|
|
||||||
* ⭐ **[ZDaemon](https://www.zdaemon.org/)**, **[Doomseeker](https://doomseeker.drdteam.org/)**, [oDamex](https://odamex.net/), [DoomUtils](http://doomutils.ucoz.com/) or [Zandronum](https://zandronum.com/) - Online Multiplayer Doom
|
|
||||||
* [Realm667](https://www.realm667.com/index.php/en/) - Doom Mods
|
|
||||||
* [Classic DOOM](https://classicdoom.com/) or [DoomWorld](https://www.doomworld.com/) - Doom Downloads
|
|
||||||
* [Doom64 EX](https://doom64ex.wordpress.com/downloads/) - Doom 64 PC Port
|
|
||||||
* [dhewm3](https://dhewm3.org/) - Doom 3 Source Port
|
|
||||||
* [DoomsHack](https://doomshack.org/), [Doom Pastebin](https://pastebin.com/3DWF3Msq) or [Doom Wad Station](https://www.doomwadstation.net/) - Doom WADs
|
|
||||||
* [DOOM FX](https://github.com/RandalLinden/DOOM-FX) - Doom SNES Source Code
|
|
||||||
* [UltimateDoomBuilder](https://ultimatedoombuilder.github.io/) - Doom Map Builder
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Mario Kart Tools
|
|
||||||
|
|
||||||
* ⭐ **[Retro Rewind](https://discord.gg/qbr3Y4PJFH)** - Retro MKW Tracks / Multiplayer / [Wiki](https://wiki.tockdom.com/wiki/Retro_Rewind) / [Auto-Updater](https://github.com/patchzyy/WheelWizard/releases) / [Setup Guide](https://redd.it/1dzerns)
|
|
||||||
* ⭐ **[CTGP Revolution](https://www.chadsoft.co.uk/)** - Custom MKW Tracks / Multiplayer / Disc required
|
|
||||||
* ⭐ **[Mario Kart Midnight](https://wiki.tockdom.com/wiki/Mario_Kart_Midnight)** - Custom MKW Tracks / Multiplayer
|
|
||||||
* ⭐ **[MKWRs](https://mkwrs.com)** or [MKLeaderboards](https://www.mkleaderboards.com/) - Mario Kart Records / Videos
|
|
||||||
* ⭐ **[MKW Lobbies](https://wiimmfi.de/stats/mkw)** - Online MKW Lobbies
|
|
||||||
* [/r/MarioKart](https://www.reddit.com/r/mariokart/) or [/r/MarioKartWii](https://www.reddit.com/r/MarioKartWii/) - Mario Kart Subreddits
|
|
||||||
* [RiiBalanced](https://drive.google.com/file/d/1AKJH3s0YpxQ09eud0EEd2YVFJ56f9VuO/view) - Rebalanced MKW Mod / [Discord](https://discord.gg/YZxyK4f3EU)
|
|
||||||
* [TTs Online](https://redd.it/ie6gi7) - MKW Online Time Trials Mod
|
|
||||||
* [CTGPRecords](https://www.youtube.com/@CTGPRecords) - Custom Track Records / Videos
|
|
||||||
* [MaxVRList](https://maxvrlist.com/) - VR Leaderboards
|
|
||||||
* [xer](https://xer.fr/mkw) - MKW Item Probabilities
|
|
||||||
* Tockdom Wikis - [MKW](https://wiki.tockdom.com/wiki/Main_Page) / [MK8](https://mk8.tockdom.com/) / [MK3DS](https://mk3ds.com/) / [MKDS](https://wiki.dshack.org/) / [MKDD](https://mkdd.org/) - Custom Mario Kart Wikis
|
|
||||||
* [Custom Track Tutorial](https://wiki.tockdom.com/wiki/Custom_Track_Tutorial) - How-to Make Custom MKW Tracks
|
|
||||||
* [MKW Texture Hacks](https://wiki.tockdom.com/wiki/Texture_Hack_Distribution) - Custom MKW Textures
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Geometry Dash Tools
|
|
||||||
|
|
||||||
* 🌐 **[Cvolton Tools](https://github.com/Cvolton?tab=repositories)** - Multiple GD Tools
|
|
||||||
* ↪️ **[GD Demon Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_geometry_dash_demon_lists)**
|
|
||||||
* ⭐ **[Geode](https://geode-sdk.org/)** - Mod Menu & Modding Framework
|
|
||||||
* ⭐ **[GDDP](https://gddp.pro/)** or [GD Demon Ladder](https://gdladder.com/) - Practice & Improve Your Skills
|
|
||||||
* [Soluble Texture Packs](https://solubletexturepacks.com/) - GD Texture Packs / [Manager](https://geode-sdk.org/mods/geode.texture-loader/)
|
|
||||||
* [Spritesheet Splitter](https://gdcolon.com/gdsplitter/) - Split & Merge GD Spritesheets
|
|
||||||
* [GD Save Explorer](https://gdcolon.com/gdsave/) - View Detailed Stats & Data of Save Files
|
|
||||||
* [Song File Hub](https://songfilehub.com/home) - GD Songs & Mashups / [Discord](https://discord.com/invite/maSgd4zpEF)
|
|
||||||
* [Globed](https://geode-sdk.org/mods/dankmeme.globed2/) - GD Multiplayer Mod
|
|
||||||
* [GD Browser](https://gdbrowser.com/) - GD Level Browser
|
|
||||||
* [GD Font Generator](https://gdcolon.com/gdfont) - Generate Custom GD Logos & Messages
|
|
||||||
* [SPWN](https://spu7nix.net/spwn/#/) - GD Level Programming Language
|
|
||||||
* [GD Docs](https://docs.gd-programming.org/) - GD Programming Documentation
|
|
||||||
* [GD History](https://history.geometrydash.eu/) - GD Archival Project / [Downloader](https://github.com/Cvolton/GDHistory-Downloader)
|
|
||||||
* [GMD Private Server](https://github.com/Cvolton/GMDprivateServer) - Private Server Maker
|
|
||||||
* [Report Bugged 2.2 Levels](https://docs.google.com/forms/d/e/1FAIpQLScDKMIxPKeMxGpyDbQnsDDhW7ba0Lh4ZFAD4RA_ZIt5sbId9A/viewform)
|
|
||||||
* [3Dash](https://delugedrop.itch.io/3dash) - 3D Geometry Dash Game
|
|
||||||
* 3Dash Tools - [Patched Server](https://3dash.mg95.dev/) / [Demon List](https://3dashdl.pages.dev/#/) / [Challenge List](https://3dashdemonlist.github.io/Challenge/) / [Impossible Levels](https://3dashdemonlist.github.io/ILL/)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Roblox Tools
|
|
||||||
|
|
||||||
* 🌐 **[Roblox Archive](https://archive.roblonium.com/)** - Roblox Client Archive
|
|
||||||
* ⭐ **[Roblox Account Manager](https://github.com/ic3w0lf22/Roblox-Account-Manager)** - Roblox Account Manager
|
|
||||||
* ⭐ **[Rolimon's](https://www.rolimons.com/games)** or [RoMonitor Stats](https://romonitorstats.com/) - Roblox Experience Stats
|
|
||||||
* ⭐ **[Bloxstrap](https://bloxstrap.pizzaboxer.xyz/)** - Roblox Player Bootstrapper / **[GitHub](https://github.com/pizzaboxer/bloxstrap)**
|
|
||||||
* [Novetus](https://bitl.itch.io/novetus) - Self-Hosted Multi-version Roblox Client
|
|
||||||
* [Roblox Studio Mod Manager](https://github.com/MaximumADHD/Roblox-Studio-Mod-Manager) - Roblox Studio Bootstrapper
|
|
||||||
* [RoPro](https://ropro.io/), [Roblox+](https://chromewebstore.google.com/detail/roblox%20/jfbnmfgkohlfclfnplnlenbalpppohkm), [BTRoblox](https://twitter.com/AntiBoomz/status/1378597179556823040), [RoGold](https://rogold.live/) or [RoSeal](https://www.roseal.live/) - Enhance Roblox Website
|
|
||||||
* [RBXServers](https://rbxservers.xyz/) or [Freevipservers](https://freevipservers.net/) - Roblox VIP Servers
|
|
||||||
* [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) - Roblox APIs
|
|
||||||
* [ingame.clothing](https://ingame.clothing/) - Preview Avatar Clothing
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Terraria Tools
|
|
||||||
|
|
||||||
* ⭐ **[Terranion](https://yal.cc/r/terranion/)** - Terraria Wiki
|
|
||||||
* [Terraria Forum](https://forums.terraria.org/) - Terraria Community, Mods Help and more
|
|
||||||
* [TEdit](https://www.binaryconstruct.com/tedit), [terramap](https://terramap.github.io/), [TerraFirma](https://github.com/mrkite/TerraFirma/releases/) or [terraria-map-editor](https://tedit.github.io/terraria-map-editor-web/) - Map Viewers / Editors
|
|
||||||
* [Terrasavr](https://yal.cc/r/terrasavr/) - Terraria Character Editor
|
|
||||||
* [Increased FOV](https://gamebanana.com/tuts/14022) - Increase Terraria FOV for 21:9 Monitors
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Gacha Tools
|
|
||||||
|
|
||||||
* 🌐 **[Paimon.moe](https://paimon.moe/)** or [Honey Impact](https://genshin.honeyhunterworld.com/) - Genshin Impact Resources / Tools
|
|
||||||
* 🌐 **[Honkai.gg](https://honkai.gg/)** - Honkai Star Rail Resources / Tools
|
|
||||||
* ⭐ **[Prydwen](https://www.prydwen.gg/)** - Gacha Game Guides / [Discord](https://discord.gg/prydwen)
|
|
||||||
* ⭐ **[Keqingmains](https://keqingmains.com/)** - Genshin Guides
|
|
||||||
* ⭐ **[GIMI](https://github.com/SilentNightSound/GI-Model-Importer)** - Genshin Impact Modding Tool / [Gamebanana Page](https://gamebanana.com/games/8552) / [Discord](https://discord.gg/agmg)
|
|
||||||
* [/r/GachaGaming](https://www.reddit.com/r/gachagaming/) - Gacha Games Subreddit
|
|
||||||
* [LunarCore](https://github.com/Melledy/LunarCore) - Private Honkai: Star Rail Servers
|
|
||||||
* [Star Rail Station](https://starrailstation.com/), [Pokke's Library](https://pokkelibrary.com/) or [stardb.gg](https://stardb.gg/) - Honkai Star Rail Guides
|
|
||||||
* [Seelie.me](https://seelie.me/) - Genshin / Star Rail Planner
|
|
||||||
* [Genshin Center](https://genshin-center.com/) - Genshin Planner
|
|
||||||
* [Genshin Optimizer](https://frzyc.github.io/genshin-optimizer/) - Genshin Impact Calculator / Artifact Optimizer
|
|
||||||
* [Genshin Helper Doc](https://docs.google.com/spreadsheets/d/1gNxZ2xab1J6o1TuNVWMeLOZ7TPOqrsf3SshP5DLvKzI/htmlview?pru=AAABdXYM80o*xMxXJdNbCCZ-v9FLVh6EXg) - Genshin Builds Guide
|
|
||||||
* [Grasscutter](https://grasscutter.io/) - Private Genshin Impact Servers / [Discord](https://discord.gg/T5vZU6UyeG)
|
|
||||||
* [Genshin Impact FPS Unlocker](https://github.com/34736384/genshin-fps-unlock) - Unlock Genshin Impact FPS Cap
|
|
||||||
* [Hoyolab Teyvat Interactive Map](https://act.hoyolab.com/ys/app/interactive-map/index.html), [Mapgenie Teyvat Interactive Map](https://mapgenie.io/genshin-impact) or [Genshin Impact Map](https://genshin-impact-map.appsample.com/) - Genshin Impact Maps
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
## ▷ Tabletop Tools
|
|
||||||
|
|
||||||
* 🌐 **[Awesome TTRPG](https://github.com/Zireael07/awesome-tabletop-rpgs)** - Online TTRPGs / Resources
|
|
||||||
* 🌐 **[5ETools](https://5e.tools/)**, [Roll for Fantasy](https://rollforfantasy.com/), [Kassoon](https://www.kassoon.com/dnd/) or [DragonsFoot](https://www.dragonsfoot.org/) - TTRPG Tools
|
|
||||||
* ⭐ **[dice.run](https://dice.run/)**, [Random Dice](http://www.dicesimulator.com/), [Desktop Dice](https://girkovarpa.itch.io/desktopdice) or [Google Dice](https://g.co/kgs/fVJuzq) - Dice Simulators
|
|
||||||
* ⭐ **[Kanka](https://kanka.io/en-US)** - Tabletop RPG Manager
|
|
||||||
* [RPG.net](https://forum.rpg.net/) - RPG Forums
|
|
||||||
* [Adventurer's Codex](https://adventurerscodex.com) - Online D&D 5e Campaign Manager / System
|
|
||||||
* [NaturalCrit](https://www.naturalcrit.com/) - Create D&D Homebrews / Badges
|
|
||||||
* [FantasiaArchive](https://fantasiaarchive.com/) - World Building / Documenting Tool
|
|
||||||
* [DnD World Building](https://arcadia.net/Cruinne/DnD/Articles/worldbuilding.html) - Fantasy World Building Guides
|
|
||||||
* [The Acaeum](https://www.acaeum.com/) - Dungeons & Dragons Database
|
|
||||||
* [Archives of Nethys](https://aonprd.com/) - Pathfinder Database
|
|
||||||
* [WarGamer](https://www.wargamer.com/) - Tabletop RPG Guides
|
|
||||||
* [Roll20](https://roll20.net/) or [Rolisteam](https://rolisteam.org/) - Tabletop RPG Streaming
|
|
||||||
* [Tabletopy](https://tabletopy.com/) - Tabletop RPG Soundboard
|
|
||||||
* [Map Generator](https://emptybuttons.itch.io/map-generator) - Tabletop Roleplaying Map Generator
|
|
||||||
* [MOGG](http://img.mogg.fr/HIRES/) - Magic The Gathering Card Scans
|
|
621
img-tools.md
621
img-tools.md
File diff suppressed because it is too large
Load Diff
50
index.md
50
index.md
@ -8,8 +8,8 @@ hero:
|
|||||||
text: freemediaheckyeah
|
text: freemediaheckyeah
|
||||||
tagline: The largest collection of free stuff on the internet!
|
tagline: The largest collection of free stuff on the internet!
|
||||||
prelink:
|
prelink:
|
||||||
title: Check out Retro Rewind!
|
title: Monthly Updates [Feb 2024]
|
||||||
link: /posts/Retro-Rewind
|
link: /posts/feb-2024
|
||||||
image:
|
image:
|
||||||
src: /test.png
|
src: /test.png
|
||||||
alt: FMHY Icon
|
alt: FMHY Icon
|
||||||
@ -26,55 +26,19 @@ hero:
|
|||||||
|
|
||||||
features:
|
features:
|
||||||
- title: Movies / TV / Anime
|
- title: Movies / TV / Anime
|
||||||
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#7aa2f7" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><rect width="20" height="15" x="2" y="7" rx="2" ry="2"/><path d="m17 2l-5 5l-5-5"/></g></svg>
|
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#31373D" d="M35 31s0 4-4 4H5c-4 0-4-4-4-4V12c0-4 4-4 4-4h26s4 0 4 4v19z"/><path fill="#31373D" d="M21.303 10.389a.999.999 0 1 1-1.414 1.414l-9.192-9.192a.999.999 0 1 1 1.414-1.414l9.192 9.192z"/><path fill="#31373D" d="M14.697 10.389a.999.999 0 1 0 1.414 1.414l9.192-9.192a.999.999 0 1 0-1.414-1.414l-9.192 9.192z"/><path fill="#55ACEE" d="M18 11c8 0 10 1 11 2s2 3 2 8s-1 7-2 8s-3 2-11 2s-10-1-11-2s-2-3-2-8s1-7 2-8s3-2 11-2z"/><circle cx="31.5" cy="31.5" r="1.5" fill="#66757F"/><circle cx="4.5" cy="31.5" r="1.5" fill="#66757F"/></svg>
|
||||||
link: /videopiracyguide
|
link: /videopiracyguide
|
||||||
details: Stream, download, torrent and binge all your favourites movies or shows!
|
details: Download, stream, torrent and binge all your favourites movies or shows!
|
||||||
- title: Music / Podcasts / Radio
|
- title: Music / Podcasts / Radio
|
||||||
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#ad7fa8" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M9 18V5l12-2v13M9 9l12-2"/><circle cx="6" cy="18" r="3"/><circle cx="18" cy="16" r="3"/></g></svg>
|
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#5DADEC" d="M14.182.168L7.818 1.469A1.07 1.07 0 0 0 7 2.471v15.857A6.226 6.226 0 0 0 5 18c-2.762 0-5 1.741-5 3.889c0 2.147 2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H10V6.477l4.182-.855A1.07 1.07 0 0 0 15 4.62V.835c0-.459-.368-.76-.818-.667zm21 4l-6.363 1.301c-.451.092-.819.543-.819 1.002v15.857A6.198 6.198 0 0 0 26 22c-2.762 0-5 1.741-5 3.889c0 2.147 2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H31V10.477l4.182-.855A1.07 1.07 0 0 0 36 8.62V4.835c0-.459-.368-.76-.818-.667z"/><path fill="#5DADEC" d="m23.182 10.167l-6.363 1.301c-.451.093-.819.544-.819 1.003v15.857A6.198 6.198 0 0 0 14 28c-2.762 0-5 1.741-5 3.889s2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H19V16.477l4.182-.855A1.07 1.07 0 0 0 24 14.62v-3.785c0-.459-.368-.76-.818-.668z"/></svg>
|
||||||
link: /audiopiracyguide
|
link: /audiopiracyguide
|
||||||
details: Stream, download and torrent songs, podcasts and more!
|
details: Stream, download and torrent songs, podcasts and more!
|
||||||
- title: Games / Emulation
|
- title: Games / Emulation
|
||||||
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#73d216" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M6 12h4m-2-2v4m7-1h.01M18 11h.01"/><rect width="20" height="12" x="2" y="6" rx="2"/></g></svg>
|
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#31373D" d="m2.13 14.856l-.004-.002S.075 27.271.075 29.061c0 1.824 1.343 3.302 3 3.302c.68 0 1.3-.258 1.803-.678l10.166-8.938L2.13 14.856zm31.69 0l.004-.002s2.051 12.417 2.051 14.207c0 1.824-1.343 3.302-3 3.302c-.68 0-1.3-.258-1.803-.678l-10.166-8.938l12.914-7.891z"/><g fill="#14171A"><circle cx="25.975" cy="15.551" r="8.5"/><circle cx="9.975" cy="15.551" r="8.5"/><path d="M9.975 7.051h16v16.87h-16z"/></g><circle cx="13.075" cy="23.301" r="5" fill="#14171A"/><circle cx="22.875" cy="23.301" r="5" fill="#14171A"/><circle cx="22.875" cy="23.301" r="3" fill="#67757F"/><circle cx="13.075" cy="23.301" r="3" fill="#67757F"/><circle cx="25.735" cy="11.133" r="1.603" fill="#FFCC4D"/><circle cx="25.735" cy="17.607" r="1.603" fill="#77B255"/><circle cx="22.498" cy="14.37" r="1.603" fill="#50A5E6"/><circle cx="28.972" cy="14.37" r="1.603" fill="#DD2E44"/><path fill="#8899A6" d="M11.148 12.514v-2.168a.505.505 0 0 0-.505-.505H9.085a.505.505 0 0 0-.505.505v2.168l1.284 1.285l1.284-1.285zm-2.569 3.63v2.168c0 .279.226.505.505.505h1.558a.505.505 0 0 0 .505-.505v-2.168l-1.284-1.285l-1.284 1.285zm5.269-3.1H11.68l-1.285 1.285l1.285 1.285h2.168a.506.506 0 0 0 .505-.505V13.55a.506.506 0 0 0-.505-.506zm-5.799 0H5.88a.506.506 0 0 0-.505.505v1.558c0 .279.226.505.505.505h2.168l1.285-1.285l-1.284-1.283z"/></svg>
|
||||||
link: /gamingpiracyguide
|
link: /gamingpiracyguide
|
||||||
details: Download and play all your favourite games or emulate some old but gold ones!
|
details: Download and play all your favourite games or emulate some old but gold ones!
|
||||||
- title: Book / Comics / Manga
|
- title: Book / Comics / Manga
|
||||||
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="#fcaf3e" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M8 3H2v15h7c1.7 0 3 1.3 3 3V7c0-2.2-1.8-4-4-4m8 9l2 2l4-4"/><path d="M22 6V3h-6c-2.2 0-4 1.8-4 4v14c0-1.7 1.3-3 3-3h7v-2.3"/></g></svg>
|
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#553788" d="M15 31c0 2.209-.791 4-3 4H5c-4 0-4-14 0-14h7c2.209 0 3 1.791 3 4v6z"/><path fill="#9266CC" d="M34 33h-1V23h1a1 1 0 1 0 0-2H10c-4 0-4 14 0 14h24a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M34.172 33H11c-2 0-2-10 0-10h23.172c1.104 0 1.104 10 0 10z"/><path fill="#99AAB5" d="M11.5 25h23.35c-.135-1.175-.36-2-.678-2H11c-1.651 0-1.938 6.808-.863 9.188C9.745 29.229 10.199 25 11.5 25z"/><path fill="#269" d="M12 8a4 4 0 0 1-4 4H4C0 12 0 1 4 1h4a4 4 0 0 1 4 4v3z"/><path fill="#55ACEE" d="M31 10h-1V3h1a1 1 0 1 0 0-2H7C3 1 3 12 7 12h24a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M31.172 10H8c-2 0-2-7 0-7h23.172c1.104 0 1.104 7 0 7z"/><path fill="#99AAB5" d="M8 5h23.925c-.114-1.125-.364-2-.753-2H8C6.807 3 6.331 5.489 6.562 7.5C6.718 6.142 7.193 5 8 5z"/><path fill="#F4900C" d="M20 17a4 4 0 0 1-4 4H6c-4 0-4-9 0-9h10a4 4 0 0 1 4 4v1z"/><path fill="#FFAC33" d="M35 19h-1v-5h1a1 1 0 1 0 0-2H15c-4 0-4 9 0 9h20a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M35.172 19H16c-2 0-2-5 0-5h19.172c1.104 0 1.104 5 0 5z"/><path fill="#99AAB5" d="M16 16h19.984c-.065-1.062-.334-2-.812-2H16c-1.274 0-1.733 2.027-1.383 3.5c.198-.839.657-1.5 1.383-1.5z"/></svg>
|
||||||
link: /readingpiracyguide
|
link: /readingpiracyguide
|
||||||
details: Whether you're a bookworm, otaku or comic book fan, you'll be able to find your favourite pieces of literature here for free!
|
details: Whether you're a bookworm, otaku or comic book fan, you'll be able to find your favourite pieces of literature here for free!
|
||||||
---
|
---
|
||||||
|
|
||||||
<script setup>
|
|
||||||
import { onMounted } from 'vue'
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
var preferredKawaii
|
|
||||||
try {
|
|
||||||
preferredKawaii = localStorage.getItem('uwu')
|
|
||||||
} catch (err) {}
|
|
||||||
const urlParams = new URLSearchParams(window.location.search)
|
|
||||||
const kawaii = urlParams.get('uwu')
|
|
||||||
const setKawaii = () => {
|
|
||||||
const images = document.querySelectorAll('.VPImage.image-src')
|
|
||||||
images.forEach((img) => {
|
|
||||||
img.src = '/logo-uwu.svg'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
if (kawaii === 'true') {
|
|
||||||
try {
|
|
||||||
localStorage.setItem('uwu', true)
|
|
||||||
} catch (err) {}
|
|
||||||
console.log('uwu mode enabled. Disable with "?uwu=false".');
|
|
||||||
setKawaii()
|
|
||||||
} else if (kawaii === 'false') {
|
|
||||||
try {
|
|
||||||
localStorage.removeItem('uwu', false)
|
|
||||||
} catch (err) {}
|
|
||||||
const images = document.querySelectorAll('.VPImage.image-src')
|
|
||||||
images.forEach((img) => {
|
|
||||||
img.src = '/test.png'
|
|
||||||
})
|
|
||||||
} else if (preferredKawaii) {
|
|
||||||
setKawaii()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
18
package.json
18
package.json
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "fmhy",
|
"name": "fmhy",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"packageManager": "pnpm@9.4.0",
|
"packageManager": "pnpm@8.15.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"docs:dev": "vitepress dev",
|
"docs:dev": "vitepress dev",
|
||||||
"docs:build": "vitepress build",
|
"docs:build": "vitepress build",
|
||||||
@ -12,14 +12,13 @@
|
|||||||
"api:preview": "node .output/server/index.mjs",
|
"api:preview": "node .output/server/index.mjs",
|
||||||
"og:dev": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev",
|
"og:dev": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev",
|
||||||
"format": "prettier -w --cache --check .",
|
"format": "prettier -w --cache --check .",
|
||||||
"lint": "biome lint .",
|
"lint": "eslint .vitepress -f pretty --cache",
|
||||||
"lint:fix": "biome lint . --write",
|
|
||||||
"lint:fix:unsafe": "biome lint . --write --unsafe",
|
|
||||||
"postinstall": "nitropack prepare"
|
"postinstall": "nitropack prepare"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@headlessui/vue": "^1.7.22",
|
"@headlessui/vue": "^1.7.17",
|
||||||
"@resvg/resvg-js": "^2.6.0",
|
"@resvg/resvg-js": "^2.6.0",
|
||||||
|
"vitepress": "npm:@taskylizard/vitepress@1.0.10",
|
||||||
"consola": "^3.2.3",
|
"consola": "^3.2.3",
|
||||||
"feed": "^4.2.2",
|
"feed": "^4.2.2",
|
||||||
"fs-extra": "^11.2.0",
|
"fs-extra": "^11.2.0",
|
||||||
@ -29,21 +28,18 @@
|
|||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
"pathe": "^1.1.2",
|
"pathe": "^1.1.2",
|
||||||
"unocss": "^0.58.4",
|
"unocss": "^0.58.4",
|
||||||
"vitepress": "npm:@taskylizard/vitepress@1.1.1",
|
|
||||||
"vue": "^3.4.15",
|
"vue": "^3.4.15",
|
||||||
"x-satori": "^0.1.5",
|
"x-satori": "^0.1.5",
|
||||||
"zod": "^3.22.4"
|
"zod": "^3.22.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^1.8.3",
|
|
||||||
"@iconify-json/carbon": "^1.1.28",
|
"@iconify-json/carbon": "^1.1.28",
|
||||||
"@iconify-json/heroicons-solid": "^1.1.11",
|
|
||||||
"@iconify-json/twemoji": "^1.1.15",
|
"@iconify-json/twemoji": "^1.1.15",
|
||||||
"@taskylizard/biome-config": "^1.0.1",
|
"@taskylizard/eslint-config": "^1.1.1",
|
||||||
"@types/fs-extra": "^11.0.4",
|
"@types/fs-extra": "^11.0.4",
|
||||||
"@types/node": "^20.11.15",
|
"@types/node": "^20.11.15",
|
||||||
"@types/nprogress": "^0.2.3",
|
"@types/nprogress": "^0.2.3",
|
||||||
"prettier": "^3.2.4",
|
"eslint": "^8.56.0",
|
||||||
"tailwindcss": "^3.4.4"
|
"prettier": "^3.2.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
9665
pnpm-lock.yaml
9665
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
@ -1,99 +0,0 @@
|
|||||||
---
|
|
||||||
title: Mario Kart Wii Retro Rewind
|
|
||||||
description: Retro Rewind
|
|
||||||
date: 2024-07-09
|
|
||||||
next: false
|
|
||||||
aside: left
|
|
||||||
prev: false
|
|
||||||
sidebar: false
|
|
||||||
footer: true
|
|
||||||
---
|
|
||||||
# What is Retro Rewind?
|
|
||||||
|
|
||||||
[Retro Rewind](https://discord.gg/qbr3Y4PJFH) is a Mario Kart Wii custom track distribution that features ***every retro track*** from Super Mario Kart to Mario Kart 7, as well as some from Mario Kart 8 and Mario Kart Tour, totaling 152. Retro Rewind can be played online in public rooms with Dolphin Emulator, a Wii or WiiU.
|
|
||||||
|
|
||||||
It also features many [enhancements](https://ibb.co/RCckmdT) such as:
|
|
||||||
|
|
||||||
* Max VR has been increased from 9999 to 30000.
|
|
||||||
* Thunderclouds are now [Mega Clouds](https://i.imgur.com/8H54rGH.mp4), which give Mega Mushrooms, rather than shrinking.
|
|
||||||
* Added (optional) inside drift to all vehicles, meaning more of them are competitive.
|
|
||||||
* Outside drift bikes have an extra level of mini turbo, and karts have three levels, similar to MK8DX.
|
|
||||||
* Vehicles can brake while drifting, making all tracks playable, and more vehicles viable.
|
|
||||||
* Ability to change or randomize vehicle/character combo between races.
|
|
||||||
* Significantly faster menu animations and load times between races.
|
|
||||||
* A online multiplayer version of Time Trials has been added.
|
|
||||||
* Unpopular modes like 100cc and mirror have been removed from online.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# PC Setup Guide
|
|
||||||
|
|
||||||
1. Download Mario Kart Wii, or [dump your disc](https://youtu.be/36nNq49tfSM).
|
|
||||||
1. Download [Dolphin](https://dolphin-emu.org/download/) and [extract it](https://fmhy.net/file-tools#file-archivers).
|
|
||||||
1. Open Dolphins controller tab, set [gamecube port](https://i.ibb.co/SXtDkXt/image.png) to standard, press configure, and select your controller in the drop down menu. Go back to the controller tab, set [Wii Remote 1](https://i.ibb.co/wYk0R4L/image.png) to "Emulated Wii Remote," press configure, and select your mouse from the dropdown menu.
|
|
||||||
1. Download [WheelWizard](https://github.com/patchzyy/WheelWizard/releases), go to settings, set the 3 paths, click save, select home, run the installer.
|
|
||||||
1. Go back to settings, select "Launch Mii channel," create a Mii to use for your license, and that's it, you can now launch and play Retro Rewind via WheelWizard!
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Wii / WiiU Setup Guide
|
|
||||||
|
|
||||||
**Note** - This method requires a disc.
|
|
||||||
|
|
||||||
1. Install the Homebrew Channel using this [guide for Wii](https://wii.hacks.guide/) or this [guide for WiiU](https://youtu.be/w44Iz3HQuIo).
|
|
||||||
1. Download [Retro Rewind](https://discord.gg/UxHmgNdPxw) and drag the files to your SD card.
|
|
||||||
1. Plug your SD card into your Wii and launch Homebrew.
|
|
||||||
1. You can launch Retro Rewind from here, but follow the steps below get get a Wii system channel / updater.
|
|
||||||
1. Launch YAWM Modmii in Homebrew, select your SD card, and install the RetroRewind.wad for the console you're on. Thats it, you now have a Retro Rewind system channel and updater. If the channel updater wont work just download the files manually and replace them in your SD.
|
|
||||||
|
|
||||||
**[Video Guide](https://youtu.be/qH4ou21r8ic)**
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Things to Note
|
|
||||||
|
|
||||||
* WheelWizard can be slow, especially if you're installing RR for the first time, so it may be worth doing [manually](https://youtu.be/ZiQ7WAOlJOk) instead to speed up the process.
|
|
||||||
|
|
||||||
* You need to turn on things like inside drift, brake drifting, fast menus, and finishing times in the Retro Rewind settings.
|
|
||||||
|
|
||||||
* Retro Rewind uses a modified version of WiiLink, meaning it does NOT require a NAND to play online with Dolphin.
|
|
||||||
|
|
||||||
* If using your mouse as a wiimote isn't working well, try switching to "above tv" in Wii settings.
|
|
||||||
|
|
||||||
* To use a real gamecube controller on PC you'll need an [adapter](https://dolphin-emu.org/docs/guides/how-use-official-gc-controller-adapter-wii-u/).
|
|
||||||
|
|
||||||
* Online multiplayer Time Trials can be enabled in the top right of WheelWizard, or by right clicking mario kart in dolphin, selecting run with riivolution patches, enabling online TTs, and running the game.
|
|
||||||
|
|
||||||
* Open-Host can be enabled by pressing start or + on the Retro WFC friend menu. This will allow anyone to join your games via friend code, even if you don't have them added yourself.
|
|
||||||
|
|
||||||
* If you don't know anything about Mario Kart Wii, or why it has a cult following 16 years after its release, I'd suggest checking out [TWD98](https://www.youtube.com/@TWD98). Troy plays a lot, so its a good way to learn about the game and improve.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
**Official Wiki**
|
|
||||||
|
|
||||||
https://wiki.tockdom.com/wiki/Retro_Rewind
|
|
||||||
|
|
||||||
**Discord Servers**
|
|
||||||
|
|
||||||
main: https://discord.gg/qbr3Y4PJFH
|
|
||||||
|
|
||||||
zpl: https://discord.gg/jczByGAqb6
|
|
||||||
|
|
||||||
**YouTube Channel**
|
|
||||||
|
|
||||||
https://www.youtube.com/@ZPL__/
|
|
||||||
|
|
||||||
**Online Rooms**
|
|
||||||
|
|
||||||
https://kevinvg207.github.io/rr-rooms/
|
|
||||||
|
|
||||||
https://ppeb.me/RetroRewind/
|
|
||||||
|
|
||||||
**Guide Links**
|
|
||||||
|
|
||||||
https://redd.it/1dzerns
|
|
||||||
|
|
||||||
https://fmhy.net/posts/Retro-Rewind
|
|
||||||
|
|
||||||
---
|
|
@ -1,88 +0,0 @@
|
|||||||
---
|
|
||||||
title: Monthly Updates [April]
|
|
||||||
description: April 2024 updates
|
|
||||||
date: 2024-04-01
|
|
||||||
next: false
|
|
||||||
aside: left
|
|
||||||
prev: false
|
|
||||||
sidebar: false
|
|
||||||
footer: true
|
|
||||||
---
|
|
||||||
|
|
||||||
# Wiki Updates
|
|
||||||
|
|
||||||
- Split Android Tools into subsections:
|
|
||||||
[Optimization](https://fmhy.net/android-iosguide#optimization), [Battery](https://fmhy.net/android-iosguide#battery-tools), [Keyboard](https://fmhy.net/android-iosguide#keyboard-text), [Screen](https://fmhy.net/android-iosguide#screen-tools), [Files](https://fmhy.net/android-iosguide#android-file-tools),
|
|
||||||
[Root / Flash](https://fmhy.net/android-iosguide#root-flash), [Productivity](https://fmhy.net/android-iosguide#productivity-calendars), [Maps](https://fmhy.net/android-iosguide#maps-location), [Notifications](https://fmhy.net/android-iosguide#notifications-widgets) and [Social Media](https://fmhy.net/android-iosguide#social-media-apps).
|
|
||||||
|
|
||||||
- Added [Abandonware](https://fmhy.net/gamingpiracyguide#abandonware), [MOBA](https://fmhy.net/gamingpiracyguide#moba-tools), [Gacha](https://fmhy.net/gamingpiracyguide#gacha-tools), [Counter-Strike](https://fmhy.net/gamingpiracyguide#counter-strike-tools), [Doom](https://fmhy.net/gamingpiracyguide#doom-tools) and [Controller Tool](https://fmhy.net/gamingpiracyguide#controller-tools) sections to Gaming.
|
|
||||||
|
|
||||||
- Added [Toys / Figures](https://fmhy.net/miscguide#toys-figures) section to Shopping.
|
|
||||||
|
|
||||||
- Added [Manga](https://fmhy.net/android-iosguide#android-manga) section to Android Reading.
|
|
||||||
|
|
||||||
- Added [MPV Shaders](https://fmhy.net/storage#mpv-shaders) section to Video Tools.
|
|
||||||
|
|
||||||
- Added [Email](https://fmhy.net/adblockvpnguide#email-privacy) section to Privacy.
|
|
||||||
|
|
||||||
- Added [Regex](https://fmhy.pages.dev/devtools#regex-tools) section to Dev Tools.
|
|
||||||
|
|
||||||
- Our [FMHY Social](https://social.fmhy.net/@fmhy) (fediverse instance / account) is now live.
|
|
||||||
|
|
||||||
- Removed wiki from saidit. Its our least used version so we're not sure its worth the effort. If enough people want it back we'll reconsider.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
# Stars Added ⭐
|
|
||||||
|
|
||||||
- Starred [Streamed](https://fmhy.net/videopiracyguide#live-sports) in Live Sports. Fast streams, no ads.
|
|
||||||
|
|
||||||
- Starred [Poke](https://fmhy.net/social-media-tools#youtube-frontends) in YouTube Frontends. Nice UI, download support, no ads.
|
|
||||||
|
|
||||||
- Starred [Motrix](https://fmhy.net/file-tools#download-managers) in Download Managers. Some people prefer this over Jdownloader / IDM.
|
|
||||||
|
|
||||||
- Starred [Openlib](https://fmhy.net/android-iosguide#android-reading) in Android Reading. Anna’s Archive app.
|
|
||||||
|
|
||||||
- Starred [Stacher](https://fmhy.net/social-media-tools#youtube-downloaders) in YouTube Downloaders. Modern YT-DL GUI.
|
|
||||||
|
|
||||||
- Starred [DeepLX](https://fmhy.net/text-tools#translators) in Translators. Unlimited DeepL.
|
|
||||||
|
|
||||||
- Starred [Claude](https://fmhy.net/ai#online-chatbots) in Online Chatbots. Works better than things like gemini.
|
|
||||||
|
|
||||||
- Starred [Soft98](https://fmhy.net/downloadpiracyguide#software-sites) in Software Sites. Big library, single click DDL.
|
|
||||||
|
|
||||||
- Starred [JellyPlayer](https://fmhy.net/video-tools#jellyfin-tools) in Jellyfin Tools. Modern Jellyfin client.
|
|
||||||
|
|
||||||
- Starred [UniGetUI](https://fmhy.net/system-tools#package-managers) in Package Managers. Nice user-interface for Winget.
|
|
||||||
|
|
||||||
- Starred [Zipline](https://fmhy.net/img-tools#screenshot-tools) in Screenshot Tools. Self-hosted, feature-rich ShareX server.
|
|
||||||
|
|
||||||
- Starred [WSABuilds](https://fmhy.net/android-iosguide#android-emulators) in Android Emulators. Pre-built WSA binaries that will continue to be [updated](https://ibb.co/R4hssDc).
|
|
||||||
|
|
||||||
- Starred [SmartImage](https://fmhy.net/img-tools#reverse-image-search) in Reverse Image Search. Multi-site reverse image search tool.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
# Things Removed
|
|
||||||
|
|
||||||
- Removed free-mp3-download as they've shutdown.
|
|
||||||
|
|
||||||
- Removed HolyUnblocker as they've [shutdown](https://github.com/QuiteAFancyEmerald/Holy-Unblocker?tab=readme-ov-file#important-message-original).
|
|
||||||
|
|
||||||
- Removed WSA as support for it has been [dropped](https://ibb.co/zxB565S).
|
|
||||||
|
|
||||||
- Unstarred FlixHQ in Streaming. This used to be good but seems to be a lot slower recently.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
### [Previous Update Threads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates)
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### RSS Feed: https://fmhy.net/feed.rss
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
*Note - These update threads only contains major updates. If you're interested in seeing all minor changes you can follow our commits page on [GitHub](https://github.com/fmhy/FMHYedit/commits/main). Also keep in mind that this thread will be deleted and [archived](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates) at the end of the month.*
|
|
||||||
|
|
||||||
---
|
|
@ -1,112 +0,0 @@
|
|||||||
---
|
|
||||||
title: Monthly Updates [July]
|
|
||||||
description: July 2024 updates.
|
|
||||||
date: 2024-07-01
|
|
||||||
next: false
|
|
||||||
aside: left
|
|
||||||
prev: false
|
|
||||||
sidebar: false
|
|
||||||
footer: true
|
|
||||||
---
|
|
||||||
|
|
||||||
# Tournament Results
|
|
||||||
|
|
||||||
We did another streaming sites tournament to help us better re-order and clean up the section. When we did this publicly the first time there was obvious cheating, so we decided to make this more private, and allowed only members with discord roles to vote. During each round we also had discussions about the sites which can be viewed in our discord polls channel. These discussions were taken into account when reordering, but for the most part we relied on the voting results.
|
|
||||||
|
|
||||||
In the end some sites managed to keep their previous spots, a few have been starred, unstarred, or even removed if they were low quality / broken. If you see a round with no votes either way, it means one of the sites was DQ'd.
|
|
||||||
|
|
||||||
## [Final Results](https://challonge.com/Multi_Host_Streaming.svg) / [Before vs. After](https://i.imgur.com/MXN0mR5.png)
|
|
||||||
|
|
||||||
We'll be doing more tournaments in the future, so make sure to join our discord if you want to be a part of them, and let us know which sections you'd like to see most.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Wiki Updates
|
|
||||||
|
|
||||||
- Added [Stremio Tools](https://fmhy.net/videopiracyguide#stremio-tools) section to Streaming.
|
|
||||||
|
|
||||||
- Added [Video Generation](https://fmhy.net/ai#video-generation) section to AI.
|
|
||||||
|
|
||||||
- Added [Audio Transcription](https://fmhy.net/text-tools#audio-transcription) section to Text Tools.
|
|
||||||
|
|
||||||
- Added [System Audio](https://fmhy.net/system-tools#system-audio) and [USB / Bootloaders](https://fmhy.net/system-tools#usb-bootloaders) sections to System Tools.
|
|
||||||
|
|
||||||
- Added [Network Security](https://fmhy.net/adblockvpnguide#network-security) section to Privacy.
|
|
||||||
|
|
||||||
- Added [Fanfiction / Stories](https://fmhy.net/readingpiracyguide#fanfiction-stories) section to Reading.
|
|
||||||
|
|
||||||
- Added [Audio Metadata](https://fmhy.net/audiopiracyguide#audio-metadata) section to Audio.
|
|
||||||
|
|
||||||
- Added [Wayland Compositors](https://fmhy.net/linuxguide#wayland-compositors) section to Linux.
|
|
||||||
|
|
||||||
- Added [Latex Tools](https://fmhy.net/storage#latex-tools) section to Math.
|
|
||||||
|
|
||||||
- Turned [Email Tools](https://fmhy.net/internet-tools#email-tools) into a main section with subsections.
|
|
||||||
|
|
||||||
- Split Subtitle section into [Tools](https://fmhy.net/videopiracyguide#subtitles) and [Downloads](https://fmhy.net/videopiracyguide#download-subtitles).
|
|
||||||
|
|
||||||
- Added multiple (15) new sections to [Dev Tools](https://fmhy.pages.dev/devtools), and cleaned up a lot of old sections.
|
|
||||||
|
|
||||||
- Cleaned up [Video Hosts](https://fmhy.pages.dev/video-tools#video-file-hosts), [Image Optimization](https://fmhy.net/img-tools#image-optimization) and [Icons / Avatars](https://fmhy.net/img-tools#icons-avatars) sections.
|
|
||||||
|
|
||||||
- Started adding Non-English spellings (i.e. Chinese / 汉语方言) to titles in the [Non-Eng section](https://fmhy.pages.dev/non-english). We haven't been able to translate all the sections yet, so if you can help fill in the blanks please send your translations in the comments.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Stars Added ⭐
|
|
||||||
|
|
||||||
- Starred [Hidan](https://fmhy.net/file-tools#file-hosts) in File Hosts. Fast, unlimited size, no account required, publishes when they remove files.
|
|
||||||
|
|
||||||
- Starred [Catppuccin](https://fmhy.net/system-tools#custom-themes) in Custom Themes. High quality pastel system app themes.
|
|
||||||
|
|
||||||
- Starred [Bio Link](https://fmhy.net/internet-tools#link-in-bio-sites) in Link in Bio Sites. Feature-rich, nice UI, stood out to us when going through the section.
|
|
||||||
|
|
||||||
- Starred [RetroAchievements](https://fmhy.net/gamingpiracyguide#emulators) in Emulators. Add achievements to retro games / ROMs.
|
|
||||||
|
|
||||||
- Starred [/r/Translator](https://www.reddit.com/r/translator/) in Translators. Allows you to request translations of almost anything.
|
|
||||||
|
|
||||||
- Starred [sdk.vercel](https://fmhy.net/ai#online-chatbots) in Online Chatbots. Chatbot playground with unlimited GPT-4o.
|
|
||||||
|
|
||||||
- Starred [FossifyOrg](https://fmhy.net/android-iosguide#foss-apks) in FOSS APKs. Covers most basic apps, minimal UI.
|
|
||||||
|
|
||||||
- Starred [Universal Android Debloater](https://fmhy.net/android-iosguide#optimization) in Android Optimization. Updated fork of original UAD.
|
|
||||||
|
|
||||||
- Starred [Amarok](https://fmhy.net/android-iosguide#android-privacy) in Android Privacy. Easily hide private files / apps on android.
|
|
||||||
|
|
||||||
- Starred [Sideloadly](https://fmhy.net/android-iosguide#ios-apps) in iOS Apps. Lightweight, simple setup, auto-updates apps.
|
|
||||||
|
|
||||||
- Starred [EeveeSpotify](https://fmhy.net/android-iosguide#ios-audio) in iOS Audio. Updated Spotify premium app now that spotilife has stopped working.
|
|
||||||
|
|
||||||
- Starred [S0undTV](https://fmhy.net/android-iosguide#smart-tv-firestick) in Firestick. Ad-free Twitch for Firestick.
|
|
||||||
|
|
||||||
- Starred [Uncyclopedia](https://fmhy.net/miscguide#random) in Fun Sites.
|
|
||||||
|
|
||||||
- Added star back to [Bloxstrap](https://fmhy.net/gaming-tools#roblox-tools). Most issues are being fixed and repo seems to be active again.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Things Removed
|
|
||||||
|
|
||||||
- Unstarred Vimms, they thought it was trolls at first, but now [Lego and Sega](https://i.ibb.co/Dp9Kwk4/image.png) have both joined to take down games.
|
|
||||||
|
|
||||||
- Unstarred XDM + Motrix, neither is updated as often as other big DL managers and XDM gives people issues on mobile.
|
|
||||||
|
|
||||||
- Unstarred SKLauncher, its closed-source, cant download with adblock enabled, and we have better MC launchers listed anyways.
|
|
||||||
|
|
||||||
- Removed PrimeFlix as they've shutdown.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
### [Previous Update Threads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
### RSS Feed: https://fmhy.net/feed.rss
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
*Note - These update threads only contains major updates. If you're interested in seeing all minor changes you can follow our [Commits Page](https://github.com/fmhy/FMHYedit/commits/main) on GitHub or [Updates Channel](https://redd.it/17f8msf) in Discord. Also keep in mind that this thread will be deleted and [archived](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates) at the end of the month.*
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
@ -1,82 +0,0 @@
|
|||||||
---
|
|
||||||
title: Monthly Updates [June]
|
|
||||||
description: June 2024 updates
|
|
||||||
date: 2024-06-01
|
|
||||||
next: false
|
|
||||||
aside: left
|
|
||||||
prev: false
|
|
||||||
sidebar: false
|
|
||||||
footer: true
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
# Wiki Updates
|
|
||||||
|
|
||||||
- Added [Switch](https://fmhy.net/gaming-tools#switch-homebrew), [WiiU / Wii](https://fmhy.net/gaming-tools#wii-u-wii-homebrew), [3DS / DS](https://fmhy.net/gaming-tools#_3ds-ds-homebrew) and [Playstation](https://fmhy.net/gaming-tools#playstation-homebrew) sections to Homebrew.
|
|
||||||
- Added [Virtual Reality](https://fmhy.net/gamingpiracyguide#virtual-reality) and [Game Save](https://fmhy.net/gaming-tools#game-saves) sections to Gaming.
|
|
||||||
|
|
||||||
- Added [Dev Communities](https://fmhy.net/devtools#dev-communities) and [Reverse Engineering](https://fmhy.net/devtools#reverse-engineering) sections to Dev Tools.
|
|
||||||
|
|
||||||
- Added [Linux Communities](https://fmhy.net/linuxguide#linux-communities) section to Linux.
|
|
||||||
|
|
||||||
- Added [Flights](https://fmhy.net/miscguide#flights) section to Travel.
|
|
||||||
|
|
||||||
- Organized the Maps section, and added multiple [new subsections](https://fmhy.net/miscguide#maps) to it.
|
|
||||||
|
|
||||||
- Debloated [Indexes](https://fmhy.net/miscguide#indexes), [Multi-Tool](https://fmhy.net/miscguide#multi-tool-sites), [File Scanners](https://fmhy.net/adblockvpnguide#file-scanners), [Archiving](https://fmhy.net/internet-tools#archiving) and [Sheet Music](https://fmhy.net/storage#music-sheet-collections) sections.
|
|
||||||
|
|
||||||
- Re-added our [Unsafe Sites Filter](https://github.com/WindowsAurora/FMHYFilterlist/). This can be added to uBlock to stop anything in [unsafe sites](https://fmhy.net/unsafesites) from loading in your browser.
|
|
||||||
|
|
||||||
- We compared FMHY to the badware filter list to make sure we didn't have anything on it, [and we didn't](https://ibb.co/9TQ6Nnv).
|
|
||||||
|
|
||||||
- Added optional [alternative logo](https://pastebin.com/MDnQPKP3) to our website.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Stars Added ⭐
|
|
||||||
|
|
||||||
- Starred both squid.wtf and MP3 Daddy in [Audio Ripping](https://fmhy.net/audiopiracyguide#audio-ripping-sites). Deezer ripping sites both capable of getting FLAC files.
|
|
||||||
|
|
||||||
- Starred [Morphic](https://fmhy.net/ai#online-chatbots) in Online Chatbots. GPT4o powered search w/ no limits.
|
|
||||||
|
|
||||||
- Starred [ROM Heaven](https://fmhy.net/gamingpiracyguide#rom-sites) in ROM sites. Badass new ROM site with single click DDL and a high quality UI.
|
|
||||||
|
|
||||||
- Starred [All Things Linux](https://fmhy.net/linuxguide#linux-communities) in Linux Communities. Linux Discord server focused on helping others and learning.
|
|
||||||
|
|
||||||
- Starred [Eaglercraft](https://fmhy.net/gaming-tools#minecraft-tools) in Minecraft as it's started getting updates again.
|
|
||||||
|
|
||||||
- Starred [CompactGUI](https://fmhy.net/file-tools#file-archivers) in File Archivers. Very [useful](https://ibb.co/xm23Xbh) archiver with nice UI.
|
|
||||||
|
|
||||||
- Starred [Spicetify](https://fmhy.net/audiopiracyguide#spotify-adblockers) in Spotify Adblockers. This has adblock plugins that work just as well as SpotX.
|
|
||||||
|
|
||||||
- Starred [UI Revert Script](https://fmhy.net/social-media-tools#reddit-tools) in Reddit Tools. Restores Reddits 2023 UI.
|
|
||||||
|
|
||||||
- Starred [Snaptick](https://fmhy.net/storage#to-do-apps) in Android To-Do Apps. Very feature-rich to-do app.
|
|
||||||
|
|
||||||
- Starred [PurpleAdblock](https://fmhy.net/social-media-tools#twitch-adblockers) in Twitch Adblockers. Got a update recently and seems to be working again.
|
|
||||||
|
|
||||||
- Starred [ImageGlass](https://fmhy.net/img-tools#image-viewers) in Image Viewers. Popular lightweight image viewer with a nice UI.
|
|
||||||
|
|
||||||
- Starred [Neal.fun](https://fmhy.net/storage#fun-indexes) in Fun Indexes. OG site with lots of fun games / experiments.
|
|
||||||
|
|
||||||
- Starred [Pi-hole](https://fmhy.net/adblockvpnguide#dns-adblocking) in DNS Adblockers as their lists are more updated than NextDNS.
|
|
||||||
|
|
||||||
- Starred [ChatGPT](https://fmhy.net/ai#online-chatbots) in Online Chatbots as they're adding GPT4o to [free tier](https://help.openai.com/en/articles/7102672-how-can-i-access-gpt-4-gpt-4-turbo-and-gpt-4o).
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Things Removed
|
|
||||||
|
|
||||||
- Removed both moo and media drives as neither work anymore.
|
|
||||||
|
|
||||||
- Removed The Movie Archive as its shutdown.
|
|
||||||
|
|
||||||
- Removed Subscene as they've [closed](https://ibb.co/SVX41NW).
|
|
||||||
|
|
||||||
- Removed neofetch as its been archived.
|
|
||||||
|
|
||||||
- Unstarred Bloxstrap as [dev doesn't have time](https://github.com/pizzaboxer/bloxstrap/wiki/Addressing-usability-problems-with-Bloxstrap-v2.5.4) currently to keep it updated.
|
|
||||||
|
|
||||||
- Unstarred NextDNS as their filter lists include negligent ones (like energized) which cause a bunch of issues, including fmhy.net getting blocked.
|
|
||||||
|
|
||||||
---
|
|
@ -1,71 +0,0 @@
|
|||||||
---
|
|
||||||
title: Monthly Updates [March]
|
|
||||||
description: March 2024 Updates
|
|
||||||
date: 2024-03-01
|
|
||||||
next: false
|
|
||||||
aside: left
|
|
||||||
prev: false
|
|
||||||
sidebar: false
|
|
||||||
footer: true
|
|
||||||
---
|
|
||||||
# Wiki Updates
|
|
||||||
|
|
||||||
* Added custom search engines (CSE) for [Courses](https://cse.google.com/cse?cx=f7a118c70d0804fc4) and [Fonts](https://cse.google.com/cse?cx=82154ebab193e493d).
|
|
||||||
|
|
||||||
* Added section for [Productivity Tools](https://fmhy.net/miscguide#productivity-tools) in Useful Sites.
|
|
||||||
|
|
||||||
* Added section for [File Recovery](https://fmhy.net/file-tools#file-recovery) in File Tools.
|
|
||||||
|
|
||||||
* Added section for [Fingerprinting / Tracking](https://fmhy.net/adblockvpnguide#fingerprinting-tracking) in Privacy.
|
|
||||||
|
|
||||||
* Added sections for [Mario Kart](https://fmhy.net/gamingpiracyguide#mario-kart-tools) + [Geometry Dash](https://fmhy.net/gamingpiracyguide#geometry-dash-tools) in Gaming.
|
|
||||||
|
|
||||||
* Added section for [Crypto / Bitcoin](https://fmhy.net/miscguide#crypto-bitcoin) in Career.
|
|
||||||
|
|
||||||
* Added section for [Raspberry Pi](https://fmhy.net/linuxguide#raspberry-pi) in Linux.
|
|
||||||
|
|
||||||
* Added sections for [Design Apps](https://fmhy.net/img-tools#design-apps) + [Design Assets](https://fmhy.net/img-tools#free-assets) in Image Tools.
|
|
||||||
|
|
||||||
* Our Minecraft Server is now live. Click **[here](https://fmhy.net/posts/minecraft-server)** to join.
|
|
||||||
|
|
||||||
* Moved `fmhy.tk` to `old.fmhy.net`
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Stars Added ⭐
|
|
||||||
|
|
||||||
* Starred [yet another music server](https://fmhy.net/audiopiracyguide#audio-downloading) in Audio Downloading. Multi-site DDL (deezer, qobuz, tidal, spotify, youtube, FLAC.)
|
|
||||||
|
|
||||||
* Starred [wrtn](https://fmhy.net/ai#online-chatbots) in Online Chatbots. No limit GPT-4, tell it to always talk in english.
|
|
||||||
|
|
||||||
* Starred [M4UFree + YesMovies](https://fmhy.net/videopiracyguide#streaming-sites) in Streaming. Both have huge libraries, fast 1080p, and have been around for over a decade.
|
|
||||||
|
|
||||||
* Starred [Poe](https://fmhy.net/ai#online-generators) in Image Generators. 100 SDXL and 100 Playground Gens.
|
|
||||||
|
|
||||||
* Starred [Simply Optimized](https://fmhy.net/storage#minecraft-optimization-mods) in Minecraft Optimization. Some prefer this to Fabulously Optimized.
|
|
||||||
|
|
||||||
* Starred [SolidTorrents](https://fmhy.net/torrentpiracyguide#aggregators) in Torrent Aggregators.
|
|
||||||
|
|
||||||
* Starred [MrGamingStreams](https://fmhy.net/videopiracyguide#live-tv-sports) in Live TV. Fast streams, nice UI, no ads.
|
|
||||||
|
|
||||||
* Starred [720pier](https://fmhy.net/videopiracyguide#sports-streaming) in Sports Streaming. Sport replay torrents.
|
|
||||||
|
|
||||||
* Starred [Enhancer for YT](https://fmhy.net/social-media-tools#youtube-customization) in YouTube Customization. YouTube enhancement extension.
|
|
||||||
|
|
||||||
* Starred [RatS](https://fmhy.net/videopiracyguide#tracking-discovery) in Tracking / Discovery. Sync media ratings between sites.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Things Removed
|
|
||||||
|
|
||||||
* Removed Vendetta from Android as the devs have [shut it down](https://i.imgur.com/F4o2ela.png).
|
|
||||||
|
|
||||||
* Removed TTV LOL as it stopped working.
|
|
||||||
|
|
||||||
* Unstarred bypass.vip and FastForward as they [don't work as well](https://i.imgur.com/EMRcqX6.png) as they used to.
|
|
||||||
|
|
||||||
* Unstarred claude in chatbots as it requires email + phone number and doesn't give as good results as it used to.
|
|
||||||
|
|
||||||
* Unstarred Harmonoid as its not longer being updated and has 100+ issues on github.
|
|
||||||
|
|
||||||
---
|
|
@ -1,87 +0,0 @@
|
|||||||
---
|
|
||||||
title: Monthly Updates [May]
|
|
||||||
description: May 2024 updates
|
|
||||||
date: 2024-05-01
|
|
||||||
next: false
|
|
||||||
aside: left
|
|
||||||
prev: false
|
|
||||||
sidebar: false
|
|
||||||
footer: true
|
|
||||||
---
|
|
||||||
|
|
||||||
# Wiki Updates
|
|
||||||
|
|
||||||
- Added [Multi-Game](https://fmhy.net/gamingpiracyguide#multi-game-sites), [Party](https://fmhy.net/gamingpiracyguide#party-games), [Shooter](https://fmhy.net/gamingpiracyguide#shooter), [Platforming](https://fmhy.net/gamingpiracyguide#platformer), [Simulation](https://fmhy.net/gamingpiracyguide#simulation), [Arcade](https://fmhy.net/gamingpiracyguide#arcade) and [RPG](https://fmhy.net/gamingpiracyguide#rpg) sections to Browser Games.
|
|
||||||
|
|
||||||
- Added [Med School](https://fmhy.net/edupiracyguide#med-school), [Philosophy](https://fmhy.net/edupiracyguide#philosophy) and [Geography](https://fmhy.net/edupiracyguide#geography-datasets) sections to Education.
|
|
||||||
|
|
||||||
- Added [Linux Guides](https://fmhy.net/linuxguide#linux-guides) and [Window Managers](https://fmhy.net/linuxguide#window-managers) sections to Linux.
|
|
||||||
|
|
||||||
- Added [Public Domain](https://fmhy.net/readingpiracyguide#public-domain) section to Reading.
|
|
||||||
|
|
||||||
- Added [German](https://fmhy.net/edupiracyguide#german) section to Language Learning.
|
|
||||||
|
|
||||||
- Renamed Audio Download to [Audio Ripping](https://fmhy.net/audiopiracyguide#audio-ripping), cleaned up the section, and separated sites and tools into their own subsections.
|
|
||||||
|
|
||||||
- Cleaned up [qBittorrent Tools](https://fmhy.net/torrentpiracyguide#qbittorrent-tools), [Paywall Bypass](https://fmhy.net/internet-tools#paywall-bypass), [Pastebins](https://fmhy.pages.dev/text-tools#pastebins) and [OSINT](https://fmhy.net/internet-tools#open-source-intelligence) sections.
|
|
||||||
|
|
||||||
- Moved [Periodic Tables](https://fmhy.net/edupiracyguide#periodic-tables), [Quotes](https://fmhy.net/edupiracyguide#quote-indexes), [File Scanners](https://fmhy.net/adblockvpnguide#file-scanners) and [Sheet Music](https://fmhy.net/audiopiracyguide#sheet-music) out of storage into main sections.
|
|
||||||
|
|
||||||
- Moved [Gaming Tools](https://fmhy.net/gaming-tools) out of gaming onto its own page.
|
|
||||||
|
|
||||||
- Separated [Painting](https://fmhy.net/img-tools#painting) and [Drawing](https://fmhy.net/img-tools#drawing) into their own sections.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Stars Added ⭐
|
|
||||||
|
|
||||||
- Starred [Debloat Guide](https://fmhy.net/system-tools#system-debloating) in System Debloating. Collaborative project by our discord members, let us know what you think or if you have any suggestions for it.
|
|
||||||
|
|
||||||
- Starred [Nunflix](https://fmhy.net/videopiracyguide#multi-server) in Streaming. Multi-server streaming with fast hosts and nice UI.
|
|
||||||
|
|
||||||
- Starred [Game Bounty](https://fmhy.net/downloadpiracyguide#software-sites) in Software as they've started uploading software recently.
|
|
||||||
|
|
||||||
- Starred [FastStream](https://fmhy.net/videopiracyguide#helpful-sites-tools) in Streaming Tools. Fragmentation streaming which speeds up browser video buffering.
|
|
||||||
|
|
||||||
- Starred [Mumble](https://fmhy.net/internet-tools#chat-tools) in Chat Tools. Oldschool voice chat client used and loved by many.
|
|
||||||
|
|
||||||
- Starred [Tixati](https://fmhy.net/torrentpiracyguide#torrent-clients) in Torrent Clients. Simple client still popular in some circles.
|
|
||||||
|
|
||||||
- Starred [SpecialK](https://fmhy.net/gaming-tools#optimization-tools) in Gaming Optimization. Feature-rich game optimization tool.
|
|
||||||
|
|
||||||
- Starred [qView](https://fmhy.net/img-tools#image-viewers) in Image Viewers. Minimal and efficient open-source image viewer.
|
|
||||||
|
|
||||||
- Starred [SauceNAO](https://fmhy.net/img-tools#reverse-image-search) in Reverse Image Search. Multi-site search engine.
|
|
||||||
|
|
||||||
- Starred [Puter](https://fmhy.net/system-tools#os-emulators) in OS Emulators. Session saving browser operating system.
|
|
||||||
|
|
||||||
- Starred [playit.gg](https://fmhy.net/storage#minecraft-servers) in Minecraft Servers. Easy to setup minecraft servers.
|
|
||||||
|
|
||||||
- Starred [MCPropertyEncyclopedia](https://fmhy.net/gaming-tools#minecraft-tools) in Minecraft Tools. Comprehensive block info database.
|
|
||||||
|
|
||||||
- Starred [Shazam + WatZatSong](https://fmhy.net/audiopiracyguide#song-identification) in Song Identification. Popular song identification tools.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
# Things Removed
|
|
||||||
|
|
||||||
- Removed MrGamingStreams as they've shutdown.
|
|
||||||
|
|
||||||
- Removed IDM Activation Script as its been archived.
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
### [Previous Update Threads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
### RSS Feed: https://fmhy.net/feed.rss
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
*Note - These update threads only contains major updates. If you're interested in seeing all minor changes you can follow our commits page on [GitHub](https://github.com/fmhy/FMHYedit/commits/main). Also keep in mind that this thread will be deleted and [archived](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates) at the end of the month.*
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
@ -11,9 +11,7 @@ footer: true
|
|||||||
|
|
||||||
<Post authors="['nbats']" />
|
<Post authors="['nbats']" />
|
||||||
|
|
||||||
# Join at: `fmhy.net`
|
### Join at: `fmhy.net`
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
- You will be spawned at the hub.
|
- You will be spawned at the hub.
|
||||||
- To go to vanilla, head to the end portal.
|
- To go to vanilla, head to the end portal.
|
||||||
@ -21,29 +19,30 @@ footer: true
|
|||||||
- Modded requires Minecraft 1.20.1 Forge.
|
- Modded requires Minecraft 1.20.1 Forge.
|
||||||
- Vanilla requires Minecraft 1.20.4.
|
- Vanilla requires Minecraft 1.20.4.
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
### Mod Downloads
|
### Mod Downloads
|
||||||
|
|
||||||
**Attached is the mod pack for modded**: [RAR](https://buzzheavier.com/f/GIr%2FvkDOsAA=) + [Guide](https://rentry.org/fmhy-modded)
|
**Attached is the mod pack for modded**:
|
||||||
or you could use the .mrpack files and add it to Prism or other compatible launchers:
|
[RAR](https://qiwi.gg/file/acC63146-mods) + [Guide](https://rentry.org/fmhy-modded)
|
||||||
|
|
||||||
[FMHY_Modpack-2.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218042133382959184/FMHY_Modpack-2.mrpack?ex=66063922&is=65f3c422&hm=a3fecfe897d81368f91f6860f96e5359706c292269bafd82429d72b5323bf1a1)
|
or you could use the
|
||||||
|
[`.mrpack files`](https://discord.com/channels/956006107564879872/1206145102217486366/1206145423689908224)
|
||||||
|
and add it to Prism or other compatible launchers.
|
||||||
|
|
||||||
[FMHY_Server_Pack_ClientPP.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218063597326827571/FMHY_Server_Pack_ClientPP.mrpack?ex=66064d20&is=65f3d820&hm=a2476bc723343c912bd4ab9e549bcfa0338c68ff0b670c266d4b1dbaabd3d032)
|
[Optional Modpack with QOL mods added](https://qiwi.gg/file/cSee7776-FMHYServerPackClientPP)
|
||||||
|
|
||||||
[Optional Modpack with QOL mods added](https://buzzheavier.com/f/GIr+b3jOsAA=)
|
Minecraft Dynmap: [Vanilla](https://survival.dynmap.fmhy.net) or
|
||||||
|
[Modded](https://modded.dynmap.fmhy.net)
|
||||||
|
|
||||||
***
|
### Things to Know
|
||||||
|
|
||||||
### Things to Know
|
|
||||||
|
|
||||||
- If it times out when joining then just try rejoining again.
|
- If it times out when joining then just try rejoining again.
|
||||||
- If you get stuck in the lobby, use the command `/server modded` or`/server survival` to join.
|
- If you get stuck in the lobby, use the command `/server modded`
|
||||||
- If you can't break blocks or it's glitching, you are probably too close to the spawn and need to go farther.
|
or `/server survival` to join.
|
||||||
|
- If you can't break blocks or it's glitching, you are probably too close to the
|
||||||
|
spawn and need to go farther.
|
||||||
- (Modded) To set a skin, use the `/skin` command.
|
- (Modded) To set a skin, use the `/skin` command.
|
||||||
- To hide yourself from being shown in Dynmap, run this command `/dynmap hide`.
|
- To hide yourself from being shown in Dynmap, run this command `/dynmap hide`.
|
||||||
- For modded 6GB+ RAM is required, but 12GB+ is recommended.
|
|
||||||
- Simple Voice Chat mod is supported on Modded and (optional) Vanilla servers.
|
- Simple Voice Chat mod is supported on Modded and (optional) Vanilla servers.
|
||||||
|
- For modded 6GB+ RAM is required, but 12GB+ is recommended.
|
||||||
|
|
||||||
Have fun! ♥
|
Have fun! ♥️
|
||||||
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 86 KiB |
31192
single-page
31192
single-page
File diff suppressed because it is too large
Load Diff
@ -1,32 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "./.nitro/types/tsconfig.json"
|
"extends": "./.nitro/types/tsconfig.json",
|
||||||
// "compilerOptions": {
|
"compilerOptions": {
|
||||||
// "verbatimModuleSyntax": true,
|
"verbatimModuleSyntax": true
|
||||||
// "baseUrl": ".",
|
}
|
||||||
// "module": "esnext",
|
|
||||||
// "target": "esnext",
|
|
||||||
// "lib": ["DOM", "ESNext"],
|
|
||||||
// "strict": true,
|
|
||||||
// "jsx": "preserve",
|
|
||||||
// "esModuleInterop": true,
|
|
||||||
// "skipLibCheck": true,
|
|
||||||
// "moduleResolution": "node",
|
|
||||||
// "resolveJsonModule": true,
|
|
||||||
// "noUnusedLocals": true,
|
|
||||||
// "strictNullChecks": true,
|
|
||||||
// "forceConsistentCasingInFileNames": true,
|
|
||||||
// "sourceMap": true,
|
|
||||||
// "isolatedModules": true
|
|
||||||
// },
|
|
||||||
// "include": [
|
|
||||||
// "**/*.vue",
|
|
||||||
// "**/*.tsx",
|
|
||||||
// "**/*.ts",
|
|
||||||
// ".vitepress/**/**/*.ts",
|
|
||||||
// ".vitepress/**/**/*.tsx",
|
|
||||||
// ".vitepress/**/**/*.vue"
|
|
||||||
// ],
|
|
||||||
// "exclude": ["**/node_modules/**", "dist/**"],
|
|
||||||
// "extensions": [".js", ".ts", ".tsx", ".jsx", ".vue"],
|
|
||||||
// "allowSyntheticDefaultImports": true
|
|
||||||
}
|
}
|
||||||
|
@ -3,9 +3,3 @@ main = ".output/server/index.mjs"
|
|||||||
workers_dev = true
|
workers_dev = true
|
||||||
account_id = "fe5d9bd14160b07939282e45f63eb5ad"
|
account_id = "fe5d9bd14160b07939282e45f63eb5ad"
|
||||||
compatibility_date = "2022-09-10"
|
compatibility_date = "2022-09-10"
|
||||||
|
|
||||||
[[unsafe.bindings]]
|
|
||||||
name = "RATE_LIMITER"
|
|
||||||
type = "ratelimit"
|
|
||||||
namespace_id = "1001"
|
|
||||||
simple = { limit = 100, period = 30 }
|
|
||||||
|
Loading…
Reference in New Issue
Block a user