Skip to content

isomerase/isocomic-extensions

Repository files navigation

isoComic extensions

Extensions for isocomic.com

What is isoComic?

Similar to Tachiyomi, isoComic is a plugin-based manga reader in browser. Thanks to the browser's cross-platform ability, you can read any comic from any source on many platforms in isoComic.

What is isoComic-extension?

Similar to Tachiyomi-extensions, an isoComic extension is just a single javascript file, which defines what and how the data is fetched from the network.

Screenshots

Home Page Source Page Manga Page Reader Page
Home Page Source Page Manga Page Reader Page

Extensions in the repo

How to install an extension?

isoComic can load extension from url directly. Open the link like https://isocomic.com/?install_url=https://raw.githubusercontent.com/isomerase/isocomic-extensions/repo/dist/mangadex.min.js, and then start to enjoy the extension.

Considering your data security, only extensions from the official repository or local network(localhost, 192.168.X.X, 127.0.0.1) are allowed

How to develop an extension?

git clone https://github.com/isomerase/isocomic-extensions.git
cd isocomic-extensions
npm install

npm run create EXTENSION_NAME  # create a new extension from template
# then edit index.ts to implement interfaces

# build the extension
npm run build EXTENSION_NAME # build the extension
npm run serve # host dist/EXTENSION_NAME.min.js in a local server

Feedback

Acknowledgement

This project is inspired by tachiyomi and tachiyomi-extensions.