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": "Bookmark Surfer Daedalus", "description": "Easily manage browser bookmarks and navigate through them with keyboard or mouse", "version": "0.1.1", "permissions": [ "tabs", "activeTab", "bookmarks", "contextMenus", "notifications", "storage", "unlimitedStorage" ], "host_permissions": [ "<all_urls>" ], "action": { "default_icon": { "19": "images\/icon.png" }, "default_popup": "html\/popup.html" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "js\/apiWrapper.js", "js\/content.js" ] } ], "options_ui": { "page": "html\/settings.html", "open_in_tab": true }, "commands": { "prevBookmark": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Navigate to previous bookmark in the folder" }, "nextBookmark": { "suggested_key": { "default": "Ctrl+Shift+L" }, "description": "Navigate to next bookmark in the folder" }, "skipBookmark": { "description": "Skip this bookmark in its folder" }, "manage": { "description": "Open manage window" } }, "icons": { "16": "images\/icon.png", "128": "images\/bigIcon.png" } }