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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Easy Open full Image एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}