PoziTone module for YouTube embedded player
New features of YouTube embedded player: video info notifications, easy player control, watched video list.
PoziTone module for YouTube embedded player란 무엇입니까?
PoziTone module for YouTube embedded player은(는) https://pozitone.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "New features of YouTube embedded player: video info notifications, easy player control, watched video list."입니다.
확장 프로그램 스크린샷
PoziTone module for YouTube embedded player 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features -------- - Control YouTube embedded player on any website using keyboard shortcuts or popup notifications. - Keep list of recently played videos. - Get notified when video changes. Important -------- This module is meant for YouTube embedded player only, it doesn't work on youtube.com itself. Requires installation of PoziTone – https://chrome.google.com/webstore/detail/pozitone/bdglbogiolkffcmojmmkipgnpkfipijm Privacy -------- This extension does not read, change, store, or transmit any of your personal data (e.g., logins, passwords, messages, contacts) from any of the sites or your computer in absolutely any form. Free open-source extension. Code available for your review at https://github.com/PoziWorld/YouTube-Embedded-Player-external-PoziTone-module --- Built with PoziTone module SDK
확장 프로그램 기본 정보
이름 | PoziTone module for YouTube embedded player |
ID | bajalgkbfjloemafmkiheboebghhibbg |
공식 URL | https://chromewebstore.google.com/detail/pozitone-module-for-youtu/bajalgkbfjloemafmkiheboebghhibbg |
설명 | New features of YouTube embedded player: video info notifications, easy player control, watched video list. |
파일 크기 | 45.3 KB |
설치 횟수 | 31 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2020-02-12 |
출시 날짜 | 2020-02-08 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://pozitone.com |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://feedback.pozitone.com |
개인정보 보호 정책 페이지 URL | https://pozi.world/privacy |
지원되는 언어 | en-US,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "minimum_chrome_version": "40", "default_locale": "en_US", "name": "__MSG_name__", "description": "__MSG_description__", "version": "0.1.3", "short_name": "PTM youtube.com", "author": "PoziWorld", "homepage_url": "https:\/\/pozitone.com\/", "icons": { "16": "modules\/com_youtube\/img\/youtube-embed-pozitone-module-icon-16.png", "48": "modules\/com_youtube\/img\/youtube-embed-pozitone-module-icon-48.png", "128": "modules\/com_youtube\/img\/youtube-embed-pozitone-module-icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "global\/js\/polyfill-Object.assign.js", "global\/js\/bowser.js", "global\/js\/const.js", "global\/js\/utils.js", "global\/js\/pozitone-module-sdk.js", "modules\/com_youtube\/js\/page-watcher.js", "modules\/com_youtube\/js\/iframe_api.js", "modules\/com_youtube\/js\/www-widgetapi.js" ], "run_at": "document_end" } ], "background": { "persistent": false, "scripts": [ "global\/js\/bowser.js", "global\/js\/const.js", "global\/js\/utils.js", "global\/js\/background.js", "global\/js\/pozitone-module-sdk.js" ] }, "options_ui": { "page": "options\/index.html", "chrome_style": true }, "web_accessible_resources": [ "*.png", "*.svg" ] } |