Photos Direct Link

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

O que é Photos Direct Link?

Photos Direct Link é uma extensão do Chrome desenvolvida por ddo, e sua principal característica é "Allow you to copy a direct link, with extension, from Google Photos.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Photos Direct Link

Baixe arquivos de extensão Photos Direct Link no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        *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                    

Informações Básicas da Extensão

Nome Photos Direct Link Photos Direct Link
ID dgnaaplaoheafdckphgmpiaodckbcafg
URL Oficial https://chromewebstore.google.com/detail/photos-direct-link/dgnaaplaoheafdckphgmpiaodckbcafg
Descrição Allow you to copy a direct link, with extension, from Google Photos.
Tamanho do Arquivo 47.38 KB
Contagem de Instalações 20,000
Versão Atual 2.0
Última Atualização 2020-08-31
Data de Publicação 2017-10-10
Classificação 3.98/5 Total de 66 Avaliações
Desenvolvedor ddo
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ddo02/GooglePhotosDirectLink
Idiomas Suportados 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"
    }
}