PLEX WEB BOOKMARKS

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

什麼是PLEX WEB BOOKMARKS?

PLEX WEB BOOKMARKS是由user928開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension for https://app.plex.tv that add bookmarks from web to your plex library”。

擴展截圖

screenshot
screenshot

下載PLEX WEB BOOKMARKS擴展crx文件

下載PLEX WEB BOOKMARKS擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 PLEX WEB BOOKMARKS PLEX WEB BOOKMARKS
ID edckecldogjbledcmcmcbicmncpcnbkf
官方網址 https://chromewebstore.google.com/detail/plex-web-bookmarks/edckecldogjbledcmcmcbicmncpcnbkf
簡介 Chrome extension for https://app.plex.tv that add bookmarks from web to your plex library
檔案大小 521 KB
安裝次數 392
目前版本 0.0.3
更新時間 2019-11-18
上架時間 2019-11-18
開發者 user928
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/user928/plexWebBookmarks
支援的語言 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"
            ]
        }
    ]
}