├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── bepp.config.json ├── chrome-web-store-badge.png ├── package.json ├── screenshot-stremio-bestsimilar.jpg ├── screenshot-stremio-imdb.webp ├── screenshot-stremio-letterboxd.jpg ├── screenshot-stremio-rt.jpg ├── screenshot-stremio-trakt.webp ├── src ├── background.js ├── bestsimilar.js ├── content.js ├── favicon.png └── manifest.json └── themoviedb-stremio.jpg /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/README.md -------------------------------------------------------------------------------- /bepp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/bepp.config.json -------------------------------------------------------------------------------- /chrome-web-store-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/chrome-web-store-badge.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/package.json -------------------------------------------------------------------------------- /screenshot-stremio-bestsimilar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/screenshot-stremio-bestsimilar.jpg -------------------------------------------------------------------------------- /screenshot-stremio-imdb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/screenshot-stremio-imdb.webp -------------------------------------------------------------------------------- /screenshot-stremio-letterboxd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/screenshot-stremio-letterboxd.jpg -------------------------------------------------------------------------------- /screenshot-stremio-rt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/screenshot-stremio-rt.jpg -------------------------------------------------------------------------------- /screenshot-stremio-trakt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/screenshot-stremio-trakt.webp -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/src/background.js -------------------------------------------------------------------------------- /src/bestsimilar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/src/bestsimilar.js -------------------------------------------------------------------------------- /src/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/src/content.js -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/src/manifest.json -------------------------------------------------------------------------------- /themoviedb-stremio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yortem/chrome-stremio-imdb/HEAD/themoviedb-stremio.jpg --------------------------------------------------------------------------------