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