-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 869 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
{
"name": "Cowin Translator",
"short_name": "Cowin Translation",
"manifest_version": 2,
"version": "0.3.0",
"description": "Replace Text in cowin page",
"author": "FSMI",
"content_scripts":
[
{
"matches": ["https://www.cowin.gov.in/*"],
"css": ["style.css"],
"js": ["content_script.js"],
"all_frames":true,
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "icon/icon.jpg",
"default_popup": "popup/extension.html",
"theme_icons": [{
"light": "icon/icon-32x32.jpg",
"dark": "icon/icon-32x32.jpg",
"size": 32
},
{
"light": "icon/icon-64x64.jpg",
"dark": "icon/icon-64x64.jpg",
"size": 64
}],
"default_title": "CoWin Translator"
},
"permissions": [
"activeTab"
],
"web_accessible_resources":["data/json/*.json"]
}