Blipshot: one click full page screenshots

Real fast and simple one-click full-page screenshots with drag and drop.

Blipshot: one click full page screenshots là gì?

Blipshot: one click full page screenshots là một tiện ích mở rộng Chrome được phát triển bởi paulson.collin, và tính năng chính của nó là "Real fast and simple one-click full-page screenshots with drag and drop.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Blipshot: one click full page screenshots

Tải xuống các tệp mở rộng Blipshot: one click full page screenshots 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

                        Blipshot allows you to take a full height page screenshot in just one click. 
Why wasting time if you just want a screenshot?

This extension works on Windows, Mac and Linux.

FEATURES
—
• whole-page screenshot, not just the visible area!
• real one-click screenshot, the easiest extension possible
• fast drag'n'drop or click to save the image in PNG
• the screenshot is saved with page name, date and time
• using latest Chrome versions, it screenshots also Flash content

HOW IT WORKS
—
• Click on the toolbar icon: it automatically makes the full page screenshot. Done!
• The screenshot will appear as an image on the right of the page: click on it to automatically save, drag and drop it on your computer, or right click and "Save Image as...".
• To dismiss the screenshot just click on the gray area.

NOTES
—
Remember to reload a page after you installed this extension before trying to screenshot it (Chrome needs to initialise the extension for each page).

Thanks to Ben Ellis and Guillermo Rauch for their contributions.

REQUESTS AND BUGS
—
Please notify me here: https://github.com/folletto/Blipshot/issues

There are unfortunately two annoyances that depend from Google's progress on Chrome:

1 · If the page has an HORIZONTAL scrollbar the screenshot will be a bit screwed up. Make the window bigger until the next update.
I will be able to solve the problem once Google will implement this: 
http://code.google.com/p/chromium/issues/detail?id=45209

2 · for huge pages it may crash Chrome when you drag'n'drop the image on your desktop (big data urls >2M aren't managed well by Chrome, an update from Google should be coming).
The problem will go away automatically once Google will solve this issue: 
http://code.google.com/p/chromium/issues/detail?id=69227

3 • Pages taller than 32766px will be cut due to another Chrome limitation (inherited from Skia). See this issue: https://bugs.chromium.org/p/chromium/issues/detail?id=339725                    

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

Tên Blipshot: one click full page screenshots Blipshot: one click full page screenshots
ID mdaboflcmhejfihjcbmdiebgfchigjcf
URL Chính Thức https://chromewebstore.google.com/detail/blipshot-one-click-full-p/mdaboflcmhejfihjcbmdiebgfchigjcf
Mô tả Real fast and simple one-click full-page screenshots with drag and drop.
Kích Thước Tệp 78.53 KB
Số Lần Cài Đặt 30,445
Phiên Bản Hiện Tại 1.2.7
Cập Nhật Lần Cuối 2023-05-19
Ngày Phát Hành 2018-08-29
Đánh Giá 3.80/5 Tổng số 202 Đánh Giá
Nhà Phát Triển paulson.collin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/folletto/Blipshot
URL Trang Trợ Giúp https://github.com/folletto/Blipshot/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blipshot: one click full page screenshots",
    "short_name": "Blipshot",
    "version": "1.2.7",
    "description": "Real fast and simple one-click full-page screenshots with drag and drop.",
    "author": "Erin Casali",
    "browser_action": {
        "default_icon": {
            "19": "icon\/toolbar-icon19.png",
            "38": "icon\/toolbar-icon38.png"
        }
    },
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "background": {
        "scripts": [
            "screenshotter.js",
            "actions.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "screenshotter.DOM.js",
                "blanketStyleSet.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "web_accessible_resources": [
        "resources\/overlay.html"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}