Notion SidePanel
When you open a Database item in Notion, it will appear in the sidepanel.
什麼是Notion SidePanel?
Notion SidePanel是由baku開發的Chrome擴展程式,該擴展的主要功能是“When you open a Database item in Notion, it will appear in the sidepanel.”。
擴展截圖
下載Notion SidePanel擴展crx文件
下載Notion SidePanel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Now that Notion has added similar functionality, you no longer need to install this extension! Thank you! When using Notion's database, you can refer to other items while editing. == Features == - You can browse the list while editing items in the Notion database. - Highlight the currently open item. == Feedback and bug reports == We welcome feature improvement requests and bug reports! Please contact us at the address below! https://github.com/sahksas/notion_sidepanel
擴展基本資訊
名稱 | Notion SidePanel |
ID | aiplpnkcpmheennhbmojmmalmigjkheh |
官方網址 | https://chromewebstore.google.com/detail/notion-sidepanel/aiplpnkcpmheennhbmojmmalmigjkheh |
簡介 | When you open a Database item in Notion, it will appear in the sidepanel. |
檔案大小 | 648 KB |
安裝次數 | 20 |
目前版本 | 1.2.1 |
更新時間 | 2023-01-21 |
上架時間 | 2022-07-07 |
開發者 | baku |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/sahksas/notion_sidepanel |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Notion SidePanel", "description": "When you open a Database item in Notion, it will appear in the sidepanel.", "version": "1.2.1", "options_ui": { "page": "options.html" }, "action": { "default_icon": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" } }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/*.notion.so\/*" ], "js": [ "js\/content_script.js" ] } ], "permissions": [ "storage" ] } |