Screen Capturing
This is a copy of Muaz Khan's screen capture extension, the only difference is that fullscreen is removed from screen options.
什么是Screen Capturing?
Screen Capturing是由https://etomon.com开发的Chrome扩展程序,该扩展的主要功能是“This is a copy of Muaz Khan's screen capture extension, the only difference is that fullscreen is removed from screen options.”。
扩展截图
下载Screen Capturing扩展crx文件
下载Screen Capturing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You can share screen using this plugin. 扩展基本信息
| 名称 | |
| ID | bdpkeokmobkmmgghknpedglcickgdnih |
| 官方URL | https://chromewebstore.google.com/detail/screen-capturing/bdpkeokmobkmmgghknpedglcickgdnih |
| 简介 | This is a copy of Muaz Khan's screen capture extension, the only difference is that fullscreen is removed from screen options. |
| 文件大小 | 7.77 KB |
| 安装次数 | 32 |
| 当前版本 | 3.6.5 |
| 更新时间 | 2018-09-12 |
| 上架时间 | 2018-09-12 |
| 开发者 | https://etomon.com |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"author": "Zhenyu Yang",
"background": {
"persistent": false,
"scripts": [
"background-script.js"
]
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content-script.js"
],
"matches": [
"https:\/\/etomon.com\/*",
"https:\/\/etomon.com:9999\/*",
"https:\/\/www.etomon.com\/*",
"https:\/\/www.etomon.com:9999\/*",
"http:\/\/localhost:4200\/*",
"https:\/\/localhost:4200\/*"
],
"run_at": "document_end"
}
],
"description": "This is a copy of Muaz Khan's screen capture extension, the only difference is that fullscreen is removed from screen options.",
"homepage_url": "https:\/\/www.webrtc-experiment.com\/",
"icons": {
"48": "icon.png"
},
"manifest_version": 2,
"minimum_chrome_version": "34",
"name": "Screen Capturing",
"permissions": [
"desktopCapture"
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "3.6.5",
"web_accessible_resources": [
"icon.png"
]
} | |