-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (44 loc) · 1.05 KB
/
manifest.json
File metadata and controls
47 lines (44 loc) · 1.05 KB
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
{
"manifest_version": 2, "name": "Wise Tools",
"version": "1.3.0",
"description": "A collection of tools to modify and enhance Wise (wise.com) for faster use at HCB Operations.",
"author": "Leo",
"homepage_url": "https://github.com/leowilkin/wise-tools",
"icons": {
"16": "assets/wise.png",
"32": "assets/wise.png",
"48": "assets/wise.png",
"128": "assets/wise.png"
},
"permissions": [
"activeTab",
"storage",
"*://wise.com/*",
"*://*.wise.com/*"
],
"content_scripts": [
{
"matches": [
"*://wise.com/*",
"*://*.wise.com/*"
],
"js": ["content.js"],
"css": ["styles.css"]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_title": "Wise Tools",
"default_icon": {
"16": "assets/wise.png",
"32": "assets/wise.png",
"48": "assets/wise.png",
"128": "assets/wise.png"
} },
"browser_specific_settings": {
"gecko": {
"id": "wise-tools@extension.local",
"strict_min_version": "79.0"
}
}
}