One-click Screenshot

Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac).

One-click Screenshot란 무엇입니까?

One-click Screenshot은(는) https://stefansundin.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac)."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        NOTE: I am not going to update this to MV3 so it will probably stop working eventually (whenever Chrome removes support for MV2).

Note: In Chrome 59, a built-in feature was released that can take full page screenshots. It works better than this extension, so I recommend that you try to use the built-in feature instead of this extension. Please learn how to use the built-in feature here: https://github.com/stefansundin/one-click-screenshot/discussions/15

This extension is very simple. With just a few clicks, you can take a screenshot of an entire website and save it to a png file. There is no bloat or any fancy post-processing. There's also a keyboard shortcut that you can use.

Source code: https://github.com/stefansundin/one-click-screenshot                    

확장 프로그램 기본 정보

이름 One-click Screenshot One-click Screenshot
ID jcjhinpbjkmdphmhkikndcdlfpkgllfo
공식 URL https://chromewebstore.google.com/detail/one-click-screenshot/jcjhinpbjkmdphmhkikndcdlfpkgllfo
설명 Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac).
파일 크기 41.85 KB
설치 횟수 10,000
현재 버전 0.0.4
최근 업데이트 2023-08-28
출시 날짜 2017-06-11
평점 3.71/5 총 17 개의 평점
개발자 https://stefansundin.github.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/stefansundin/one-click-screenshot
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "One-click Screenshot",
    "version": "0.0.4",
    "description": "Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac).",
    "homepage_url": "https:\/\/github.com\/stefansundin\/one-click-screenshot",
    "author": "Stefan Sundin",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "One-click Screenshot",
        "default_popup": "popup.html"
    },
    "commands": {
        "take-screenshot": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Take a screenshot"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "js\/content_script.js"
    ],
    "minimum_chrome_version": "55",
    "manifest_version": 2
}