Notion Global Block

Paste Notion Block URLs as a Global Block URL

Vad är Notion Global Block?

Notion Global Block är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Paste Notion Block URLs as a Global Block URL".

Tilläggsskärmbilder

screenshot

Ladda ner Notion Global Block-förlängningens CRX-fil

Ladda ner Notion Global Block-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Notion Global Block Notion Global Block
ID doipiaodbapjbeknpeaflggfegbfjofb
Officiell webbadress https://chromewebstore.google.com/detail/notion-global-block/doipiaodbapjbeknpeaflggfegbfjofb
Beskrivning Paste Notion Block URLs as a Global Block URL
Filstorlek 33.48 KB
Antal Installationer 662
Aktuell Version 0.1.1
Senast Uppdaterad 2020-04-22
Publiceringsdatum 2020-04-21
Betyg 4.56/5 Totalt 9 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}