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.

Was ist Noto - Notion URL shortener and beautifier?

Noto - Notion URL shortener and beautifier ist eine Chrome-Erweiterung, die von https://noto.tools entwickelt wurde, und ihr Hauptmerkmal ist "Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.".

Erweiterungsscreenshots

screenshot
screenshot

Noto - Notion URL shortener and beautifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Noto - Notion URL shortener and beautifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Noto - Notion URL shortener and beautifier Noto - Notion URL shortener and beautifier
ID mlealbejkhhkdmafmpojnnmhdcnhfhod
Offizielle URL https://chromewebstore.google.com/detail/noto-notion-url-shortener/mlealbejkhhkdmafmpojnnmhdcnhfhod
Beschreibung Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.
Dateigröße 387 KB
Installationsanzahl 1,956
Aktuelle Version 1.0.6
Letztes Update 2022-04-05
Veröffentlichungsdatum 2022-03-24
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler https://noto.tools
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.noto.tools/
Hilfeseite URL https://www.noto.tools/
URL der Datenschutzrichtlinien-Seite https://www.noto.tools/privacy
Unterstützte Sprachen 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"
    }
}