Klippper: Notion Web Clipper

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

Vad är Klippper: Notion Web Clipper?

Klippper: Notion Web Clipper är en Chrome-tillägg utvecklad av Klippper, och dess huvudfunktion är "Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Klippper: Notion Web Clipper-förlängningens CRX-fil

Ladda ner Klippper: Notion Web Clipper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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 !                    

Grundläggande Information om Tillägg

Namn Klippper: Notion Web Clipper Klippper: Notion Web Clipper
ID lkgcadkhhkpfagbhepgelelekpodihja
Officiell webbadress https://chromewebstore.google.com/detail/klippper-notion-web-clipp/lkgcadkhhkpfagbhepgelelekpodihja
Beskrivning Klippper is an advanced Notion Web clipper, it helps you save webpages to Notion from the browser without switching tabs
Filstorlek 169 KB
Antal Installationer 1,817
Aktuell Version 0.0.0.20
Senast Uppdaterad 2023-02-06
Publiceringsdatum 2022-02-25
Betyg 4.10/5 Totalt 10 Betyg
Utvecklare Klippper
E-post [email protected]
Betalningssätt in_app
Tilläggswebbplats https://klippper.com/
Hjälpsida URL https://klippper.com/
URL till Sekretesspolicy Sidan https://klippper.com/privacy-policy
Stödda Språk 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": [
                ""
            ]
        }
    ]
}