Applitools Centra Screenshot Capture

Take a screenshot and save it to your system clipboard

Applitools Centra Screenshot Capture là gì?

Applitools Centra Screenshot Capture là một tiện ích mở rộng Chrome được phát triển bởi Applitools, và tính năng chính của nó là "Take a screenshot and save it to your system clipboard".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Applitools Centra Screenshot Capture

Tải xuống các tệp mở rộng Applitools Centra Screenshot Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Applitools Centra Screenshot Capture Applitools Centra Screenshot Capture
ID lkafnclgfnendcdgepjccbbadfcjlhdm
URL Chính Thức https://chromewebstore.google.com/detail/applitools-centra-screens/lkafnclgfnendcdgepjccbbadfcjlhdm
Mô tả Take a screenshot and save it to your system clipboard
Kích Thước Tệp 406 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-02-09
Ngày Phát Hành 2023-02-08
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Applitools
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://applitools.com/centra/
URL Trang Trợ Giúp https://applitools.com/docs/centra/feedback
URL Trang Chính Sách Bảo Mật https://applitools.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}