Evergreen Notes (for Notion)

Evergreen Notes for notion

Evergreen Notes (for Notion)란 무엇입니까?

Evergreen Notes (for Notion)은(는) Evergreen Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Evergreen Notes for notion"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Evergreen Notes (for Notion) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Evergreen Notes for Notion!  This is an sidebar extension for Notion that is meant to make it easier to use notion as a personal knowledge base! Check out the website for more details

------------------------------------------------------------------
https://www.notion.so/shravansunder/Evergreen-Notes-For-Notion-e35e6ed4dd5a45b19bf2de2bb86b1a7e
------------------------------------------------------------------

NOTE:
If you have issues loading the extension, make sure that
- cookies are allowed for notion site
- you give the extension the required permission to notion
- make sure you don't have adblock turn on notion sites


You'll get a easy to use sidebar with various optons
- View references: Shows Backlinks, relations and references
- View Page Markups:  allows you to view highlights and other **Page Markups** in your current page such as: highlights, code,  quotes, mentions
- Table of Content:  You have a tab for table on content that allows you to navigate to headings
- Search Panel:  The last feature it has is a persistent **search.**  

View block details: You can view block contents and see their details in the side panel.
- open links to notes in a new tab
- copy global blocks (or embed blocks)
- copy block links


------------------------------------------------------------------
If you enjoy the app and would like to support you can do so here!
https://www.buymeacoffee.com/ShravanSunder
------------------------------------------------------------------                    

확장 프로그램 기본 정보

이름 Evergreen Notes (for Notion) Evergreen Notes (for Notion)
ID chhpogndpjcgjbnbcodhdnilklfanmfh
공식 URL https://chromewebstore.google.com/detail/evergreen-notes-for-notio/chhpogndpjcgjbnbcodhdnilklfanmfh
설명 Evergreen Notes for notion
파일 크기 484 KB
설치 횟수 6,311
현재 버전 2.2.7
최근 업데이트 2021-11-12
출시 날짜 2020-09-01
평점 4.00/5 총 40 개의 평점
개발자 Evergreen Software
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.notion.so/shravansunder/Evergreen-Notes-For-Notion-e35e6ed4dd5a45b19bf2de2bb86b1a7e
도움말 페이지 URL https://www.notion.so/shravansunder/Evergreen-Notes-For-Notion-e35e6ed4dd5a45b19bf2de2bb86b1a7e
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Evergreen Notes for notion",
    "version": "2.2.7",
    "name": "Evergreen Notes (for Notion)",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_title": "Evergreen Notes (for Notion)",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.notion.so\/*",
        "https:\/\/notion.so\/*",
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.notion.so\/*",
                "https:\/\/*.notion.so\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icon-128.png",
        "icon-34.png",
        "sidebar.html"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}