Overseerr Assistant
Browser extension for Overseerr that embeds buttons into IMDb and TMDB web pages to easily request movies and tv shows.
Overseerr Assistant란 무엇입니까?
Overseerr Assistant은(는) Rémi Rigal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser extension for Overseerr that embeds buttons into IMDb and TMDB web pages to easily request movies and tv shows."입니다.
확장 프로그램 스크린샷
Overseerr Assistant 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser extension for Overseerr and Jellyseerr providing an integration for most popular media websites. Features: - One-click requests directly from TMDB and IMDb websites - One-click access to available media on Plex - Monitor requests status - Support for both movies and TV shows Supported media websites: - TMDB - IMDb - TVDB - Rotten Tomatoes - Plex Discover - Letterboxd - JustWatch - Trakt.tv - Taste.io - Allociné
확장 프로그램 기본 정보
이름 | Overseerr Assistant |
ID | hopnjiadheaagfhpipecoamoegijhnij |
공식 URL | https://chromewebstore.google.com/detail/overseerr-assistant/hopnjiadheaagfhpipecoamoegijhnij |
설명 | Browser extension for Overseerr that embeds buttons into IMDb and TMDB web pages to easily request movies and tv shows. |
파일 크기 | 1.43 MB |
설치 횟수 | 1,318 |
현재 버전 | 1.6.0 |
최근 업데이트 | 2024-02-19 |
출시 날짜 | 2021-10-22 |
평점 | 4.86/5 총 7 개의 평점 |
개발자 | Rémi Rigal |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/RemiRigal/Overseerr-Extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Overseerr Assistant", "version": "1.6.0", "description": "Browser extension for Overseerr that embeds buttons into IMDb and TMDB web pages to easily request movies and tv shows.", "permissions": [ "storage" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon.png", "32": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" } }, "icons": { "16": "images\/icon.png", "32": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.themoviedb.org\/movie\/*", "https:\/\/www.themoviedb.org\/tv\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/tmdb.js" ] }, { "matches": [ "https:\/\/www.imdb.com\/title\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/imdb.js" ] }, { "matches": [ "https:\/\/www.allocine.fr\/film\/*", "https:\/\/www.allocine.fr\/series\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/allocine.js" ] }, { "matches": [ "https:\/\/www.senscritique.com\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/senscritique.js" ] }, { "matches": [ "https:\/\/thetvdb.com\/movies\/*", "https:\/\/thetvdb.com\/series\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/tvdb.js" ] }, { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/letterboxd.js" ] }, { "matches": [ "https:\/\/www.rottentomatoes.com\/m\/*", "https:\/\/www.rottentomatoes.com\/tv\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/rottentomatoes.js" ] }, { "matches": [ "https:\/\/app.plex.tv\/desktop\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/plex.js" ] }, { "matches": [ "https:\/\/www.justwatch.com\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/justwatch.js" ] }, { "matches": [ "https:\/\/trakt.tv\/movies\/*", "https:\/\/trakt.tv\/shows\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/trakt.js" ] }, { "matches": [ "https:\/\/www.taste.io\/movies\/*", "https:\/\/www.taste.io\/tv\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/lib\/jquery-3.5.1.min.js", "js\/storage.js", "js\/overseerr-container.js", "js\/content-scripts\/taste.js" ] } ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "images\/icon.png" ], "matches": [ " |