-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
61 lines (61 loc) · 1.77 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
{
"manifest_version": 2,
"name": "Clippy",
"short_name": "Clippy Assistant",
"description": "Clippy MS Word Office assistant is now back to assist inside your browser!",
"version": "1.9.2",
"author": "Ante Barić (capJavert)",
"icons": {
"16": "assets/img/clippy-icon-16x16.png",
"48": "assets/img/clippy-icon-48x48.png",
"128": "assets/img/clippy-icon-128x128.png"
},
"browser_action": {
"default_title": "Clippy Assistant",
"default_icon": {
"16": "assets/img/clippy-icon-gray-48x48.png",
"24": "assets/img/clippy-icon-gray-48x48.png",
"32": "assets/img/clippy-icon-gray-48x48.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": [
"assets/css/clippy.css"
],
"js": [
"assets/js/jquery.min.js",
"assets/js/clippy.js",
"assets/js/agent.js",
"lib/index.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"assets/js/web-storage-object.js",
"lib/state.js"
],
"persistent": true
},
"web_accessible_resources": [
"assets/img/clippy.map.png"
],
"permissions": [
"activeTab",
"https://clippy-dictionary.kickass.website/*"
],
"externally_connectable": {
"matches": [
"http://localhost:8080/*",
"https://capjavert.github.com/*",
"https://antebaric.from.hr/*",
"http://antebaric.from.hr/*",
"https://kickass.website/*",
"https://clippy.kickass.website/*",
"https://*.capjavert.now.sh/*"
]
}
}