-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 905 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 905 Bytes
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
{
"manifest_version": 3,
"name": "OIS ISTUN Security Code Helper",
"version": "1.0",
"description": "Automates the security code input process for ois.istun.edu.tr.",
"permissions": ["storage", "activeTab"],
"host_permissions": ["https://ois.istun.edu.tr/*"],
"background": {
"service_worker": "src/background.js"
},
"icons": {
"16": "icons/extension_icon16.png",
"32": "icons/extension_icon32.png",
"48": "icons/extension_icon48.png",
"128": "icons/extension_icon128.png"
},
"content_scripts": [
{
"matches": ["https://ois.istun.edu.tr/*"],
"js": ["src/styles-injector.js", "src/theme-injector.js", "src/content.js"]
}
],
"web_accessible_resources": [
{
"resources": ["style/*.css"],
"matches": ["https://ois.istun.edu.tr/*"]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
}
}