Shoto

Notion search from URL bar

Cos'è Shoto?

Shoto è un'estensione di Chrome sviluppata da Sergei Sleptsov, e la sua funzione principale è "Notion search from URL bar".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Shoto

Scarica i file di estensione Shoto in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Shoto Shoto
ID lnnlchbbenkmimmhdfnljleabhajfebl
URL Ufficiale https://chrome.google.com/webstore/detail/shoto/lnnlchbbenkmimmhdfnljleabhajfebl
Descrizione Notion search from URL bar
Dimensione del File 510 KB
Conteggio Installazioni 225
Versione Corrente 1.1.0
Ultimo Aggiornamento 2022-01-25
Data di Pubblicazione 2021-07-18
Valutazione 3.57/5 Totale 7 Valutazioni
Sviluppatore Sergei Sleptsov
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ssleptsov/shoto
URL della Pagina di Aiuto https://github.com/ssleptsov/shoto/issues
Lingue Supportate 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"
    }
}