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.

Apa itu Noto - Notion URL shortener and beautifier?

Noto - Notion URL shortener and beautifier adalah ekstensi Chrome yang dikembangkan oleh https://noto.tools, dan fitur utamanya adalah "Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Noto - Notion URL shortener and beautifier

Unduh file ekstensi Noto - Notion URL shortener and beautifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Noto - Notion URL shortener and beautifier Noto - Notion URL shortener and beautifier
ID mlealbejkhhkdmafmpojnnmhdcnhfhod
URL Resmi https://chromewebstore.google.com/detail/noto-notion-url-shortener/mlealbejkhhkdmafmpojnnmhdcnhfhod
Deskripsi Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.
Ukuran File 387 KB
Jumlah Instalasi 1,956
Versi Saat Ini 1.0.6
Terakhir Diperbarui 2022-04-05
Tanggal Publikasi 2022-03-24
Penilaian 5.00/5 Total 5 Penilaian
Pengembang https://noto.tools
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.noto.tools/
URL Halaman Bantuan https://www.noto.tools/
URL Halaman Kebijakan Privasi https://www.noto.tools/privacy
Bahasa yang Didukung 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"
    }
}