Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 20, 2025.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Screen Lens - Search Screen with Google Lens",
"version": "2.6.7",
"description": "Search your screen with Google Lens in a single click!",
"permissions": [
"activeTab",
"contextMenus",
"scripting",
"storage",
"webNavigation",
"tabs"
],
"host_permissions": [
"*:\/\/*.images.google.ca\/*",
"https:\/\/www.youtube.com\/*",
"https:\/\/www.google.com\/*",
"https:\/\/www.google.ca\/*",
"https:\/\/www.google.co.uk\/*",
"https:\/\/www.google.de\/*",
"https:\/\/www.google.fr\/*",
"https:\/\/www.google.es\/*",
"https:\/\/www.google.it\/*",
"https:\/\/www.google.nl\/*",
"https:\/\/www.google.com.au\/*",
"https:\/\/www.google.com.br\/*",
"https:\/\/www.google.pl\/*",
"https:\/\/www.google.ru\/*",
"https:\/\/www.google.co.in\/*",
"https:\/\/www.google.com.mx\/*",
"https:\/\/www.google.com.ar\/*",
"https:\/\/www.google.co.jp\/*",
"https:\/\/www.google.ch\/*",
"https:\/\/www.google.se\/*",
"https:\/\/www.google.no\/*",
"https:\/\/www.google.com.tr\/*",
"https:\/\/lens.google.com\/*"
],
"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.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\/*"
],
"js": [
"page.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/lens.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"screen.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}