Notion Pro Clipper

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

Apa itu Notion Pro Clipper?

Notion Pro Clipper adalah ekstensi Chrome yang dikembangkan oleh prototion, dan fitur utamanya adalah "Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Notion Pro Clipper

Unduh file ekstensi Notion Pro Clipper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Notion Pro Clipper Notion Pro Clipper
ID kdmlhgfimbdmfgaciomkmkabapbaldme
URL Resmi https://chrome.google.com/webstore/detail/notion-pro-clipper/kdmlhgfimbdmfgaciomkmkabapbaldme
Deskripsi Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.
Ukuran File 258 KB
Jumlah Instalasi 4,000
Versi Saat Ini 0.5.2
Terakhir Diperbarui 2021-12-08
Tanggal Publikasi 2021-09-16
Penilaian 3.75/5 Total 16 Penilaian
Pengembang prototion
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://notionproclipper.com/
URL Halaman Kebijakan Privasi https://prototion.com/privacy-policy
Bahasa yang Didukung 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"
        ]
    }
}