PLEX WEB BOOKMARKS

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

Vad är PLEX WEB BOOKMARKS?

PLEX WEB BOOKMARKS är en Chrome-tillägg utvecklad av user928, och dess huvudfunktion är "Chrome extension for https://app.plex.tv that add bookmarks from web to your plex library".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner PLEX WEB BOOKMARKS-förlängningens CRX-fil

Ladda ner PLEX WEB BOOKMARKS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn PLEX WEB BOOKMARKS PLEX WEB BOOKMARKS
ID edckecldogjbledcmcmcbicmncpcnbkf
Officiell webbadress https://chromewebstore.google.com/detail/plex-web-bookmarks/edckecldogjbledcmcmcbicmncpcnbkf
Beskrivning Chrome extension for https://app.plex.tv that add bookmarks from web to your plex library
Filstorlek 521 KB
Antal Installationer 392
Aktuell Version 0.0.3
Senast Uppdaterad 2019-11-18
Publiceringsdatum 2019-11-18
Utvecklare user928
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/user928/plexWebBookmarks
Stödda Språk 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"
            ]
        }
    ]
}