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.

Τι είναι το Noto - Notion URL shortener and beautifier;

Το Noto - Notion URL shortener and beautifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://noto.tools, και η κύρια λειτουργία του είναι "Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Noto - Notion URL shortener and beautifier

Λήψη αρχείων επέκτασης Noto - Notion URL shortener and beautifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Noto - Notion URL shortener and beautifier Noto - Notion URL shortener and beautifier
ID mlealbejkhhkdmafmpojnnmhdcnhfhod
Επίσημο URL https://chromewebstore.google.com/detail/noto-notion-url-shortener/mlealbejkhhkdmafmpojnnmhdcnhfhod
Περιγραφή Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.
Μέγεθος Αρχείου 387 KB
Αριθμός Εγκαταστάσεων 1,956
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2022-04-05
Ημερομηνία Δημοσίευσης 2022-03-24
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://noto.tools
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.noto.tools/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.noto.tools/
URL της Σελίδας Πολιτικής Απορρήτου https://www.noto.tools/privacy
Υποστηριζόμενες Γλώσσες 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"
    }
}