Notion Global Block
Paste Notion Block URLs as a Global Block URL
Was ist Notion Global Block?
Notion Global Block ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Paste Notion Block URLs as a Global Block URL".
Erweiterungsscreenshots
Notion Global Block-Erweiterungs-CRX-Datei herunterladen
Laden Sie Notion Global Block-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Notion Global Block |
ID | doipiaodbapjbeknpeaflggfegbfjofb |
Offizielle URL | https://chromewebstore.google.com/detail/notion-global-block/doipiaodbapjbeknpeaflggfegbfjofb |
Beschreibung | Paste Notion Block URLs as a Global Block URL |
Dateigröße | 33.48 KB |
Installationsanzahl | 662 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2020-04-22 |
Veröffentlichungsdatum | 2020-04-21 |
Bewertung | 4.56/5 Insgesamt 9 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |