Inspect and view changes in mei's lens source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "mei's lens",
"version": "1.0.5",
"description": "mei's lens provides search the web by image feature for web pages.",
"permissions": [
"contextMenus",
"downloads",
"storage",
"identity"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"default_title": "Turn on / off mei's lens for searching by image."
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content-script.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"*://*/*"
],
"resources": [
"/mjs/*"
]
}
],
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+L",
"mac": "Command+Shift+L",
"chromeos": "Ctrl+Shift+L",
"linux": "Ctrl+Shift+L"
}
}
},
"options_page": "options.html",
"oauth2": {
"client_id": "1045255172658-bipqhbbn4l2rss06vscout6m3nmqac71.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/userinfo.email"
]
},
"manifest_version": 3
}