Joplin Web Clipper

Capture and save web pages and screenshots from your browser to Joplin.

什麼是Joplin Web Clipper?

Joplin Web Clipper是由https://joplinapp.org開發的Chrome擴展程式,該擴展的主要功能是“Capture and save web pages and screenshots from your browser to Joplin.”。

擴展截圖

screenshot

下載Joplin Web Clipper擴展crx文件

下載Joplin Web Clipper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This is a web clipper that allows you to save web pages to Joplin and take screenshots while you're browsing the internet. You can either save complete web pages or simplified versions of it. You will need the Joplin desktop application to use this extension.                    

擴展基本資訊

名稱 Joplin Web Clipper Joplin Web Clipper
ID alofnhikmmkdbbbgpnglcpdollgjjfek
官方網址 https://chromewebstore.google.com/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfek
簡介 Capture and save web pages and screenshots from your browser to Joplin.
檔案大小 277 KB
安裝次數 80,000
目前版本 2.11.2
更新時間 2024-02-10
上架時間 2019-12-04
評分 4.44/5 共 93 次評分
開發者 https://joplinapp.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://joplinapp.org/help/apps/clipper
說明頁面URL https://discourse.joplinapp.org/
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Joplin Web Clipper",
    "version": "2.11.2",
    "description": "Capture and save web pages and screenshots from your browser to Joplin.",
    "homepage_url": "https:\/\/joplinapp.org",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/32.png",
        "default_title": "Joplin Web Clipper",
        "default_popup": "popup\/build\/index.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+J"
            }
        },
        "clipCompletePage": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "Clip complete page (uses last selected notebook)"
        },
        "clipCompletePageHtml": {
            "description": "Clip complete page (HTML) (uses last selected notebook)"
        },
        "clipSimplifiedPage": {
            "description": "Clip simplified page (uses last selected notebook)"
        },
        "clipUrl": {
            "description": "Clip url (uses last selected notebook)"
        },
        "clipSelection": {
            "description": "Clip selection (uses last selected notebook)"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}