Remote for Slides
Slides can be operated remotely.
什么是Remote for Slides?
Remote for Slides是由yumekiti开发的Chrome扩展程序,该扩展的主要功能是“Slides can be operated remotely.”。
扩展截图
下载Remote for Slides扩展crx文件
下载Remote for Slides扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
1人のユーザーがスライドを共有し、別ユーザーがリモートでスライドを操作できるようになります。
## 下記リンク先に移行しました
https://chrome.google.com/webstore/detail/naimcoenmacdfkjnhphjgikaigaedgae?authuser=0&hl=ja 扩展基本信息
| 名称 | |
| ID | fligbndglehjjifipgpboddhdgfondjo |
| 官方URL | https://chrome.google.com/webstore/detail/fligbndglehjjifipgpboddhdgfondjo |
| 简介 | Slides can be operated remotely. |
| 文件大小 | 231 KB |
| 安装次数 | 110 |
| 当前版本 | 1.7 |
| 更新时间 | 2023-08-18 |
| 上架时间 | 2022-11-21 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | yumekiti |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Remote for Slides",
"description": "Slides can be operated remotely.",
"version": "1.7",
"manifest_version": 3,
"content_scripts": [
{
"js": [
"main.js"
],
"matches": [
"https:\/\/remote.yumekiti.net\/*"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"https:\/\/remote.yumekiti.net\/*"
],
"action": {
"default_icon": {
"16": "\/images\/16.png",
"32": "\/images\/32.png",
"48": "\/images\/48.png",
"128": "\/images\/128.png"
}
},
"icons": {
"16": "\/images\/16.png",
"32": "\/images\/32.png",
"48": "\/images\/48.png",
"128": "\/images\/128.png"
}
} | |