Notion search assistant will display relevant search result upon a search on configured search engine
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",
"description": "",
"version": "0.7.0",
"__DEV__": false,
"name": "Notion Search Assistant",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"webNavigation",
"cookies",
"webRequest"
],
"web_accessible_resources": [
{
"resources": [
"popup.html"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"64": "/images/notion-search-assistant-64.png",
"128": "/images/notion-search-assistant-128.png",
"256": "/images/notion-search-assistant-256.png"
}
},
"icons": {
"64": "/images/notion-search-assistant-64.png",
"128": "/images/notion-search-assistant-128.png",
"256": "/images/notion-search-assistant-256.png"
},
"options_page": "options.html",
"content_scripts": [],
"host_permissions": [
"*://*/*"
]
}