Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TabNap", "version": "0.2.0", "description": "Give your tabs a quick nap with context reminders and manage them with ease.", "permissions": [ "alarms", "activeTab", "storage", "unlimitedStorage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "sounds\/*.mp3" ], "matches": [ "<all_urls>" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }