Fast Panopto
Allows user to choose a video speed beyond the defaults allowed by Panopto.
Fast Panopto란 무엇입니까?
Fast Panopto은(는) Rellikolbaid에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows user to choose a video speed beyond the defaults allowed by Panopto."입니다.
확장 프로그램 스크린샷
Fast Panopto 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chrome extension which allows you to set Panopto's video player speeds greater or less than the defaults given on the page. Additionally, allows users to download the webcam video displayed while on a Panopto video player page. An example URL where this extension may be used is given below. Note: use of the extension requires being on a Panopto video session page of the form *://*.panopto.*/*/Viewer*. Example page where this extension would be used: https://arizona.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=3424a7d6-d170-4f61-92b0-a9d1015203d2 If you found this extension helpful, please consider donating by clicking the donate button in it! I'm a college student that wrote this extension for myself and others to use to help study or cram lectures and I could use the coffee money :) New in 1.23: Usable by domains outside of the US
확장 프로그램 기본 정보
이름 | |
ID | bginlheikaacjjdajifcbakcmfcgmefh |
공식 URL | https://chrome.google.com/webstore/detail/fast-panopto/bginlheikaacjjdajifcbakcmfcgmefh |
설명 | Allows user to choose a video speed beyond the defaults allowed by Panopto. |
파일 크기 | 25.59 KB |
설치 횟수 | 6,243 |
현재 버전 | 1.23 |
최근 업데이트 | 2019-12-06 |
출시 날짜 | 2019-12-06 |
평점 | 4.62/5 총 21 개의 평점 |
개발자 | Rellikolbaid |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fast Panopto", "version": "1.23", "description": "Allows user to choose a video speed beyond the defaults allowed by Panopto.", "permissions": [ "activeTab", "declarativeContent", "storage", "downloads" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.panopto.com\/*\/Viewer*" ], "js": [ "pageDOMParser.js" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon.png", "32": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" } }, "icons": { "16": "images\/icon.png", "32": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "manifest_version": 2 } |