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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } |