mirror of
https://github.com/fmhy/edit.git
synced 2025-10-13 00:01:09 +11:00
Compare commits
3 commits
beb03ba0ea
...
7bb684fb7a
Author | SHA1 | Date | |
---|---|---|---|
|
7bb684fb7a | ||
|
25772fd417 | ||
|
b8fda6c97b |
7 changed files with 20 additions and 38 deletions
5
.github/CONTRIBUTING.md
vendored
5
.github/CONTRIBUTING.md
vendored
|
@ -33,9 +33,8 @@ Here you'll find some general guidelines for those who would like to start contr
|
||||||
For submitting new links, follow these steps:
|
For submitting new links, follow these steps:
|
||||||
|
|
||||||
- Make sure it's not already in the wiki. The easiest way to do this is to check our [Single Page](https://api.fmhy.net/single-page) using `ctrl+f`.
|
- Make sure it's not already in the wiki. The easiest way to do this is to check our [Single Page](https://api.fmhy.net/single-page) using `ctrl+f`.
|
||||||
- Reach out via the feedback system, by opening an [Issue](https://github.com/fmhy/edit/issues), or join our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord).
|
- Reach out via the feedback system, [GitHub](https://github.com/fmhy/edit), or join our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord).
|
||||||
- You can optionally include socials, tools, or any other additional info alongside the entry.
|
- You can optionally include socials, tools, or any other additional info alongside the entry.
|
||||||
- Avoid opening pull requests. See [Link Testing](#link-testing) for more info.
|
|
||||||
|
|
||||||
### Reporting a Site
|
### Reporting a Site
|
||||||
|
|
||||||
|
@ -44,7 +43,7 @@ For submitting new links, follow these steps:
|
||||||
|
|
||||||
For changes to existing entries, follow these steps:
|
For changes to existing entries, follow these steps:
|
||||||
|
|
||||||
- Reach out via any of the available methods, including opening a [Pull Request](https://github.com/fmhy/edit/pulls).
|
- Reach out via the feedback system, [GitHub](https://github.com/fmhy/edit), or join our [Discord](https://github.com/fmhy/FMHY/wiki/FMHY-Discord).
|
||||||
- Feel free to leave contact info when using the feedback system, if needed. Only trusted staff can view this.
|
- Feel free to leave contact info when using the feedback system, if needed. Only trusted staff can view this.
|
||||||
- If you'd like to report a site removal or star change, you must include details as to why your changes should be accepted.
|
- If you'd like to report a site removal or star change, you must include details as to why your changes should be accepted.
|
||||||
|
|
||||||
|
|
|
@ -101,6 +101,15 @@ export const transformGuide = (text: string): string =>
|
||||||
|
|
||||||
export function transform(text: string): string {
|
export function transform(text: string): string {
|
||||||
let _text = text
|
let _text = text
|
||||||
|
// Remove extra characters
|
||||||
|
.replace(/\/#wiki_/g, '/#')
|
||||||
|
.replace(/#wiki_/g, '/#')
|
||||||
|
.replace(/.25BA_/g, '')
|
||||||
|
.replace(/.25B7_/g, '')
|
||||||
|
.replace(/_?\.2F_?/g, '-')
|
||||||
|
.replace(/_?.26amp.3B_?/g, '-')
|
||||||
|
.replace(/(?<=r\/FREEMEDIA.+)2(?=\))/g, '-1')
|
||||||
|
|
||||||
// Transform reddit index links
|
// Transform reddit index links
|
||||||
.replace(
|
.replace(
|
||||||
/\*\*\[◄◄ Back to Wiki Index\]\(https:\/\/www\.reddit\.com\/r\/FREEMEDIAHECKYEAH\/wiki\/index\)\*\*\n/gm,
|
/\*\*\[◄◄ Back to Wiki Index\]\(https:\/\/www\.reddit\.com\/r\/FREEMEDIAHECKYEAH\/wiki\/index\)\*\*\n/gm,
|
||||||
|
@ -214,13 +223,6 @@ export function transform(text: string): string {
|
||||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/img-tools/g,
|
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/img-tools/g,
|
||||||
'/img-tools'
|
'/img-tools'
|
||||||
)
|
)
|
||||||
// Remove extra characters
|
|
||||||
.replace(/\/#wiki_/g, '/#')
|
|
||||||
.replace(/#wiki_/g, '/#')
|
|
||||||
.replace(/.25BA_/g, '')
|
|
||||||
.replace(/.25B7_/g, '')
|
|
||||||
.replace(/_.2F_/g, '-')
|
|
||||||
.replace(/_?.26amp.3B_?/g, '-')
|
|
||||||
|
|
||||||
_text = replaceUnderscore(_text)
|
_text = replaceUnderscore(_text)
|
||||||
.replace(/\/#(\d)/g, '/#_$1') // Prefix headings starting with numbers
|
.replace(/\/#(\d)/g, '/#_$1') // Prefix headings starting with numbers
|
||||||
|
@ -242,23 +244,6 @@ export function transform(text: string): string {
|
||||||
.replace(/^\*\*Warning\*\* - (.+)$/gm, ':::warning\n$1\n:::')
|
.replace(/^\*\*Warning\*\* - (.+)$/gm, ':::warning\n$1\n:::')
|
||||||
.replace(/^\* \*\*Warning\*\* - (.+)$/gm, ':::warning\n$1\n:::')
|
.replace(/^\* \*\*Warning\*\* - (.+)$/gm, ':::warning\n$1\n:::')
|
||||||
.replace(/^\*\s([^*])/gm, '- $1')
|
.replace(/^\*\s([^*])/gm, '- $1')
|
||||||
// Replace links
|
|
||||||
.replace(
|
|
||||||
/\/storage\/#encode--decode_urls/g,
|
|
||||||
'/storage/#encode--decode-urls'
|
|
||||||
)
|
|
||||||
.replace(/\/devtools\/#machine-learning2/g, '/devtools/#machine-learning-1')
|
|
||||||
.replace(/\/linuxguide#software-sites2/g, '/linuxguide#software-sites-1')
|
|
||||||
.replace(/\/linuxguide#software_sites/g, '/linuxguide#software-sites')
|
|
||||||
.replace(/\/non-english#reading10/g, '/non-english#reading-9')
|
|
||||||
.replace(
|
|
||||||
/\/storage#satellite-.26amp.3B_street_view_maps/g,
|
|
||||||
'/storage#satellite-street-view-maps'
|
|
||||||
)
|
|
||||||
.replace(
|
|
||||||
/(.+?) site or extension\.\n/gm,
|
|
||||||
'Click on the texts to copy them decoded.\n'
|
|
||||||
)
|
|
||||||
|
|
||||||
return _text
|
return _text
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,6 +443,7 @@
|
||||||
|
|
||||||
## ▷ Anti-Censorship
|
## ▷ Anti-Censorship
|
||||||
|
|
||||||
|
* ↪️ **[Great Firewall Bypass](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/non-eng/#wiki_.25B7_gfw_bypass)**
|
||||||
* ⭐ **[Censorship Bypass Guide](https://censordex.fr.to/)** - Censorship Bypass Guide
|
* ⭐ **[Censorship Bypass Guide](https://censordex.fr.to/)** - Censorship Bypass Guide
|
||||||
* ⭐ **[No Thought is a Crime](https://ntc.party/)** or [Net4people](https://github.com/net4people/bbs/issues) - Censorship Discussion
|
* ⭐ **[No Thought is a Crime](https://ntc.party/)** or [Net4people](https://github.com/net4people/bbs/issues) - Censorship Discussion
|
||||||
* ⭐ **[zapret](https://github.com/bol-van/zapret)**, **[GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/)**, [PowerTunnel](https://github.com/krlvm/PowerTunnel) or [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) - DPI Circumvention Local Proxies
|
* ⭐ **[zapret](https://github.com/bol-van/zapret)**, **[GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/)**, [PowerTunnel](https://github.com/krlvm/PowerTunnel) or [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) - DPI Circumvention Local Proxies
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** or [Gemini](https://gemini.google.com/) - Gemini 2.5 Pro / Google Chatbots / [CLI](https://github.com/google-gemini/gemini-cli) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** or [Gemini](https://gemini.google.com/) - Gemini 2.5 Pro / Google Chatbots / [CLI](https://github.com/google-gemini/gemini-cli) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||||
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o / o4-mini Chatbot / [/r/OpenAI](https://www.reddit.com/r/OpenAI/) / [Subreddit](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o / o4-mini Chatbot / [/r/OpenAI](https://www.reddit.com/r/OpenAI/) / [Subreddit](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
||||||
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - DeepSeek-V3 / DeepSeek-R1 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.com/invite/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - DeepSeek-V3 / DeepSeek-R1 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.com/invite/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
||||||
* ⭐ **[Qwen](https://qwen.ai/home)** / [2](https://chat.qwen.ai/) or [Qwen3-Demo](https://huggingface.co/spaces/Qwen/Qwen3-Demo) - Qwen3-235B-A22B-Instruct-2507 / Qwen3-235B-A22B-Thinking-2507 / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
* ⭐ **[Qwen](https://qwen.ai/home)** / [2](https://chat.qwen.ai/) - Qwen3-235B-A22B-Instruct-2507 / Qwen3-235B-A22B-Thinking-2507 / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||||
* ⭐ **[Grok](https://grok.com/)** - Grok 3 (20 per 2 hours) / Grok 3 Mini Thinking (8 daily) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
* ⭐ **[Grok](https://grok.com/)** - Grok 3 (20 per 2 hours) / Grok 3 Mini Thinking (8 daily) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||||
* [Z.ai](https://chat.z.ai/) - GLM 4.5 Chatbot / [Discord](https://discord.gg/QR7SARHRxK)
|
* [Z.ai](https://chat.z.ai/) - GLM 4.5 Chatbot / [Discord](https://discord.gg/QR7SARHRxK)
|
||||||
* [Kimi](https://kimi.ai/) - Kimi K2 Chatbot / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
|
* [Kimi](https://kimi.ai/) - Kimi K2 Chatbot / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
|
||||||
|
@ -48,7 +48,6 @@
|
||||||
* [Lambda Chat](https://lambda.chat/chatui/) - Deepseek-R1 / Multiple Chatbots / Unlimited / No Sign-Up
|
* [Lambda Chat](https://lambda.chat/chatui/) - Deepseek-R1 / Multiple Chatbots / Unlimited / No Sign-Up
|
||||||
* [NVIDIA NIM](https://build.nvidia.com/) - Deepseek-R1 / Multiple Chatbots / No Sign-Up
|
* [NVIDIA NIM](https://build.nvidia.com/) - Deepseek-R1 / Multiple Chatbots / No Sign-Up
|
||||||
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-R1 / Qwen QwQ-32B / Multiple Chatbots / No Sign-Up
|
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-R1 / Qwen QwQ-32B / Multiple Chatbots / No Sign-Up
|
||||||
* [AI SDK](https://sdk.vercel.ai/) - Multiple Chatbots / [GitHub](https://github.com/vercel/ai)
|
|
||||||
* [FreePass](https://freepass.ai/) - Gemini 2.5 Pro / GPT-4.1
|
* [FreePass](https://freepass.ai/) - Gemini 2.5 Pro / GPT-4.1
|
||||||
* [OIChat](https://oi.wr.do/) - Gemini 2.5 Pro / DeepSeek R1 / Qwen QwQ-32B / DeepSeek-V3-0324 / Multiple Chatbots
|
* [OIChat](https://oi.wr.do/) - Gemini 2.5 Pro / DeepSeek R1 / Qwen QwQ-32B / DeepSeek-V3-0324 / Multiple Chatbots
|
||||||
* [ChatK](https://chat.oaichat.cc/) or [lobe.wr.do](https://lobe.wr.do/) / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat) - GPT-4o / DeepSeek-R1-32b / Multiple Chatbots
|
* [ChatK](https://chat.oaichat.cc/) or [lobe.wr.do](https://lobe.wr.do/) / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat) - GPT-4o / DeepSeek-R1-32b / Multiple Chatbots
|
||||||
|
@ -124,10 +123,8 @@
|
||||||
* ⭐ **[Windsurf](https://www.windsurf.com/)** - Coding AI / [Subreddit](https://www.reddit.com/r/windsurf/) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
* ⭐ **[Windsurf](https://www.windsurf.com/)** - Coding AI / [Subreddit](https://www.reddit.com/r/windsurf/) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
||||||
* ⭐ **[Pieces](https://pieces.app/)** - Multi-LLM Coding AI / GPT-4 / 4o for Free / No Sign-Up / [Discord](https://discord.gg/getpieces)
|
* ⭐ **[Pieces](https://pieces.app/)** - Multi-LLM Coding AI / GPT-4 / 4o for Free / No Sign-Up / [Discord](https://discord.gg/getpieces)
|
||||||
* ⭐ **[zed](https://zed.dev/)** - Collaborative Coding AI / [GitHub](https://github.com/zed-industries/zed)
|
* ⭐ **[zed](https://zed.dev/)** - Collaborative Coding AI / [GitHub](https://github.com/zed-industries/zed)
|
||||||
* [WDTCD?](https://whatdoesthiscodedo.com/) - Simple Code Explanations / No Sign-Up
|
|
||||||
* [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews / [GitHub](https://github.com/sourcery-ai/sourcery)
|
* [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews / [GitHub](https://github.com/sourcery-ai/sourcery)
|
||||||
* [Devv](https://devv.ai/) - Coding Search Engine / [GitHub](https://github.com/devv-ai/devv)
|
* [Devv](https://devv.ai/) - Coding Search Engine / [GitHub](https://github.com/devv-ai/devv)
|
||||||
* [Telosys](https://www.telosys.org/) - Code Generator / No Sign-Up / [Source Code](https://www.telosys.org/sources.html)
|
|
||||||
* [Llama Coder](https://llamacoder.together.ai/) - Code Generator / No Sign-Up / [GitHub](https://github.com/Nutlope/llamacoder)
|
* [Llama Coder](https://llamacoder.together.ai/) - Code Generator / No Sign-Up / [GitHub](https://github.com/Nutlope/llamacoder)
|
||||||
* [Roo Code](https://roocode.com/) / [GitHub](https://github.com/RooCodeInc/Roo-Code) or [Cline](https://cline.bot/) / [Discord](https://discord.gg/cline) / [GitHub](https://github.com/cline/cline) - Coding AI
|
* [Roo Code](https://roocode.com/) / [GitHub](https://github.com/RooCodeInc/Roo-Code) or [Cline](https://cline.bot/) / [Discord](https://discord.gg/cline) / [GitHub](https://github.com/cline/cline) - Coding AI
|
||||||
* [imgcook](https://imgcook.com) - Coding AI / No Sign-Up / [GitHub](https://github.com/imgcook/imgcook)
|
* [imgcook](https://imgcook.com) - Coding AI / No Sign-Up / [GitHub](https://github.com/imgcook/imgcook)
|
||||||
|
@ -138,6 +135,7 @@
|
||||||
* [Trae](https://www.trae.ai/) - Coding AI
|
* [Trae](https://www.trae.ai/) - Coding AI
|
||||||
* [Cursor](https://rentry.co/FMHYBase64#cursor) - Coding AI
|
* [Cursor](https://rentry.co/FMHYBase64#cursor) - Coding AI
|
||||||
* [GitWit](https://gitwit.dev/) - Coding AI
|
* [GitWit](https://gitwit.dev/) - Coding AI
|
||||||
|
* [AI SDK](https://sdk.vercel.ai/) - Coding AI/ [GitHub](https://github.com/vercel/ai)
|
||||||
* [Qodo](https://www.qodo.ai/) - Coding AI
|
* [Qodo](https://www.qodo.ai/) - Coding AI
|
||||||
* [Blackbox](https://www.blackbox.ai/) - Coding AI / No Sign-Up
|
* [Blackbox](https://www.blackbox.ai/) - Coding AI / No Sign-Up
|
||||||
* [Denigma](https://denigma.app/) - Coding AI / No Sign-Up / [Discord](https://discord.gg/mZx4REBvKm)
|
* [Denigma](https://denigma.app/) - Coding AI / No Sign-Up / [Discord](https://discord.gg/mZx4REBvKm)
|
||||||
|
@ -149,7 +147,6 @@
|
||||||
* [Bolt.new](https://bolt.new/) - AI Web App Builder / [Discord](https://discord.com/invite/stackblitz) / [GitHub](https://github.com/stackblitz/bolt.new)
|
* [Bolt.new](https://bolt.new/) - AI Web App Builder / [Discord](https://discord.com/invite/stackblitz) / [GitHub](https://github.com/stackblitz/bolt.new)
|
||||||
* [Fragments](https://fragments.e2b.dev/) - AI App Builder / [Discord](https://discord.com/invite/U7KEcGErtQ) / [GitHub](https://github.com/e2b-dev)
|
* [Fragments](https://fragments.e2b.dev/) - AI App Builder / [Discord](https://discord.com/invite/U7KEcGErtQ) / [GitHub](https://github.com/e2b-dev)
|
||||||
* [Rork](https://rork.com/) - AI App Builder [Code Export Bypass](https://greasyfork.org/en/scripts/538090)
|
* [Rork](https://rork.com/) - AI App Builder [Code Export Bypass](https://greasyfork.org/en/scripts/538090)
|
||||||
* [Composio](https://composio.dev/) - Add Tools to Coding AI / [Discord](https://discord.com/invite/cNruWaAhQk) / [GitHub](https://github.com/ComposioHQ/composio)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
***
|
***
|
||||||
***
|
***
|
||||||
|
|
||||||
* **Note** - This section can be used to get movies, music, books, courses, etc. but for anything you install, like games, software, or APKs, it's highly recommended to use the English sections instead. The only exceptions are sites like m0nkrus that have very good reputations. Keep in mind that you can always change the language in the installers.
|
* **Note** - Use this section for media (movies, music, books). For installing software, games, or APKs, use the English sections unless the source is highly trusted (e.g., m0nkrus).
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
@ -655,10 +655,10 @@
|
||||||
|
|
||||||
## ▷ Streaming
|
## ▷ Streaming
|
||||||
|
|
||||||
* [moviedrive](https://moviedrive.hu/) - Movies / TV / Anime / Sub / Dub / 1080p
|
* [moviedrive](https://moviedrive.hu/) - Movies / TV / Sub / Dub / 1080p [Discord](https://discord.com/invite/blackfire)
|
||||||
|
* [hdmozi](https://hdmozi.hu/) - Movies / TV / Sub / Dub / 1080p [Facebook Group](https://www.facebook.com/groups/3325147607704979)
|
||||||
* [OnlineFilmekIngyen](https://www.onlinefilmekingyen1.com/) - Movies / Sub / Dub / 1080p
|
* [OnlineFilmekIngyen](https://www.onlinefilmekingyen1.com/) - Movies / Sub / Dub / 1080p
|
||||||
* [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p
|
* [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p
|
||||||
* [filminvazio](https://filminvazio.cc/) - Movies / TV
|
|
||||||
* [filmezek](https://filmezek.com/) - Movies
|
* [filmezek](https://filmezek.com/) - Movies
|
||||||
* [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p
|
* [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p
|
||||||
* [animedrive](https://animedrive.hu/) - Anime / [Discord](https://discord.com/invite/blackfire)
|
* [animedrive](https://animedrive.hu/) - Anime / [Discord](https://discord.com/invite/blackfire)
|
||||||
|
|
|
@ -413,6 +413,7 @@
|
||||||
## ▷ Manga
|
## ▷ Manga
|
||||||
|
|
||||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites#manga)** / [Discord](https://discord.gg/vShRGx8ZBC), [The Index](https://theindex.moe/library/manga) / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox) or [EverythingMoe](https://everythingmoe.com/#section-manga), [2](https://everythingmoe.org/#section-manga) / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS) - Manga Sites Indexes
|
* 🌐 **[Wotaku](https://wotaku.wiki/websites#manga)** / [Discord](https://discord.gg/vShRGx8ZBC), [The Index](https://theindex.moe/library/manga) / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox) or [EverythingMoe](https://everythingmoe.com/#section-manga), [2](https://everythingmoe.org/#section-manga) / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS) - Manga Sites Indexes
|
||||||
|
* 🌐 **[Rawmangaz](https://rentry.co/rawmangaz)** - List of Raw Manga Sites
|
||||||
* ↪️ **[Manga Readers / Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_readers)**
|
* ↪️ **[Manga Readers / Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_readers)**
|
||||||
* ↪️ **[Manga Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_downloaders)**
|
* ↪️ **[Manga Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_downloaders)**
|
||||||
* ⭐ **[ComicK](https://comick.io/)** / [Subreddit](https://reddit.com/r/ComicK/) / [Discord](https://discord.gg/comick)
|
* ⭐ **[ComicK](https://comick.io/)** / [Subreddit](https://reddit.com/r/ComicK/) / [Discord](https://discord.gg/comick)
|
||||||
|
@ -450,7 +451,6 @@
|
||||||
* [Webcomic Reader](https://openuserjs.org/scripts/anka-213/Webcomic_Reader) - Preloads Images, Remembers Progress and Keyboard Support
|
* [Webcomic Reader](https://openuserjs.org/scripts/anka-213/Webcomic_Reader) - Preloads Images, Remembers Progress and Keyboard Support
|
||||||
* [BallonsTranslator](https://github.com/dmMaze/BallonsTranslator/blob/master/README_EN.md), [Cotrans](https://cotrans.touhou.ai/) or [Scanlate](https://scanlate.io/) - Manga Translators
|
* [BallonsTranslator](https://github.com/dmMaze/BallonsTranslator/blob/master/README_EN.md), [Cotrans](https://cotrans.touhou.ai/) or [Scanlate](https://scanlate.io/) - Manga Translators
|
||||||
* [Manga-Manager](https://github.com/MangaManagerORG/Manga-Manager) - Manga Managers
|
* [Manga-Manager](https://github.com/MangaManagerORG/Manga-Manager) - Manga Managers
|
||||||
* [Raw Manga Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/non-eng/#wiki_.25B7_reading_.2F_.8AAD.66F8)
|
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
# ► Social Media Tools
|
# ► Social Media Tools
|
||||||
|
|
||||||
* 🌐 **[Farside](https://farside.link/)** / [2](https://cf.farside.link/), [PrivacyRedirect](https://privacyredirect.com/) or [alternative-frontends](https://github.com/ParniDEO/alternative-front-ends-unofficial) - Frontend Indexes
|
* 🌐 **[Farside](https://farside.link/)** / [2](https://cf.farside.link/), [PrivacyRedirect](https://privacyredirect.com/) or [alternative-frontends](https://github.com/ParniDEO/alternative-front-ends-unofficial) - Frontend Indexes
|
||||||
* ↪️ **[Android Social Media Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_social_media_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_social_media_apps2)**
|
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_social_media_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_social_media_apps2)** - Mobile Social Media Apps
|
||||||
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
||||||
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats
|
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats
|
||||||
* ⭐ **[LiveCounts](https://livecounts.io/)** - Live Social Media Stats
|
* ⭐ **[LiveCounts](https://livecounts.io/)** - Live Social Media Stats
|
||||||
|
@ -358,7 +358,7 @@
|
||||||
|
|
||||||
## ▷ Players / Frontends
|
## ▷ Players / Frontends
|
||||||
|
|
||||||
* ↪️ **[Android YouTube Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_youtube_apps)**
|
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_youtube_apps)** - Mobile YouTube Apps
|
||||||
* ⭐ **[FreeTube](https://freetubeapp.io/)** - Local YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
* ⭐ **[FreeTube](https://freetubeapp.io/)** - Local YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
||||||
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
||||||
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue