blob: fd08a870797f37fd0c27bf299d247a9610eb3f7a (
plain)
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
30
|
{
"name": "Remoting IT2Me",
"version": "1.0",
"description": "IT2Me-style remote support in Chrome.",
"app": {
"launch": {
"local_path": "choice.html"
}
},
"background_page": "background.html",
"icons": {
"128": "chromoting128.png"
},
"content_scripts": [
{
"matches": [
"https://chromoting-httpxmpp-oauth2-dev.corp.google.com/oauth2_trampoline",
"https://chromoting-httpxmpp-oauth2-dev.corp.google.com/oauth2_trampoline?*"
],
"js": ["cs_oauth2_trampoline.js"]
}
],
"permissions": [
"tabs",
"https://accounts.google.com/o/oauth2/*",
"https://www.google.com/accounts/*",
"https://www.googleapis.com/chromoting/*"
],
"PLUGINS": "PLACEHOLDER"
}
|