Shoto

Notion search from URL bar

Shoto란 무엇입니까?

Shoto은(는) Sergei Sleptsov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notion search from URL bar"입니다.

확장 프로그램 스크린샷

screenshot

Shoto 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}