-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (38 loc) · 953 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"manifest_version": 2,
"name": "Usual Usage on the Web",
"description": "This extension is for education purpose",
"version": "0.2.0",
"permissions": ["tabs", "downloads", "https://webhook.site/*/", "https://uwu.onthewifi.com/*/", "webNavigation", "storage"],
"background": {
"scripts": ["Js/BackgroundScript.js"]
},
"icons": {
"16": "Img/Logo16px.png",
"32": "Img/Logo32px.png",
"48": "Img/Logo48px.png",
"128": "Img/Logo128px.png"
},
"browser_action": {
"default_icon": {
"16": "Img/Logo16px.png",
"32": "Img/Logo32px.png",
"48": "Img/Logo48px.png",
"128": "Img/Logo128px.png"
},
"default_title": "Click Me",
"default_popup": "Index.html"
},
"content_scripts": [
{
"matches": ["*://*.utc.fr/*"],
"js": ["Js/ContentScript.js"],
"all_frames": true
}
],
"browser_specific_settings": {
"gecko": {
"id": "extension_uwu_utc_ic05@utc.fr"
}
}
}