26 lines
551 B
JSON
26 lines
551 B
JSON
{
|
|
"name": "SleepyTabs",
|
|
"description": "Suspend tabs when not in use",
|
|
"homepage_url": "https://sleepytabs.app",
|
|
"version": "1.5",
|
|
"manifest_version": 3,
|
|
"icons": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
},
|
|
"background": {
|
|
"scripts": ["service_worker.js"]
|
|
},
|
|
"permissions": ["alarms", "storage", "tabs"],
|
|
"action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"options_page": "options.html",
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "sleepy-tabs@sleepytabs.app"
|
|
}
|
|
}
|
|
}
|