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 |
| 官方網址 | 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"
}
} | |