Applitools Centra Screenshot Capture

Take a screenshot and save it to your system clipboard

Applitools Centra Screenshot Capture란 무엇입니까?

Applitools Centra Screenshot Capture은(는) Applitools에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take a screenshot and save it to your system clipboard"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Applitools Centra enables you to capture full-page and viewport screenshots of your website or web application and upload it to Applitools Centra for easy comparison and validation against your designs or components.

Once uploaded to Centra, stakeholders can collaborate on differences that may arise between design and implementation. Enabling you to easily collaborate, validate, and track an app's development in your team.

Collaborate --  Easily communicate with different stakeholders across the product delivery lifecycle.

Validate -- Verify that your designs are implemented correctly and that your brand is kept intact.

Track --  View the history of your UI over time as changes are made.


Screenshot capture options:

Located in the context menu by right-clicking on the webpage. Available options include...

- [Default] Full-page screenshot (Captures the entire page).
- Viewport screenshot (Captures the viewable area on the page).
- [Default] Stitch with CSS (Captures screenshot using CSS transition and removes duplication of fixed position elements. i.e sticky headers/footers).
- Stitch with scroll (Captures screenshot using standard Javascript scrolling).

Known limitations:

Saving an image to the system clipboard only works on HTTPS or local HTTP sites.
Users need to allow the extension to copy images to clipboard per domain they use it on.                    

확장 프로그램 기본 정보

이름 Applitools Centra Screenshot Capture Applitools Centra Screenshot Capture
ID lkafnclgfnendcdgepjccbbadfcjlhdm
공식 URL https://chromewebstore.google.com/detail/applitools-centra-screens/lkafnclgfnendcdgepjccbbadfcjlhdm
설명 Take a screenshot and save it to your system clipboard
파일 크기 406 KB
설치 횟수 44
현재 버전 1.0.1
최근 업데이트 2023-02-09
출시 날짜 2023-02-08
평점 5.00/5 총 1 개의 평점
개발자 Applitools
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://applitools.com/centra/
도움말 페이지 URL https://applitools.com/docs/centra/feedback
개인정보 보호 정책 페이지 URL https://applitools.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Applitools Centra Screenshot Capture",
    "description": "Take a screenshot and save it to your system clipboard",
    "version": "1.0.1",
    "version_name": "1.0.1",
    "action": {
        "default_title": "Click to capture screenshot to system clipboard"
    },
    "icons": {
        "16": "assets\/ChromeExt_16_LightBG.png",
        "32": "assets\/ChromeExt_32LightBG.png",
        "48": "assets\/ChromeExt_80_LightBG.png",
        "128": "assets\/ChromeExt_126_LightBG.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "tabs",
        "storage",
        "clipboardWrite",
        "contextMenus",
        "notifications"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}