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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pozitone.com และคุณลักษณะหลักของมันคือ "New features of YouTube embedded player: video info notifications, easy player control, watched video list."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PoziTone module for YouTube embedded player
ดาวน์โหลดไฟล์ส่วนขยาย PoziTone module for YouTube embedded player ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |