-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (29 loc) · 932 Bytes
/
manifest.json
File metadata and controls
36 lines (29 loc) · 932 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
34
35
36
{
"manifest_version": 2,
"name": "StackOverflowProductivityReturn",
"version": "1.1",
"browser_action": {
"default_icon": "icons/baseline_pan_tool_black_18dp.png",
"default_title": "Stack Overflow Productivity Return",
"default_popup": "popup/choose_sidebar.html"
},
"description": "No more distractions. Increase your productivity by only allowing specific elements on the StackOverflow sidebar. Or show none at all. You choose.",
"homepage_url": "https://github.com/MaxGreil/StackOverflowProductivityReturn",
"icons": {
"18": "icons/baseline_pan_tool_black_18dp.png"
},
"permissions": [
"storage",
"activeTab"
],
"content_scripts": [{
"matches": ["*://*.stackoverflow.com/*"],
"js": ["content_scripts/sidebar.js"]
}],
"browser_specific_settings": {
"gecko": {
"id": "StackOverflow@ProductivityReturn.com",
"strict_min_version": "84.0"
}
}
}