Klippper: Notion Web Clipper

Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs

Klippper: Notion Web Clipper란 무엇입니까?

Klippper: Notion Web Clipper은(는) Klippper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Klippper: Notion Web Clipper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Save webpages to Notion in one click!
Sign up on https://klippper.com/

Features:
- Preconfigured forms to get a page URL, title, description, icon and more 
  automatically
- Select multiple images from a site and save them directly into your Notion 
  database
- Use the "notes" field to save important information
- Add Mentions to page content
- Duplicates detector for URL fields
- Save highlights from webpages and PDFs to your notion page 
-  Forms sync with all your computers
- and more to come!

Contact
If you have any questions send us an email at [email protected]
Or leave us a feedback here https://notionforms.io/forms/feedbacks-5 !                    

확장 프로그램 기본 정보

이름 Klippper: Notion Web Clipper Klippper: Notion Web Clipper
ID lkgcadkhhkpfagbhepgelelekpodihja
공식 URL https://chromewebstore.google.com/detail/klippper-notion-web-clipp/lkgcadkhhkpfagbhepgelelekpodihja
설명 Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs
파일 크기 169 KB
설치 횟수 1,817
현재 버전 0.0.0.20
최근 업데이트 2023-02-06
출시 날짜 2022-02-25
평점 4.10/5 총 10 개의 평점
개발자 Klippper
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://klippper.com/
도움말 페이지 URL https://klippper.com/
개인정보 보호 정책 페이지 URL https://klippper.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs",
    "version": "0.0.0.20",
    "manifest_version": 3,
    "name": "Klippper: Notion Web Clipper",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": [],
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "klippperLogo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html",
                "content.styles.css",
                "klippperLogo.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}