Notion SidePanel
When you open a Database item in Notion, it will appear in the sidepanel.
Was ist Notion SidePanel?
Notion SidePanel ist eine Chrome-Erweiterung, die von baku entwickelt wurde, und ihr Hauptmerkmal ist "When you open a Database item in Notion, it will appear in the sidepanel.".
Erweiterungsscreenshots
Notion SidePanel-Erweiterungs-CRX-Datei herunterladen
Laden Sie Notion SidePanel-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Notion SidePanel |
ID | aiplpnkcpmheennhbmojmmalmigjkheh |
Offizielle URL | https://chromewebstore.google.com/detail/notion-sidepanel/aiplpnkcpmheennhbmojmmalmigjkheh |
Beschreibung | When you open a Database item in Notion, it will appear in the sidepanel. |
Dateigröße | 648 KB |
Installationsanzahl | 20 |
Aktuelle Version | 1.2.1 |
Letztes Update | 2023-01-21 |
Veröffentlichungsdatum | 2022-07-07 |
Entwickler | baku |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sahksas/notion_sidepanel |
Unterstützte Sprachen | 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" ] } |