Screenshotting Master - Full Page Capture

Use Screenshotting Master - Full Page Capture for a simple one click

Screenshotting Master - Full Page Capture란 무엇입니까?

Screenshotting Master - Full Page Capture은(는) kevinlawson746에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Screenshotting Master - Full Page Capture for a simple one click"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Screenshotting Master - Full Page Capture 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A Simple and easy Screenshotting extension to capture screenshots from any web page. Now you can take screenshots in three different ways using this Free Extension.

Features: 
☆ Full page Screenshot - Capture the entire page without the hassle of scrolling through the page.
☆ Selected Area Screenshot - Capture a selective area of the visible screen.
☆ Visible Area Screenshot - Capture only the currently visible screen.

Shortcut Keys: 
Alt + P - Full Page Screenshot
Alt + L - Selected Area Screenshot
Alt + V - Visible Area Screenshot

Highlights: 
★All in one Screenshotting Extension.
★Lightweight compared to other screenshotting extensions.
★Free to use.🙂

updates:
0.0.3 - minor update                    

확장 프로그램 기본 정보

이름 Screenshotting Master - Full Page Capture Screenshotting Master - Full Page Capture
ID aiaplgbkhiadmidofbfgcemildehlnen
공식 URL https://chrome.google.com/webstore/detail/screenshotting-master-ful/aiaplgbkhiadmidofbfgcemildehlnen
설명 Use Screenshotting Master - Full Page Capture for a simple one click
파일 크기 368 KB
설치 횟수 2,000
현재 버전 0.0.4
최근 업데이트 2022-07-24
출시 날짜 2022-04-13
평점 3.63/5 총 8 개의 평점
개발자 kevinlawson746
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenshotting Master - Full Page Capture",
    "version": "0.0.4",
    "description": "Use Screenshotting Master - Full Page Capture for a simple one click",
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "downloads",
        "scripting"
    ],
    "action": {
        "default_icon": "icon128.png",
        "default_title": "Screenshot",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "b.js"
    },
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        ""
    ],
    "commands": {
        "fullPage": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Take fullpage screenshot"
        },
        "visibleArea": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "Visible page screenshot"
        },
        "selectedArea": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Selected Area screenshot"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "innerScreenshotContent.js",
                "screenshot.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 3,
    "web_accessible_resources": []
}