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"입니다.
확장 프로그램 스크린샷
PLEX WEB BOOKMARKS 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 확장 프로그램 기본 정보
| 이름 | |
| ID | edckecldogjbledcmcmcbicmncpcnbkf |
| 공식 URL | 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"
]
}
]
} | |