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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้านโยบายความเป็นส่วนตัว 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"
        ]
    }
}