Noto - Notion URL shortener and beautifier

Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.

Co to jest Noto - Notion URL shortener and beautifier?

Noto - Notion URL shortener and beautifier to rozszerzenie Chrome opracowane przez https://noto.tools, a jego główną funkcją jest „Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Noto - Notion URL shortener and beautifier

Pobierz pliki rozszerzeń Noto - Notion URL shortener and beautifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Noto (www.noto.tools) integrates seamlessly with Notion (www.notion.so) and allows easy creation of short URLs to pages, databases, and blocks. In addition, it can create beautiful links and generate HTML and Markdown code.                    

Podstawowe informacje o rozszerzeniu

Nazwa Noto - Notion URL shortener and beautifier Noto - Notion URL shortener and beautifier
ID mlealbejkhhkdmafmpojnnmhdcnhfhod
Oficjalny URL https://chromewebstore.google.com/detail/noto-notion-url-shortener/mlealbejkhhkdmafmpojnnmhdcnhfhod
Opis Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.
Rozmiar pliku 387 KB
Liczba instalacji 1,956
Aktualna Wersja 1.0.6
Ostatnia Aktualizacja 2022-04-05
Data Publikacji 2022-03-24
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper https://noto.tools
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.noto.tools/
Adres URL Strony Pomocy https://www.noto.tools/
Adres URL Strony Polityki Prywatności https://www.noto.tools/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Noto - Notion URL shortener and beautifier",
    "short_name": "Noto",
    "version": "1.0.6",
    "description": "Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.",
    "author": "Niklas Salmoukas",
    "homepage_url": "https:\/\/www.noto.tools",
    "icons": {
        "16": "graphics\/icons\/16.png",
        "48": "graphics\/icons\/48.png",
        "128": "graphics\/icons\/128.png"
    },
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/www.notion.so\/"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "graphics\/*"
            ],
            "matches": [
                "https:\/\/www.notion.so\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "service.js"
    }
}