forked from muaz-khan/WebRTC-Experiment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
29 lines (29 loc) · 871 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name" : "Tab Capturing & Sharing",
"author": "Muaz Khan",
"version" : "1.3",
"manifest_version" : 2,
"description" : "This WebRTC tab capturing extension captures tab and shares using WebRTC Peer-to-Peer connections.",
"homepage_url": "https://www.webrtc-experiment.com/",
"background": {
"scripts": ["RTCMultiConnection-v1.9.js", "tab-capturing.js"],
"persistent": false
},
"permissions": [
"tabCapture", "activeTab", "contextMenus"
],
"browser_action" : {
"default_icon" : "images/tabCapture22.png",
"default_title" : "Share this tab!"
},
"icons" : {
"16" : "images/tabCapture16.png",
"22" : "images/tabCapture22.png",
"32" : "images/tabCapture32.png",
"48" : "images/tabCapture48.png",
"128": "images/tabCapture128.png"
},
"web_accessible_resources": [
"images/tabCapture48.png"
]
}