- π Table of Contents
- β What is Stremio Enhanced?
- π₯ Downloads
- βοΈ Build From Source
- π¨ Themes and Plugins
- β What Is the Difference Between Plugins and Addons?
- π Creating Your Own Plugin
- π¨ Creating Your Own Theme
- π Known Issues
- π Todo List
- π Discord Server
- β Support the Project
- π Repository Stats
- π¨ Important Notice
Stremio Enhanced is an Electron-based Stremio client with support for plugins and themes. It enhances the default Stremio experience by adding more customization options and integrations.
- It runs the Stremio Service automatically in the background.
- It loads the web version of Stremio v5 within an Electron environment.
-
Themes β Customize the look and feel of Stremio with different themes to match your style.
- Example: AMOLED Theme β A pitch black theme.
(This theme can be found in StremioAmoledTheme.)
- Example: AMOLED Theme β A pitch black theme.
-
Plugins β Extend Stremioβs functionality with JavaScript plugins for more features.
- Example: AniSkip Integration β A plugin to integrate AniSkip to autoskip anime openings and endings.
(This plugin is still under testing but can be found in stremio-aniskip.)
- Example: AniSkip Integration β A plugin to integrate AniSkip to autoskip anime openings and endings.
-
Built-in Toggleable Discord Rich Presence β Show what you're watching on Discord with an easy-to-toggle Rich Presence feature.
You can download the latest version from the releases tab. If you're on Windows, you can download the stremio service bundled build so you don't have to download and install Stremio Service separately.
- Clone the repository:
git clone https://github.com/REVENGE977/stremio-enhanced.git
- Navigate to the project directory:
cd stremio-enhanced
- Install dependencies:
npm install
- Build the project:
- For Windows:
npm run build:win
- For Linux (x64):
npm run build:linux:x64
- For Linux (arm64):
npm run build:linux:arm64
- For macOS (x86):
npm run build:mac:x64
- For macOS (arm64):
npm run build:mac:arm64
- For Windows:
- Go to the settings and scroll down.
- Click on the "OPEN THEMES FOLDER" button.
- Move your theme into the opened folder.
- Restart Stremio Enhanced.
- You should see your theme in the settings with an option to apply it.
- Go to the settings and scroll down.
- Click on the "OPEN PLUGINS FOLDER" button.
- Move your plugin into the opened folder.
- Restart Stremio Enhanced or reload using Ctrl + R
- You should see your plugin in the settings with an option to enable it.
- Addons are available on the normal version of Stremio. They add catalogs and streams for Stremio.
- Plugins add more functionality to Stremio, like new features.
Plugins are simply JavaScript files running on the client side. Create a JavaScript file with a .plugin.js
extension and write your code as you would normally for the client side.
As of version v0.3, you are required to provide metadata for the plugin. Here is an example:
/**
* @name YourPluginNameHere
* @description What does your plugin do?
* @updateUrl your plugin's raw file URL for update checking. (Set this to 'none' if you don't want to provide one)
* @version VersionHere (e.g., 1.0.0)
* @author AuthorName
*/
Create a file with a name ending in .theme.css
and write your CSS modifications there. You can use the devtools (Ctrl+Shift+I) to find an element's class name, etc.
You are also required to provide metadata in your theme, in the same way as plugins.
- Subtitles are not available for some streams that have embedded subs. This seems to be an issue with either Stremio Web or Stremio Service, as it also occurs in the browser. Subtitles do work fine for most streams though.
You can find the current list of tasks and planned features in the todo.md file. You can suggest ideas and give feature requests by either creating a feature request issue or by contacting me in my Discord server below.
You can contact me on my Discord server to discuss anything related to my projects, whether it'd be features you'd like to see in this project or to share ideas for themes/plugins you'd like to see made.
Consider giving the project a β star on GitHub! Your support helps more people discover it and keeps me motivated to improve it.
If you'd like to go the extra mile, you can also support me by sponsoring the project. Every contribution, big or small, is truly appreciated!
This project is not affiliated in any way with Stremio.
- This project is licensed under the MIT License.
- Stremio Service is bundled in certain releases of this project and is licensed under the GPL-2.0 License. You can find the source code for Stremio Service here.
π» Developed with β€οΈ by REVENGE977 | π Licensed under MIT