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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a button on various movie & TV show sites to open it in Plex."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Web to Plex एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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
ईमेल [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:\/\/*\/"
    ]
}