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 |
公式URL | 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 |
Eメール | [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" ] } |