Screenshot & Bookmark Manager by Lasso

Collect ideas to inspire your creativity. Save screenshots, web links and more.

Screenshot & Bookmark Manager by Lasso란 무엇입니까?

Screenshot & Bookmark Manager by Lasso은(는) https://www.lasso.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Collect ideas to inspire your creativity. Save screenshots, web links and more."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Screenshot & Bookmark Manager by Lasso 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Save time by quickly capturing screenshots with the Lasso extension. 

You can capture the visible area, the full page, or custom area. 

You can then add comments, lines, shapes to easily communicate your thoughts on the screenshot.

Save the screenshot to a cloud service (lasso) or slack, or anywhere else by copying and pasting the screenshot.

When you save the screenshot to Lasso, you can optionally create a shareable web page for your image. You can then copy and paste the shareable URL.

All of these capabilities reduce the steps require to communicate your thoughts to others or save for yourself.  

Save up to a thousand screenshots for free or upgrade for advanced features and storing more screenshots. Lasso also offers team capabilities.                    

확장 프로그램 기본 정보

이름 Screenshot & Bookmark Manager by Lasso Screenshot & Bookmark Manager by Lasso
ID mpgmpojhkikacbjcdgibnhckgogphelc
공식 URL https://chromewebstore.google.com/detail/screenshot-bookmark-manag/mpgmpojhkikacbjcdgibnhckgogphelc
설명 Collect ideas to inspire your creativity. Save screenshots, web links and more.
파일 크기 1.35 MB
설치 횟수 1,509
현재 버전 1.5.12
최근 업데이트 2023-10-21
출시 날짜 2019-10-22
평점 5.00/5 총 7 개의 평점
개발자 https://www.lasso.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.lasso.net
도움말 페이지 URL https://vflyer.zendesk.com/hc/en-us/categories/360002206251-Lasso-Screen-Capture
개인정보 보호 정책 페이지 URL http://www.lasso.net/go/lasso/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenshot & Bookmark Manager by Lasso",
    "version": "1.5.12",
    "manifest_version": 3,
    "minimum_chrome_version": "93",
    "description": "Collect ideas to inspire your creativity. Save screenshots, web links and more.",
    "action": {
        "default_title": "Click to launch Lasso",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "32": "img\/32x32.png",
        "48": "img\/48x48.png",
        "128": "img\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "js": [
                "libs\/jquery.js",
                "libs\/cropper.js",
                "js\/content_script.js"
            ],
            "css": [
                "css\/content-script-style.css"
            ],
            "start_at": "idle"
        },
        {
            "matches": [
                "https:\/\/www.lasso.net\/*",
                "https:\/\/www.lasso1.net\/*"
            ],
            "js": [
                "js\/inject_script.js"
            ],
            "start_at": "idle",
            "world": "MAIN",
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/img\/*.png",
                "screenshot.html",
                "\/libs\/jquery.js"
            ],
            "matches": [
                "",
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "scripting",
        "unlimitedStorage",
        "contextMenus",
        "notifications"
    ],
    "host_permissions": [
        "",
        "*:\/\/*\/*"
    ]
}