{ "manifest_version": 2, "name": "Ora", "version": "0.2", "description": "See how much time you spend on each website and set limits", "icons": { "512": "icons/watch.svg" }, "browser_action": { "default_icon": { "512": "icons/watch.svg" }, "default_title": "Ora Dashboard", "theme_icons": [ { "light": "./icons/watch.svg", "dark": "./icons/watch.svg", "size": 512 } ] }, "permissions": ["", "tabs", "unlimitedStorage", "storage"], "background": { "scripts": ["./src/background/index.js"] }, "options_ui": { "page": "./src/options/index.html" }, "content_scripts": [ { "matches": [""], "js": ["./src/client/index.js"] } ], "web_accessible_resources": ["./icons/watch.svg"] }