Klippper: Notion Web Clipper

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

Co je Klippper: Notion Web Clipper?

Klippper: Notion Web Clipper je rozšíření Chrome vyvinuté Klippper, a jeho hlavní funkcí je „Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Klippper: Notion Web Clipper

Stáhněte si soubory rozšíření Klippper: Notion Web Clipper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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 !                    

Základní Informace o Rozšíření

Název Klippper: Notion Web Clipper Klippper: Notion Web Clipper
ID lkgcadkhhkpfagbhepgelelekpodihja
Oficiální URL https://chromewebstore.google.com/detail/klippper-notion-web-clipp/lkgcadkhhkpfagbhepgelelekpodihja
Popis Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs
Velikost souboru 169 KB
Počet instalací 1,817
Aktuální Verze 0.0.0.20
Poslední Aktualizace 2023-02-06
Datum Vydání 2022-02-25
Hodnocení 4.10/5 Celkem 10 Hodnocení
Vývojář Klippper
E-mail [email protected]
Typ Platby in_app
Webové stránky Rozšíření https://klippper.com/
URL Stránky Nápovědy https://klippper.com/
URL Stránky Zásad Ochrany Soukromí https://klippper.com/privacy-policy
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}