Next Slide
Next Slide changes slides with voice commands.
Next Slide란 무엇입니까?
Next Slide은(는) https://claycodes.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Next Slide changes slides with voice commands."입니다.
확장 프로그램 스크린샷
Next Slide 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Next Slide takes voice commands when presenting to advance slides. "next slide", "previous slide" and "go to slide" will activate the extension.
확장 프로그램 기본 정보
이름 | Next Slide |
ID | piohcheglcfjhpnfhpjfpmhipfopfhbg |
공식 URL | https://chromewebstore.google.com/detail/next-slide/piohcheglcfjhpnfhpjfpmhipfopfhbg |
설명 | Next Slide changes slides with voice commands. |
파일 크기 | 215 KB |
설치 횟수 | 359 |
현재 버전 | 0.0.8 |
최근 업데이트 | 2022-03-30 |
출시 날짜 | 2020-12-06 |
개발자 | https://claycodes.com |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.claycodes.org/home/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "0.0.8", "permissions": [ "https:\/\/docs.google.com\/presentation\/*", "storage" ], "background": { "page": "background.html", "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/presentation\/*" ], "run_at": "document_end", "css": [ "css\/materialize.css", "css\/styles.css" ], "js": [ "js\/jquery.js", "contentscript.js", "js\/materialize.js" ] } ], "browser_action": { "default_icon": { "19": "images\/icons\/19.png", "38": "images\/icons\/38.png" }, "default_popup": "popup.html" }, "icons": { "19": "images\/icons\/19.png", "38": "images\/icons\/38.png", "64": "images\/icons\/64.png", "128": "images\/icons\/128.png" } } |