Easy Screenshot - a Web Clipper

all-in-on capturing tool for the visual part, the entire page, or a selective area with auto-scrolling and editing support

Easy Screenshot - a Web Clipperคืออะไร?

Easy Screenshot - a Web Clipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chYer และคุณลักษณะหลักของมันคือ "all-in-on capturing tool for the visual part, the entire page, or a selective area with auto-scrolling and editing support"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Easy Screenshot - a Web Clipper

ดาวน์โหลดไฟล์ส่วนขยาย Easy Screenshot - a Web Clipper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        You can capture screenshots from the active tab with just two clicks. It provides multiple options for capturing specific portions of the page, the visual viewport, or even the entire page if it extends beyond the screen with both vertical and horizontal scroll bars. The captured image can be saved to the default download directory, copied to the clipboard, or opened in an online paint editor. The extension currently integrates JSPaint, a web-based replica of MS Paint, which offers offline functionality, allowing you to edit your images without an internet connection.

The extension adds a toolbar button to the browser's action area. Clicking on this button opens a popup window with three options: 
1. Capture the Entire Screen (3 methods. Works even if the page contains fixed-position elements)
2. Capture Visual Part
3. Capture a Portion

These options are also accessible via the right-click context menu on any page, providing easy access to the screenshot functionality.

Here are some additional notes about the extension:
1. When selecting the "Capture Entire Screen" option, and the page size exceeds the window size, the extension will automatically scroll through the entire page to capture different sections and merge them into a single image. This process may take a few seconds to complete.
2. The resolution of the captured image depends on the screen resolution. For instance, if you have a 4K display, such as a Retina display, the image resolution will be at least four times higher than a regular display.
3. To ensure compatibility across various devices, the extension saves all captured screenshots in the widely supported PNG format, which offers high-quality lossless images.
4. The extension does NOT add watermarks to the captured images.
5. If you prefer to customize the format of the filenames for downloaded images, you can visit the options page and utilize the "filename mask" option to make the desired changes.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Easy Screenshot - a Web Clipper Easy Screenshot - a Web Clipper
ID ilihnlnookgcpkpnjafigbkdniceonip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/easy-screenshot-a-web-cli/ilihnlnookgcpkpnjafigbkdniceonip
คำอธิบาย all-in-on capturing tool for the visual part, the entire page, or a selective area with auto-scrolling and editing support
ขนาดไฟล์ 47.15 KB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 0.5.0
อัปเดตครั้งล่าสุด 2024-02-22
วันที่เผยแพร่ 2017-05-13
คะแนน 4.22/5 รวมทั้งหมด 73 คะแนน
ผู้พัฒนา chYer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/screenshot.html
URL หน้าช่วยเหลือ https://webextension.org/listing/screenshot.html
ภาษาที่รองรับ de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Screenshot - a Web Clipper",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.5.0",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "activeTab",
        "scripting",
        "downloads",
        "notifications",
        "storage",
        "debugger"
    ],
    "offline_enabled": true,
    "background": {
        "service_worker": "worker.js"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/screenshot.html",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "20": "\/data\/icons\/20.png",
        "24": "\/data\/icons\/24.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "options_ui": {
        "page": "\/data\/options\/index.html"
    },
    "action": {
        "default_popup": "\/data\/popup\/index.html"
    },
    "commands": {
        "_execute_action": [],
        "capture-visual": {
            "description": "Capture Visual Part"
        },
        "capture-portion": {
            "description": "Capture a Portion"
        },
        "capture-entire": {
            "description": "Capture Entire Screen (steps)"
        },
        "capture-entire-debugger": {
            "description": "Capture Entire Screen (debugger)"
        },
        "capture-entire-debugger-steps": {
            "description": "Capture Entire Screen (debugger + steps)"
        }
    }
}