CodinGame Screen Sharing
Screen share extension for CodinGame website
What is CodinGame Screen Sharing?
CodinGame Screen Sharing is a Chrome extension developed by https://www.codingame.com/work, and its main feature is "Screen share extension for CodinGame website".
Extension Screenshots
Download CodinGame Screen Sharing Extension CRX File
Download CodinGame Screen Sharing 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
Extension Basic Information
Name | ![]() |
ID | fjekblaegcggkkglcfocejonkhmkgkmo |
Official URL | https://chrome.google.com/webstore/detail/codingame-screen-sharing/fjekblaegcggkkglcfocejonkhmkgkmo |
Description | Screen share extension for CodinGame website |
File Size | 6.02 KB |
Installation Count | 47 |
Current Version | 1.0.0 |
Last Updated | 2018-08-01 |
Publish Date | 2018-08-01 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://www.codingame.com/work |
Payment Type | free |
Extension Website | https://www.codingame.com/work |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CodinGame Screen Sharing", "description": "Screen share extension for CodinGame website", "version": "1.0.0", "manifest_version": 2, "minimum_chrome_version": "34", "permissions": [ "desktopCapture" ], "content_scripts": [ { "matches": [ "*:\/\/*.codingame.com\/*", "http:\/\/localhost\/*" ], "js": [ ".\/content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "48": "logo.png" }, "browser_action": { "default_icon": "logo.png" }, "externally_connectable": { "matches": [ "*:\/\/*.codingame.com\/*", "http:\/\/localhost\/*" ] } } |