Screen Capture and download

Capture current page and download the image.

Screen Capture and download란 무엇입니까?

Screen Capture and download은(는) extensioncreatorsllc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture current page and download the image."입니다.

확장 프로그램 스크린샷

screenshot

Screen Capture and download 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

확장 프로그램 기본 정보

이름 Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
공식 URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
설명 Capture current page and download the image.
파일 크기 157 KB
설치 횟수 6,726
현재 버전 1.5
최근 업데이트 2019-08-27
출시 날짜 2019-08-27
평점 4.52/5 총 25 개의 평점
개발자 extensioncreatorsllc
결제 유형 free
개인정보 보호 정책 페이지 URL https://bornsecret.com/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}