Notion Pro Clipper

Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.

Vad är Notion Pro Clipper?

Notion Pro Clipper är en Chrome-tillägg utvecklad av prototion, och dess huvudfunktion är "Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Notion Pro Clipper-förlängningens CRX-fil

Ladda ner Notion Pro 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

                        Notion Pro Clipper lets you add any webpage to your Notion workspace, without even leaving the tab you're in. You can add webpages in an editable text format or simply as screenshots, by simply clicking on the extension.

Login Required: Using the Notion Pro Clipper extension is free. However, you need to create an account on Prototion.com to get started. A Notion account, of course, is also required and needs to be linked to your Prototion account. You can link more than 1 account and while clipping any webpage, you can choose where you wish to save it. 

Our Notion Pro Clipper can be used to capture webpages in 2 ways - you can either take screenshots or save the webpage itself.

Saving Webpages Into Notion: You can save webpage URLs, entire webpages, or a section of a webpage to your Notion pages using Prototion. While saving, the heading of the page is automatically filled in as the Title of the page, but you can easily edit the Title while saving the webpage, without having to open your Notion workspace. 
Saving URLs lets you add web pages into your Notion page in an easy-to-organize "Card" format. This is great if you want to store multiple links in one place and still be able to preview them at a glance.

Taking Screenshots On The Web: Sometimes, you might want to save only the screenshot of a webpage or a section within it, and not the text version. Notion Pro Clipper lets you capture these screenshots in one click and adds them to whichever Notion page you want.

Notion Pro Clipper lets you take screenshots in 3 unique ways. You can use the free-form snip to capture a specific part of the screen or you can capture the entire visible area of the webpage. If you want to take a screenshot of the entire webpage from top to bottom, Notion Pro Clipper lets you do so in a single click and with no scrolling required.

Quick Save Images: If you think even screenshots take too much time, just enable the "quick save images" option. This lets you right-click on an image and save it to Notion instantly. No snipping required!                    

Grundläggande Information om Tillägg

Namn Notion Pro Clipper Notion Pro Clipper
ID kdmlhgfimbdmfgaciomkmkabapbaldme
Officiell webbadress https://chrome.google.com/webstore/detail/notion-pro-clipper/kdmlhgfimbdmfgaciomkmkabapbaldme
Beskrivning Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.
Filstorlek 258 KB
Antal Installationer 4,000
Aktuell Version 0.5.2
Senast Uppdaterad 2021-12-08
Publiceringsdatum 2021-09-16
Betyg 3.75/5 Totalt 16 Betyg
Utvecklare prototion
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://notionproclipper.com/
URL till Sekretesspolicy Sidan https://prototion.com/privacy-policy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.",
    "version": "0.5.2",
    "manifest_version": 2,
    "name": "Notion Pro Clipper",
    "icons": {
        "16": ".\/src\/logo\/favicon-16x16.png",
        "32": ".\/src\/logo\/favicon-32x32.png",
        "48": ".\/src\/logo\/favicon-48x48.png",
        "128": ".\/src\/logo\/favicon-128x128.png"
    },
    "browser_action": {
        "default_title": "Notion Pro Clipper",
        "default_popup": ".\/src\/popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/foreground\/saveUrl.js"
            ],
            "css": [
                ".\/src\/foreground\/foreground_styles.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/foreground\/saveSection.js"
            ],
            "css": [
                ".\/src\/foreground\/foreground_styles.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/foreground\/fullpageBookmark.js"
            ],
            "css": [
                ".\/src\/foreground\/foreground_styles.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/foreground\/screenshotFullpage.js"
            ],
            "css": [
                ".\/src\/foreground\/foreground_styles.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/foreground\/screenshotSnippet.js"
            ],
            "css": [
                ".\/src\/foreground\/foreground_styles.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/foreground\/screenshotVisible.js"
            ],
            "css": [
                ".\/src\/foreground\/foreground_styles.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/foreground\/saveImage.js"
            ],
            "css": [
                ".\/src\/foreground\/foreground_styles.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "cookies",
        "contextMenus",
        "*:\/\/*\/*",
        ""
    ],
    "background": {
        "scripts": [
            ".\/service-worker.js"
        ]
    }
}