Screenshot

Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.

Screenshot란 무엇입니까?

Screenshot은(는) BrowserNative에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Screenshot 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Users can select screenshot file format (PNG or JPEG) from the Options. 

After capturing the screenshot, extension saves it. You can opt to see it in a new tab.

Extremely fast, light-weight and privacy friendly extension by BrowserNative.                    

확장 프로그램 기본 정보

이름 Screenshot Screenshot
ID mafopchedjkbgkpbbnbgifaolempmdgh
공식 URL https://chromewebstore.google.com/detail/screenshot/mafopchedjkbgkpbbnbgifaolempmdgh
설명 Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.
파일 크기 40.96 KB
설치 횟수 8,507
현재 버전 0.0.5
최근 업데이트 2019-11-18
출시 날짜 2019-11-12
평점 4.71/5 총 35 개의 평점
개발자 BrowserNative
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://browsernative.com/screenshot-extension/
도움말 페이지 URL https://browsernative.com/screenshot-extension/
개인정보 보호 정책 페이지 URL https://browsernative.com/extensions-privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenshot",
    "description": "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.",
    "version": "0.0.5",
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "static\/128.png",
        "default_title": "Take Screenshot"
    },
    "icons": {
        "48": "static\/48.png",
        "128": "static\/128.png"
    },
    "permissions": [
        "activeTab",
        "downloads"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+P"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/browsernative.com\/screenshot-extension\/"
}