forked from mohamedmansour/reload-all-tabs-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (33 loc) · 826 Bytes
/
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
{
"name": "Reload All Tabs",
"version": "4.3.0",
"manifest_version": 3,
"description": "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": "img/icon128.png",
"default_title": "Reload All Tabs"
},
"background": {
"scripts": ["js/functions.js", "js/reload_controller.js"],
"persistent": false
},
"options_page": "options.html",
"permissions": [
"storage",
"tabs",
"contextMenus"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt + Shift + R",
"mac": "Alt + Shift + R"
}
}
}
}