Photos Direct Link

Allow you to copy a direct link, with extension, from Google Photos.

Photos Direct Link क्या है?

Photos Direct Link ddo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow you to copy a direct link, with extension, from Google Photos."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

crx प्रारूप में Photos Direct Link एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        *Extension changed the name/icon to accomplish Google trademark rules.

Allows you to copy a direct link, with extension (.jpg), from Google Album Archive (https://get.google.com/albumarchive) and Google Photos (https://photos.google.com).

Google Album Archive and Google Photos doesn't allow you to get an image direct link (with image extension [like png or jpg]).
This Chrome extension is very helpful to post images in forums or blogs, where the file extension is mandatory. 
Is possible to configure the desired image size too.


IMPORTANT: Apparently, the generated URL (from Google Photos) stops working after some time. In my tests, some URLs stopped working after one day and others still working.
WORKAROUND: Added support to Google Album Archive (http://get.google.com/algumarchive).


Usage instructions: 
Open an image and just click (left click) over the image. A message is shown at the page bottom.

This extension is open source and can be found in https://github.com/ddo02/GooglePhotosDirectLink                    

एक्सटेंशन की मूल जानकारी

नाम Photos Direct Link Photos Direct Link
ID dgnaaplaoheafdckphgmpiaodckbcafg
आधिकारिक URL https://chromewebstore.google.com/detail/photos-direct-link/dgnaaplaoheafdckphgmpiaodckbcafg
विवरण Allow you to copy a direct link, with extension, from Google Photos.
फ़ाइल का आकार 47.38 KB
स्थापना संख्या 20,000
वर्तमान संस्करण 2.0
अंतिम अपडेट 2020-08-31
प्रकाशन तिथि 2017-10-10
रेटिंग 3.98/5 कुल 66 रेटिंग्स
डेवलपर ddo
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ddo02/GooglePhotosDirectLink
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Photos Direct Link",
    "version": "2.0",
    "manifest_version": 2,
    "description": "Allow you to copy a direct link, with extension, from Google Photos.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/photos.google.com\/*",
                "https:\/\/get.google.com\/*"
            ],
            "css": [
                "direct_styles.css"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "direct.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "page_action": {
        "default_icon": "img\/GPDL-logo-19.png"
    },
    "icons": {
        "19": "img\/GPDL-logo-19.png",
        "48": "img\/GPDL-logo-48.png",
        "128": "img\/GPDL-logo-128.png"
    }
}