Easy Open full Image

A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr.

Easy Open full Image là gì?

Easy Open full Image là một tiện ích mở rộng Chrome được phát triển bởi shivalwolf, và tính năng chính của nó là "A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr.".

Ả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 Easy Open full Image

Tải xuống các tệp mở rộng Easy Open full Image 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

                        I was finding myself getting annoyed when opening up images from Google+ they would be smaller then actual size and hard to save. You had to open the image in a new tab and then modify the URL to save the full image.
This Extension simply removes the resizing option from the URL and allows you to open up G+ and Picasa images in new windows. Now also does tumblr, assumes max size image exists. sometimes this will fail.

Update so that it does not provide the context menu on images proxied via https://images1-focus-opensocial.googleusercontent.com/gadgets/proxy?

Update 2.6 - 2017-01-19
Fixed so it works with the new google plus.

Updated 2.71 - 2017-06-23
Updated to use _raw for tumblr instead of _1280 for images when available.

Update 2.71 to 3.10 - 2017-09-21
Accidentally screwed up version numbering. No versions between these updates

update 3.10 - 2017-09-21
Fixed google+ images not loading with the recent update                    

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

Tên Easy Open full Image Easy Open full Image
ID fphbkhojdlikiofpminindlcndjikjkn
URL Chính Thức https://chrome.google.com/webstore/detail/easy-open-full-image/fphbkhojdlikiofpminindlcndjikjkn
Mô tả A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr.
Kích Thước Tệp 7.84 KB
Số Lần Cài Đặt 790
Phiên Bản Hiện Tại 3.10
Cập Nhật Lần Cuối 2017-09-21
Ngày Phát Hành 2017-09-21
Đánh Giá 4.40/5 Tổng số 20 Đánh Giá
Nhà Phát Triển shivalwolf
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Open full Image",
    "version": "3.10",
    "manifest_version": 2,
    "description": "A context menu option to open in a new tab images hosted on googleusercontent\/tumblr in full size useful for G+\/picasa and tumblr.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.googleusercontent.com\/*",
                "https:\/\/*.googleusercontent.com\/*",
                "http:\/\/*.tumblr.com\/*",
                "https:\/\/*.tumblr.com\/*"
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "icons": {
        "16": "16icon.png",
        "48": "48icon.png",
        "128": "128icon.png"
    }
}