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ファイルをダウンロード

Klippper: Notion Web Clipper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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": [
                ""
            ]
        }
    ]
}