{ "manifest_version": 2, "name": "LinkSync", "version": "1.0.0", "description": "Sync bookmarks with LinkSyncServer", "permissions": [ "bookmarks", "storage", "activeTab", "tabs", "" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "48": "icons/icon-48.png", "96": "icons/icon-96.png" }, "default_title": "LinkSync" }, "background": { "page": "background.html" }, "content_scripts": [ { "matches": [""], "js": ["content/content.js"], "run_at": "document_idle" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "browser_specific_settings": { "gecko": { "id": "linksync@example.com", "strict_min_version": "109.0" } } }