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 Info", "version": "2.14.0", "description": "The extension improves the browser's capabilities for working with bookmarks", "homepage_url": "https:\/\/github.com\/PavelPoroskov\/my-web-extensions\/", "permissions": [ "bookmarks", "contextMenus", "history", "storage", "tabs" ], "background": { "service_worker": "bkm-info-sw.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "action": { "default_popup": "popup\/popup.html" }, "commands": { "ADD_BOOKMARK_FROM_INPUT_KBD": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Bookmark page. Get folder name from input" }, "ADD_BOOKMARK_FROM_SELECTION_KBD": { "suggested_key": { "default": "Ctrl+Shift+L" }, "description": "Bookmark page. Get folder name from selection" } }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" } }