PLEX WEB BOOKMARKS

Chrome extension for https://app.plex.tv that add bookmarks from web to your plex library

Was ist PLEX WEB BOOKMARKS?

PLEX WEB BOOKMARKS ist eine Chrome-Erweiterung, die von user928 entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension for https://app.plex.tv that add bookmarks from web to your plex library".

Erweiterungsscreenshots

screenshot
screenshot

PLEX WEB BOOKMARKS-Erweiterungs-CRX-Datei herunterladen

Laden Sie PLEX WEB BOOKMARKS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        If you want to have some web URL right in your Plex library than this extension will enable that. 

You can have local Plex library and web-based Plex library in the same place, all your Netflix, Youtube, Vimeo or any other web content can live under your Plex library as well as your local Plex items.

This extension will work only on https://app.plex.tv address                    

Grundlegende Informationen zur Erweiterung

Name PLEX WEB BOOKMARKS PLEX WEB BOOKMARKS
ID edckecldogjbledcmcmcbicmncpcnbkf
Offizielle URL https://chromewebstore.google.com/detail/plex-web-bookmarks/edckecldogjbledcmcmcbicmncpcnbkf
Beschreibung Chrome extension for https://app.plex.tv that add bookmarks from web to your plex library
Dateigröße 521 KB
Installationsanzahl 392
Aktuelle Version 0.0.3
Letztes Update 2019-11-18
Veröffentlichungsdatum 2019-11-18
Entwickler user928
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/user928/plexWebBookmarks
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PLEX WEB BOOKMARKS",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Chrome extension for https:\/\/app.plex.tv that add bookmarks from web to your plex library",
    "homepage_url": "https:\/\/github.com\/user928\/plexWebBookmarks",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.plex.tv\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/app.plex.tv\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "js\/jquery\/jquery.js"
            ]
        }
    ]
}