Notion Pro Clipper

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

ما هو Notion Pro Clipper؟

Notion Pro Clipper هو إضافة Chrome تم تطويرها بواسطة prototion، والميزة الرئيسية لها هي "Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Notion Pro Clipper

قم بتنزيل ملفات الامتداد Notion Pro Clipper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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!                    

معلومات أساسية عن التمديد

الاسم Notion Pro Clipper Notion Pro Clipper
ID kdmlhgfimbdmfgaciomkmkabapbaldme
عنوان URL الرسمي https://chrome.google.com/webstore/detail/notion-pro-clipper/kdmlhgfimbdmfgaciomkmkabapbaldme
الوصف Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.
حجم الملف 258 KB
عدد التثبيتات 4,000
النسخة الحالية 0.5.2
آخر تحديث 2021-12-08
تاريخ النشر 2021-09-16
تقييم 3.75/5 مجموع تقييمات 16
المطور prototion
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://notionproclipper.com/
عنوان صفحة سياسة الخصوصية https://prototion.com/privacy-policy
اللغات المدعومة 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"
        ]
    }
}