-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest_W3C.json
40 lines (40 loc) · 1.05 KB
/
manifest_W3C.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
{
"manifest_version": 3,
"name": "__MSG_extension_name__",
"version": "2.0.7",
"default_locale": "en",
"description": "__MSG_extension_description__",
"homepage_url": "https://github.com/ParkJeongseop/AuthAutoFill",
"author": "__MSG_developer__",
"icons": {
"128": "icon.png"
},
"action": {
"default_title": "__MSG_extension_name__",
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"js": [
"autofill.js"
],
"matches": ["http://*/*", "https://*/*", "file:///*"],
"run_at": "document_start",
"all_frames": true
}
],
"browser_specific_settings": {
"gecko": {
"id": "{6da0a5fd-a21a-4088-a586-c845619640b8}",
"strict_min_version": "58.0"
}
},
"developer": {
"name": "Jeongseop Park 박정섭",
"url": "https://www.parkjeongseop.com/?ref=authautofill"
}
}