Web to Plex
Adds a button on various movie & TV show sites to open it in Plex.
Web to Plexとは何ですか?
Web to PlexはKees Kluskensによって開発されたChromeの拡張機能で、その主な機能は「Adds a button on various movie & TV show sites to open it in Plex.」です。
拡張機能のスクリーンショット
Web to Plex拡張機能のCRXファイルをダウンロード
Web to Plex拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds a button to IMDb, Trakt.tv, Movieo and Letterboxd to immediately open the movie or TV show on Plex Web. If the movie or show doesn't exist on your Plex Media Server, the button will be visually disabled. If you have setup CouchPotato or Radarr in the options (optional), it can add the movie to your media collection with one click. If it's already in CouchPotato/Radarr, it will gently let you know its status (so the movie isn't added twice). Make sure you have at least Plex Media Server v1.4.3 or higher. Before using this extension, you'll need to configure it first. The options page will guide you through how to do it.
拡張機能の基本情報
名前 | Web to Plex |
ID | kmcinnefmnkfnmnmijfmbiaflncfifcn |
公式URL | https://chromewebstore.google.com/detail/web-to-plex/kmcinnefmnkfnmnmijfmbiaflncfifcn |
説明 | Adds a button on various movie & TV show sites to open it in Plex. |
ファイルサイズ | 178 KB |
インストール数 | 5,192 |
現在のバージョン | 3.4 |
最終更新日 | 2018-05-19 |
公開日 | 2018-05-19 |
評価 | 3.97/5 合計 30 レビュー |
開発者 | Kees Kluskens |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/SpaceK33z/web-to-plex |
ヘルプページのURL | https://github.com/SpaceK33z/web-to-plex/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Web to Plex", "description": "Adds a button on various movie & TV show sites to open it in Plex.", "manifest_version": 2, "version": "3.4", "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/movieo.me\/*" ], "js": [ "history-hack.js", "utils.js", "movieo.js" ], "css": [ "movieo.css" ] }, { "matches": [ "*:\/\/*.imdb.com\/*" ], "js": [ "utils.js", "imdb.js" ], "css": [ "imdb.css" ] }, { "matches": [ "https:\/\/trakt.tv\/*" ], "js": [ "history-hack.js", "utils.js", "trakt.js" ], "css": [ "trakt.css" ] }, { "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "js": [ "utils.js", "letterboxd.js" ], "css": [ "letterboxd.css" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options\/index.html", "chrome_style": true }, "permissions": [ "storage", "https:\/\/*.plex.direct\/*" ], "optional_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ] } |