Screen Capturing
This is a copy of Muaz Khan's screen capture extension, the only difference is that fullscreen is removed from screen options.
Was ist Screen Capturing?
Screen Capturing ist eine Chrome-Erweiterung, die von https://etomon.com entwickelt wurde, und ihr Hauptmerkmal ist "This is a copy of Muaz Khan's screen capture extension, the only difference is that fullscreen is removed from screen options.".
Erweiterungsscreenshots
Screen Capturing-Erweiterungs-CRX-Datei herunterladen
Laden Sie Screen Capturing-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
You can share screen using this plugin. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bdpkeokmobkmmgghknpedglcickgdnih |
| Offizielle URL | https://chromewebstore.google.com/detail/screen-capturing/bdpkeokmobkmmgghknpedglcickgdnih |
| Beschreibung | This is a copy of Muaz Khan's screen capture extension, the only difference is that fullscreen is removed from screen options. |
| Dateigröße | 7.77 KB |
| Installationsanzahl | 32 |
| Aktuelle Version | 3.6.5 |
| Letztes Update | 2018-09-12 |
| Veröffentlichungsdatum | 2018-09-12 |
| Entwickler | https://etomon.com |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |