Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "QuickLens - Search Screen with Google Lens",
"version": "5.2",
"description": "QuickLens brings Google Lens to your browser. Easily search your screen or any image for product details, translations, and more.",
"permissions": [
"activeTab",
"contextMenus",
"scripting",
"storage",
"webNavigation",
"tabs",
"windows"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*",
"https:\/\/www.google.com\/*",
"https:\/\/lens.google.com\/*",
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"options_page": "options-new.html",
"commands": {
"search_screen": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Search the screen with Google Lens"
},
"search_area": {
"suggested_key": {
"default": "Alt+W"
},
"description": "Search selected area with Google Lens"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/*",
"*:\/\/*.images.google.ca\/*"
],
"js": [
"content.js"
]
},
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"js": [
"page.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/lens.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
},
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*:\/\/accounts.google.com\/*",
"*:\/\/login.microsoftonline.com\/*",
"*:\/\/www.facebook.com\/login\/*",
"*:\/\/github.com\/login\/*",
"*:\/\/auth0.com\/*",
"*:\/\/*.auth0.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"welcome.html",
"welcome.js",
"img\/QuickLens Wordmark Logo.svg"
],
"matches": [
"<all_urls>"
]
}
]
}