Notion Global Block

Paste Notion Block URLs as a Global Block URL

Notion Global Block क्या है?

Notion Global Block Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Paste Notion Block URLs as a Global Block URL"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notion Global Block एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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