Shoto
Notion search from URL bar
What is Shoto?
Shoto is a Chrome extension developed by Sergei Sleptsov, and its main feature is "Notion search from URL bar".
Extension Screenshots
Download Shoto Extension CRX File
Download Shoto extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Notion search inside the URL bar.
Allow quickly find content from your notion workspace without switching tabs.
Just type '/' + 'Space or Tab' and your search term in URL bar.
New in version: 1.1.0
- Added options page to configure search
- Added setting to open a result in a new tab or same tab
- Added setting to search title only, for faster search within large notion workspaces Extension Basic Information
| Name | |
| ID | lnnlchbbenkmimmhdfnljleabhajfebl |
| Official URL | https://chrome.google.com/webstore/detail/shoto/lnnlchbbenkmimmhdfnljleabhajfebl |
| Description | Notion search from URL bar |
| File Size | 510 KB |
| Installation Count | 225 |
| Current Version | 1.1.0 |
| Last Updated | 2022-01-25 |
| Publish Date | 2021-07-18 |
| Rating | 3.57/5 Total 7 Ratings |
| Developer | Sergei Sleptsov |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://github.com/ssleptsov/shoto |
| Help Page URL | https://github.com/ssleptsov/shoto/issues |
| Supported Languages | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Shoto",
"description": "Notion search from URL bar",
"version": "1.1.0",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"omnibox": {
"keyword": "\/"
},
"options_page": "options.html",
"manifest_version": 2,
"browser_action": {
"default_icon": {
"16": "assets\/shoto16.png",
"32": "assets\/shoto32.png"
}
},
"permissions": [
"activeTab",
"storage",
"*:\/\/www.notion.so\/*"
],
"icons": {
"16": "assets\/shoto16.png",
"32": "assets\/shoto32.png",
"48": "assets\/shoto48.png",
"128": "assets\/shoto128.png"
}
} | |