Searchlight Remote for Google Slides
Easily turn your smartphone into a Google Slides presentation remote
什么是Searchlight Remote for Google Slides?
Searchlight Remote for Google Slides是由Joey Cheng开发的Chrome扩展程序,该扩展的主要功能是“Easily turn your smartphone into a Google Slides presentation remote”。
扩展截图
下载Searchlight Remote for Google Slides扩展crx文件
下载Searchlight Remote for Google Slides扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Speaking at conferences? Focus on what matters with Searchlight.
Searchlight is a super-duper-fast Google Slides remote inspired by Logitech Spotlight. Navigate between slides, and activate the spotlight-pointer with simple touch gestures. Try it!
Your privacy matters. Searchlight uses WebRTC for connectivity between the remote and presentation. So, devices communicate peer-to-peer once connection is established, none of your data goes through our servers, no trace, no fuss. 扩展基本信息
| 名称 | |
| ID | mhpohiaafkokgdhoapjhmplecibolkod |
| 官方URL | https://chromewebstore.google.com/detail/searchlight-remote-for-go/mhpohiaafkokgdhoapjhmplecibolkod |
| 简介 | Easily turn your smartphone into a Google Slides presentation remote |
| 文件大小 | 69.34 KB |
| 安装次数 | 916 |
| 当前版本 | 2.0.4 |
| 更新时间 | 2021-01-21 |
| 上架时间 | 2019-10-09 |
| 评分 | 4.00/5 共9次评分 |
| 开发者 | Joey Cheng |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "2.0.4",
"name": "Searchlight Remote for Google Slides",
"description": "Easily turn your smartphone into a Google Slides presentation remote",
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/presentation\/d\/*"
],
"js": [
"start.bundle.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.bundle.js"
]
},
"permissions": [
"https:\/\/docs.google.com\/presentation\/d\/*"
],
"minimum_chrome_version": "61",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"content-script.css"
]
} | |