-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
67 lines (67 loc) · 1.38 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "TLmanaGer",
"version": "1.0.4",
"manifest_version": 2,
"description": "Desarrollamiento tool",
"homepage_url": "https://github.com/joelthorner",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"options_page": "src/options/index.html",
"browser_action": {
"default_icon": "icons/icon19.png",
"default_title": "Que vols dirt?",
"default_popup": "src/browser_action/browser_action.html"
},
"permissions": [
"storage",
"chrome://favicon/",
"clipboardRead",
"clipboardWrite",
"contentSettings",
"contextMenus",
"cookies",
"history",
"idle",
"management",
"notifications",
"tabs",
"*://*/*"
],
"content_scripts": [
{
"matches": [
"https://www.google.com/*"
],
"css": [
"src/inject/inject.css"
]
},
{
"matches": [
"http://8x-os.logicommerce.net/*"
],
"js": [
"js/jquery-3.3.1.min.js", "js/initOptions.js", "src/inject/inject.js"
]
},
{
"matches": [
"http://*.sandbox.logicommerce.net/*"
],
"js": [
"src/inject/injectOpenSaas.js"
]
}
],
"web_accessible_resources": [
"js/executeUsingTabVars.js"
]
}