Notion Global Block

Paste Notion Block URLs as a Global Block URL

Notion Global Blockคืออะไร?

Notion Global Block เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Paste Notion Block URLs as a Global Block URL"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion Global Block

ดาวน์โหลดไฟล์ส่วนขยาย Notion Global Block ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Lightweight extension that adds the ability to paste Notion block urls from the clipboard as a global block url

1. Create the block you want to make global
2. Click the block's ⫶⫶ menu and select "Copy Link"
3. Right click inside another Notion page where you'd like to place a copy of the block and select "Paste Global Block URL"
4. Select "Link to Page"
5. Changes to any copies of the global block will be synced across all of them                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Notion Global Block Notion Global Block
ID doipiaodbapjbeknpeaflggfegbfjofb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/notion-global-block/doipiaodbapjbeknpeaflggfegbfjofb
คำอธิบาย Paste Notion Block URLs as a Global Block URL
ขนาดไฟล์ 33.48 KB
จำนวนการติดตั้ง 662
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2020-04-22
วันที่เผยแพร่ 2020-04-21
คะแนน 4.56/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion Global Block",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Paste Notion Block URLs as a Global Block URL",
    "permissions": [
        "contextMenus",
        "clipboardRead",
        "activeTab"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.notion.so\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}