-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (44 loc) · 1.39 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "LPU UMS Extension",
"description": "Now login to LPU UMS is Made simple by this litte Cuddy.",
"version": "4.4.3",
"permissions": ["activeTab", "tabs", "storage"],
"background": {
"scripts": ["js/background.js"],
"persistent": false
},
"icons": {
"16": "images/Icon-16.png",
"24": "images/Icon-24.png",
"32": "images/Icon-32.png",
"48": "images/Icon-48.png",
"128": "images/Icon-128.png"
},
"content_scripts": [{
"matches": ["https://*.lpu.in/*"],
"js": ["js/jquery-3.2.1.min.js", "js/content.js"]
}],
"options_page": "option/options.html",
"manifest_version": 2,
"browser_action": {
"default_icon": {
"16": "images/Icon-16.png",
"24": "images/Icon-24.png",
"32": "images/Icon-32.png",
"48": "images/Icon-48.png",
"128": "images/Icon-128.png"
},
"default_popup": "index.html",
"default_title": "EASY WAY TO LOGIN UMS"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "MacCtrl+Shift+U"
},
"description": "Shortcut to open LPU UMS Extension"
}
}
}