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 Manager + Quick Search",
"description": "Search, organize, and manage your bookmarks the smart way. Instant results every time.",
"version": "1.1.0",
"action": {
"default_title": "Bookmark Manager",
"default_icon": "images\/icon.png"
},
"permissions": [
"storage",
"sidePanel",
"bookmarks",
"tabs",
"windows",
"contextMenus"
],
"side_panel": {
"default_path": "sidepanel.html"
},
"icons": {
"16": "images\/icon.png",
"48": "images\/icon.png",
"128": "images\/icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"css": [
"style.css"
],
"run_at": "document_start"
}
],
"commands": {
"toggle-search": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
},
"description": "Toggle bookmark search"
}
},
"web_accessible_resources": [
{
"resources": [
"style.css",
"images\/copy-text-easily.png",
"images\/link-snapper.png",
"images\/text-to-image.png"
],
"matches": [
"<all_urls>"
]
}
]
}