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란 무엇입니까?

Easy Open full Image은(는) shivalwolf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr."입니다.

확장 프로그램 스크린샷

screenshot

Easy Open full Image 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Easy Open full Image Easy Open full Image
ID fphbkhojdlikiofpminindlcndjikjkn
공식 URL https://chrome.google.com/webstore/detail/easy-open-full-image/fphbkhojdlikiofpminindlcndjikjkn
설명 A context menu option to open in a new tab images hosted on googleusercontent/tumblr in full size useful for G+/picasa and tumblr.
파일 크기 7.84 KB
설치 횟수 790
현재 버전 3.10
최근 업데이트 2017-09-21
출시 날짜 2017-09-21
평점 4.40/5 총 20 개의 평점
개발자 shivalwolf
결제 유형 free
지원되는 언어 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"
    }
}