Notion SidePanel
When you open a Database item in Notion, it will appear in the sidepanel.
Vad är Notion SidePanel?
Notion SidePanel är en Chrome-tillägg utvecklad av baku, och dess huvudfunktion är "When you open a Database item in Notion, it will appear in the sidepanel.".
Tilläggsskärmbilder
Ladda ner Notion SidePanel-förlängningens CRX-fil
Ladda ner Notion SidePanel-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Notion SidePanel |
ID | aiplpnkcpmheennhbmojmmalmigjkheh |
Officiell webbadress | https://chromewebstore.google.com/detail/notion-sidepanel/aiplpnkcpmheennhbmojmmalmigjkheh |
Beskrivning | When you open a Database item in Notion, it will appear in the sidepanel. |
Filstorlek | 648 KB |
Antal Installationer | 20 |
Aktuell Version | 1.2.1 |
Senast Uppdaterad | 2023-01-21 |
Publiceringsdatum | 2022-07-07 |
Utvecklare | baku |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sahksas/notion_sidepanel |
Stödda Språk | 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" ] } |