WebBoard Screen Capturing
Capture full-screen or specific application's screen on web-whiteboard.io!
What is WebBoard Screen Capturing?
WebBoard Screen Capturing is a Chrome extension developed by CodeLabs Studio, and its main feature is "Capture full-screen or specific application's screen on web-whiteboard.io!".
Extension Screenshots
Download WebBoard Screen Capturing Extension CRX File
Download WebBoard Screen Capturing extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is a webboard.io screen capturing extension for Google Chrome.
Extension Basic Information
Name | WebBoard Screen Capturing |
ID | fbmoemmfcifjcokcikkhgemdedhmpcpn |
Official URL | https://chromewebstore.google.com/detail/webboard-screen-capturing/fbmoemmfcifjcokcikkhgemdedhmpcpn |
Description | Capture full-screen or specific application's screen on web-whiteboard.io! |
File Size | 9.03 KB |
Installation Count | 23 |
Current Version | 4.0 |
Last Updated | 2020-03-02 |
Publish Date | 2020-03-02 |
Rating | 5.00/5 Total 2 Ratings |
Developer | CodeLabs Studio |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebBoard Screen Capturing", "author": "Marko Mileti\u0107", "version": "4.0", "manifest_version": 2, "minimum_chrome_version": "34", "description": "Capture full-screen or specific application's screen on web-whiteboard.io!", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/*.web-whiteboard.io\/*" ] } ], "externally_connectable": { "matches": [ "https:\/\/*.web-whiteboard.io\/*" ] }, "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |