Inspect and view changes in Google Drive™ Omnibar Search 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",
"manifest_version": 3,
"version": "1.0.32",
"name": "Google Drive™ Omnibar Search",
"background": {
"service_worker": "background.js"
},
"description": "Will extend your chrome search, with search in Google Drive",
"action": {
"default_popup": "popup.html",
"default_icon": "assets/icon-48.png"
},
"icons": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"omnibox": {
"keyword": "drive"
},
"oauth2": {
"client_id": "153135293757-7n3b9muq1rrrrg6hnkpi3bmbmujk9ntm.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.readonly"
]
},
"permissions": [
"identity",
"storage"
],
"host_permissions": [
"https://www.googleapis.com/*"
],
"minimum_chrome_version": "88"
}