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文件
下载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. 扩展基本信息
| 名称 | |
| 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"
}
} | |