-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
57 lines (57 loc) · 1.2 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "כלי עזר לעריכה במכלול",
"description": "כלי עזר לעריכה במכלול וייבוא ערכים מוויקיפדיה.",
"version": "2.2.5",
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"http://he.wikipedia.org/",
"https://he.wikipedia.org/",
"http://www.hamichlol.org.il/",
"https://www.hamichlol.org.il/",
"tabs",
"storage"
],
"background": {
"scripts": [
"jquery-2.0.2.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://he.wikipedia.org/*"
],
"css": [
"content.css"
],
"js": [
"jquery-2.0.2.js",
"wikipedia.js"
]
},
{
"matches": [
"http://www.hamichlol.org.il/*",
"https://www.hamichlol.org.il/*"
],
"css": [
"content.css"
],
"js": [
"jquery-2.0.2.js",
"hamichlol.js"
]
}
],
"icons": {
"128": "icon.png"
},
"web_accessible_resources": [
"icon.png"
]
}