Next Slide
Next Slide changes slides with voice commands.
Next Slideคืออะไร?
Next Slide เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://claycodes.com และคุณลักษณะหลักของมันคือ "Next Slide changes slides with voice commands."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Next Slide
ดาวน์โหลดไฟล์ส่วนขยาย Next Slide ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |