Notion Global Block
Paste Notion Block URLs as a Global Block URL
Qu'est-ce que Notion Global Block ?
Notion Global Block est une extension Chrome développée par Unknown, et sa fonction principale est "Paste Notion Block URLs as a Global Block URL".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Notion Global Block
Téléchargez les fichiers d'extension Notion Global Block au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | doipiaodbapjbeknpeaflggfegbfjofb |
URL Officiel | https://chromewebstore.google.com/detail/notion-global-block/doipiaodbapjbeknpeaflggfegbfjofb |
Description | Paste Notion Block URLs as a Global Block URL |
Taille du Fichier | 33.48 KB |
Nombre d'Installations | 662 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2020-04-22 |
Date de Publication | 2020-04-21 |
Évaluation | 4.56/5 Total 9 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |