Notion Highlighter
Highlight articles and save to Notion.
Notion Highlighter란 무엇입니까?
Notion Highlighter은(는) IOLabs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight articles and save to Notion."입니다.
확장 프로그램 스크린샷
Notion Highlighter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Notion Highlighter is the preferred tool for saving your notes to Notion. Save an article and start highlighting text as you read. Your notes will be automatically saved into a Notion page. Made a mistake? Simply open the hidden sidebar and delete highlights. This tool is the ultimate productivity hack. Have you ever read an article and thought - this could have been a few bullets — or have a list of saved articles you keep rereading for the core material? You can now save what you need and store it for future use. WHO AM I? • • • • • I’m an avid reader and productivity junkie. Before Notion, I used Pocket, GSheet, and various apps to save articles, summarize the core takeaways, to share them with my friends, family, and peers. Since moving my entire workflow to Notion, I built this extension to highlight core takeaways, summarize them later, add my commentary, and retrieve them when needed. HOW YOU CAN HELP • • • • • My passion is continually improving this product for you. Tell me how you use it or what you would like to see. I read all emails and respond 1:1 in a timely manner. Email: [email protected].
확장 프로그램 기본 정보
이름 | Notion Highlighter |
ID | nonofakmidapalgdmcaphcpedfnobenn |
공식 URL | https://chromewebstore.google.com/detail/notion-highlighter/nonofakmidapalgdmcaphcpedfnobenn |
설명 | Highlight articles and save to Notion. |
파일 크기 | 83.89 KB |
설치 횟수 | 68 |
현재 버전 | 1.0.2.42 |
최근 업데이트 | 2023-07-16 |
출시 날짜 | 2023-07-16 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | IOLabs |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://www.sajad.co |
개인정보 보호 정책 페이지 URL | https://www.sajad.co/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Highlighter", "description": "Highlight articles and save to Notion.", "version": "1.0.2.42", "manifest_version": 3, "icons": { "128": "\/img\/logo.png" }, "background": { "service_worker": "\/js\/extension_background.js" }, "action": { "default_popup": "\/pages\/extension_popup\/index.html", "default_icons": { "16": "\/img\/logo.png" } }, "content_scripts": [ { "run_at": "document_end", "all_frames": true, "matches": [ "https:\/\/*\/*" ], "js": [ "\/js\/extension_content.js" ], "css": [ "\/css\/content.css" ] } ], "permissions": [ "storage" ], "host_permissions": [], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "https:\/\/*\/*" ], "extension_ids": [] } ] } |