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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
    }
}