Cloud File direct URL
Creates direct URL to your Google drive file from current tab.
O que é Cloud File direct URL?
Cloud File direct URL é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Creates direct URL to your Google drive file from current tab.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cloud File direct URL
Baixe arquivos de extensão Cloud File direct URL 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
TL;DR: This will give you direct link to Google Drive file. I often found my self in situation where I need to embed a screenshot from Google Drive, but the Drive would only give me the website URL where I can view the file not the direct link to it. This is especially usefull for embeding screenshots in pullrequests (github) or chatting (Flowdock, Slack, Skype).
Informações Básicas da Extensão
Nome | Cloud File direct URL |
ID | ollcbgopdclnjaggekgnlmgbbgohgamo |
URL Oficial | https://chromewebstore.google.com/detail/cloud-file-direct-url/ollcbgopdclnjaggekgnlmgbbgohgamo |
Descrição | Creates direct URL to your Google drive file from current tab. |
Tamanho do Arquivo | 15 KB |
Contagem de Instalações | 443 |
Versão Atual | 1.1 |
Última Atualização | 2017-06-10 |
Data de Publicação | 2017-06-10 |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cloud File direct URL", "version": "1.1", "author": "Viesturs Teiv\u0101ns", "description": "Creates direct URL to your Google drive file from current tab.", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "cloud-link-32.png", "default_title": "Get direct URL!", "default_popup": "popup.html" }, "permissions": [ "declarativeContent", "activeTab" ], "icons": { "32": "cloud-link-32.png", "48": "cloud-link-48.png", "128": "cloud-link-128.png" }, "manifest_version": 2 } |