Simplest Desktop Sharing App on the Planet!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "TuTu | Simple Desktop Sharing App !",
"description": "Simplest Desktop Sharing App on the Planet!",
"short_name": "Share Screen",
"version": "1.26",
"icons": {
"16": "icon48.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon128.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background-script.js"
],
"persistent": true
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https://tutuclick.com/*",
"https://tutushare.com/*"
]
}
],
"permissions": [
"activeTab",
"tabs",
"desktopCapture",
"background",
"sessions",
"cookies",
"identity",
"identity.email"
],
"oauth2": {
"client_id": "858510293419-8cvsu04dncc6q7mvg8cd2vipbl5384jp.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email"
]
}
}