Notion Global Block
Paste Notion Block URLs as a Global Block URL
Notion Global Blockとは何ですか?
Notion Global BlockはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Paste Notion Block URLs as a Global Block URL」です。
拡張機能のスクリーンショット
Notion Global Block拡張機能のCRXファイルをダウンロード
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 |
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" ] } ] } |