Joplin Web Clipper

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

Joplin Web Clipper là gì?

Joplin Web Clipper là một tiện ích mở rộng Chrome được phát triển bởi https://joplinapp.org, và tính năng chính của nó là "Capture and save web pages and screenshots from your browser to Joplin.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Joplin Web Clipper

Tải xuống các tệp mở rộng Joplin Web Clipper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Joplin Web Clipper Joplin Web Clipper
ID alofnhikmmkdbbbgpnglcpdollgjjfek
URL Chính Thức https://chromewebstore.google.com/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfek
Mô tả Capture and save web pages and screenshots from your browser to Joplin.
Kích Thước Tệp 277 KB
Số Lần Cài Đặt 80,000
Phiên Bản Hiện Tại 2.11.2
Cập Nhật Lần Cuối 2024-02-10
Ngày Phát Hành 2019-12-04
Đánh Giá 4.44/5 Tổng số 93 Đánh Giá
Nhà Phát Triển https://joplinapp.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://joplinapp.org/help/apps/clipper
URL Trang Trợ Giúp https://discourse.joplinapp.org/
Ngôn Ngữ Được Hỗ Trợ 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
    }
}