Shoto

Notion search from URL bar

什么是Shoto?

Shoto是由Sergei Sleptsov开发的Chrome扩展程序,该扩展的主要功能是“Notion search from URL bar”。

扩展截图

screenshot

下载Shoto扩展crx文件

下载Shoto扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Shoto Shoto
ID lnnlchbbenkmimmhdfnljleabhajfebl
官方URL https://chrome.google.com/webstore/detail/shoto/lnnlchbbenkmimmhdfnljleabhajfebl
简介 Notion search from URL bar
文件大小 510 KB
安装次数 225
当前版本 1.1.0
更新时间 2022-01-25
上架时间 2021-07-18
评分 3.57/5 共7次评分
开发者 Sergei Sleptsov
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ssleptsov/shoto
帮助页面URL https://github.com/ssleptsov/shoto/issues
支持的语言 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"
    }
}