G+ Full Size Photo Viewer

Opens Google Plus photos in a new tab with resolution up to 2048px!

G+ Full Size Photo Viewer란 무엇입니까?

G+ Full Size Photo Viewer은(는) Nakilon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens Google Plus photos in a new tab with resolution up to 2048px!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

G+ Full Size Photo Viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to open fullsize image in a new tab in two ways:
1. When you are viewing a photo, click an icon in adress bar.
2. You may also do right mouse button click on any image (any photo previews and userpics) on G+ site and then left click the option "Open fullsize image"

Unlike similar existing extensions on the market, it's up to date!
Please report me any pages and pics, where my extension fails – let's keep this tool working!

Version history:
10 may 2012 : v1.0
    initial testing release
11 may 2012 : v1.1
    another testing release
    + description
    + right click functionality
    public release
13 may 2012 : v1.2
    + now works for userpics at notifications
    + now works for screenshots and their previews at Chrome Store
    + now works for images attached to outgoing links in g+ posts
10 dec 2012 : v1.2.5
    * fixed after G+ 'zoom photo' site update
18 may 2013 : v1.3
    * two fixes after tragic G+ redesign                    

확장 프로그램 기본 정보

이름 G+ Full Size Photo Viewer G+ Full Size Photo Viewer
ID ffacnidipagcboeoaffjcdippfjpcpbp
공식 URL https://chrome.google.com/webstore/detail/g+-full-size-photo-viewer/ffacnidipagcboeoaffjcdippfjpcpbp
설명 Opens Google Plus photos in a new tab with resolution up to 2048px!
파일 크기 43.34 KB
설치 횟수 1,507
현재 버전 1.3
최근 업데이트 2013-05-18
출시 날짜 2013-05-18
평점 4.34/5 총 38 개의 평점
개발자 Nakilon
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "G+ Full Size Photo Viewer",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Opens Google Plus photos in a new tab with resolution up to 2048px!",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "view fullsize photo"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        "https:\/\/plus.google.com\/*",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/plus.google.com\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery-1.7.2.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "19": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}