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"
    }
}