Notion Pro Clipper

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

什麼是Notion Pro Clipper?

Notion Pro Clipper是由prototion開發的Chrome擴展程式,該擴展的主要功能是“Notion Pro Clipper lets you add webpages, emails, screenshots and images to your Notion workspace.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Notion Pro Clipper擴展crx文件

下載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
官方網址 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"
        ]
    }
}